From 9eced61d2adbb61ee8e0f446775728d032078dcb Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Tue, 12 Apr 2016 11:43:43 +0200 Subject: [PATCH 001/337] git: respect $SSL_CERT_FILE This allows git to work on systems without /etc/ssl/certs/ca-certificates.crt, such as OS X, instead of failing with "error setting certificate verify locations". --- .../version-management/git-and-tools/git/default.nix | 1 + .../git-and-tools/git/ssl-cert-file.patch | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 pkgs/applications/version-management/git-and-tools/git/ssl-cert-file.patch diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix index 4f41ffb916e..082a791a69c 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -27,6 +27,7 @@ stdenv.mkDerivation { ./symlinks-in-bin.patch ./git-sh-i18n.patch ./ssh-path.patch + ./ssl-cert-file.patch ]; postPatch = '' diff --git a/pkgs/applications/version-management/git-and-tools/git/ssl-cert-file.patch b/pkgs/applications/version-management/git-and-tools/git/ssl-cert-file.patch new file mode 100644 index 00000000000..bafd65e8c93 --- /dev/null +++ b/pkgs/applications/version-management/git-and-tools/git/ssl-cert-file.patch @@ -0,0 +1,11 @@ +diff -ru git-2.7.4-orig/http.c git-2.7.4/http.c +--- git-2.7.4-orig/http.c 2016-03-17 21:47:59.000000000 +0100 ++++ git-2.7.4/http.c 2016-04-12 11:38:33.187070848 +0200 +@@ -544,6 +544,7 @@ + #if LIBCURL_VERSION_NUM >= 0x070908 + set_from_env(&ssl_capath, "GIT_SSL_CAPATH"); + #endif ++ set_from_env(&ssl_cainfo, "SSL_CERT_FILE"); + set_from_env(&ssl_cainfo, "GIT_SSL_CAINFO"); + + set_from_env(&user_agent, "GIT_HTTP_USER_AGENT"); From 41f170f439e95f432b5df86db2383c4939f722c9 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 11 Apr 2016 18:29:00 +0200 Subject: [PATCH 002/337] nixos/doc: Allow refs from options to the manual My first attempt to do this was to just use a conditional in order to not create exact references in the manpage but create the reference in the HTML manual, as suggested by @edolstra on IRC. Later I went on to use to reference sections of the manual, but in order to do that, we need to overhaul how we generate the manual and manpages. So, that's where we are now: There is a new derivation called "manual-olinkdb", which is the olinkdb for the HTML manual, which in turn creates the olinkdb.xml file and the manual.db. The former contains the targetdoc references and the latter the specific targetptr elements. The reason why I included the olinkdb.xml verbatim is that first of all the DTD is dependent on the Docbook XSL sources and the references within the olinkdb.xml entities are relative to the current directory. So using a store path for that would end up searching for the manual.db directly in /nix/store/manual.db. Unfortunately, the that end up in the output file are relative, so for example if you're clicking on one of these within the PDF, the URL is searched in the current directory. However, the sections from the olink's text are still valid, so we could use an alternative URL for that in the future. The manual doesn't contain any links, so even referencing the relative URL shouldn't do any harm. Signed-off-by: aszlig Cc: @edolstra --- nixos/doc/manual/default.nix | 75 +++++++++++++++++++++++++++++------- 1 file changed, 62 insertions(+), 13 deletions(-) diff --git a/nixos/doc/manual/default.nix b/nixos/doc/manual/default.nix index 69da1f94882..92b76bdb1f0 100644 --- a/nixos/doc/manual/default.nix +++ b/nixos/doc/manual/default.nix @@ -73,6 +73,63 @@ let ''; + manualXsltprocOptions = toString [ + "--param section.autolabel 1" + "--param section.label.includes.component.label 1" + "--stringparam html.stylesheet style.css" + "--param xref.with.number.and.title 1" + "--param toc.section.depth 3" + "--stringparam admon.style ''" + "--stringparam callout.graphics.extension .gif" + "--stringparam current.docid manual" + "--param chunk.section.depth 0" + "--param chunk.first.sections 1" + "--param use.id.as.filename 1" + "--stringparam generate.toc 'book toc appendix toc'" + "--stringparam chunk.toc ${toc}" + ]; + + olinkDB = stdenv.mkDerivation { + name = "manual-olinkdb"; + + inherit sources; + + buildInputs = [ libxml2 libxslt ]; + + buildCommand = '' + ${copySources} + + xsltproc \ + ${manualXsltprocOptions} \ + --stringparam collect.xref.targets only \ + --stringparam targets.filename "$out/manual.db" \ + --nonet --xinclude \ + ${docbook5_xsl}/xml/xsl/docbook/xhtml/chunktoc.xsl \ + ./manual.xml + + # Check the validity of the man pages sources. + xmllint --noout --nonet --xinclude --noxincludenode \ + --relaxng ${docbook5}/xml/rng/docbook/docbook.rng \ + ./man-pages.xml + + cat > "$out/olinkdb.xml" < + + ]> + + + Allows for cross-referencing olinks between the manpages + and the HTML/PDF manuals. + + + &manualtargets; + + EOF + ''; + }; + in rec { # The NixOS options in JSON format. @@ -115,18 +172,8 @@ in rec { dst=$out/share/doc/nixos mkdir -p $dst xsltproc \ - --param section.autolabel 1 \ - --param section.label.includes.component.label 1 \ - --stringparam html.stylesheet style.css \ - --param xref.with.number.and.title 1 \ - --param toc.section.depth 3 \ - --stringparam admon.style "" \ - --stringparam callout.graphics.extension .gif \ - --param chunk.section.depth 0 \ - --param chunk.first.sections 1 \ - --param use.id.as.filename 1 \ - --stringparam generate.toc "book toc appendix toc" \ - --stringparam chunk.toc ${toc} \ + ${manualXsltprocOptions} \ + --stringparam target.database.document "${olinkDB}/olinkdb.xml" \ --nonet --xinclude --output $dst/ \ ${docbook5_xsl}/xml/xsl/docbook/xhtml/chunktoc.xsl ./manual.xml @@ -158,6 +205,7 @@ in rec { dst=$out/share/doc/nixos mkdir -p $dst xmllint --xinclude manual.xml | dblatex -o $dst/manual.pdf - \ + -P target.database.document="${olinkDB}/olinkdb.xml" \ -P doc.collab.show=0 \ -P latex.output.revhistory=0 @@ -177,7 +225,7 @@ in rec { buildCommand = '' ${copySources} - # Check the validity of the manual sources. + # Check the validity of the man pages sources. xmllint --noout --nonet --xinclude --noxincludenode \ --relaxng ${docbook5}/xml/rng/docbook/docbook.rng \ ./man-pages.xml @@ -189,6 +237,7 @@ in rec { --param man.output.base.dir "'$out/share/man/'" \ --param man.endnotes.are.numbered 0 \ --param man.break.after.slash 1 \ + --stringparam target.database.document "${olinkDB}/olinkdb.xml" \ ${docbook5_xsl}/xml/xsl/docbook/manpages/docbook.xsl \ ./man-pages.xml ''; From f270af1acd52e01f76295def42302bb8535f9c58 Mon Sep 17 00:00:00 2001 From: Christoph Ruegge Date: Thu, 14 Apr 2016 11:28:10 +0200 Subject: [PATCH 003/337] xsession: Update DBus activation environment `dbus-launch` is executed early in the script, before desktop managers had a chance to setup the environment. If DBus activation is used, applications launched by this may therefore lack necessary environment variables. This patch sends the complete environment to DBus after launching the desktop manager. --- nixos/modules/services/x11/display-managers/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nixos/modules/services/x11/display-managers/default.nix b/nixos/modules/services/x11/display-managers/default.nix index be634fc259a..ff78964e553 100644 --- a/nixos/modules/services/x11/display-managers/default.nix +++ b/nixos/modules/services/x11/display-managers/default.nix @@ -126,6 +126,14 @@ let (*) echo "$0: Desktop manager '$desktopManager' not found.";; esac + ${optionalString cfg.startDbusSession '' + ${pkgs.glib}/bin/gdbus call --session \ + --dest org.freedesktop.DBus --object-path /org/freedesktop/DBus \ + --method org.freedesktop.DBus.UpdateActivationEnvironment \ + "{$(env | ${pkgs.gnused}/bin/sed "s/'/\\\\'/g; s/\([^=]*\)=\(.*\)/'\1':'\2'/" \ + | ${pkgs.coreutils}/bin/paste -sd,)}" + ''} + test -n "$waitPID" && wait "$waitPID" exit 0 ''; From f1e16b437fcb84cac49ad6c0f6334a6dad39ff09 Mon Sep 17 00:00:00 2001 From: = Date: Sat, 23 Apr 2016 00:30:52 +0200 Subject: [PATCH 004/337] MDP: init at 0.1.0 --- 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 877b12dcf1b..08720c93c2c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3931,6 +3931,27 @@ in modules // { }; }; + MDP = buildPythonPackage rec { + version = "0.1.0"; + name = "MDP-${version}"; + + src = pkgs.fetchurl { + url = https://pypi.python.org/packages/source/M/MDP/MDP-3.5.tar.gz; + sha256 = "0aw1zxmyvx6gfmmnixbqmdaah28jl7rmqkzhxv53091asc23iw9k"; + }; + + propagatedBuildInputs = with self; [ future numpy ]; + + doCheck = false; + + meta = { + description = "Library for building complex data processing software by combining widely used machine learning algorithms"; + homepage = http://mdp-toolkit.sourceforge.net; + license = licenses.bsd3; + maintainers = with maintainers; [ nico202 ]; + }; + }; + minidb = buildPythonPackage rec { name = "minidb-2.0.1"; From 32394a3cd788e6d4b3f390bd26b6e5ff3021a35d Mon Sep 17 00:00:00 2001 From: = Date: Sat, 23 Apr 2016 00:37:29 +0200 Subject: [PATCH 005/337] oger: init at 1.1.3 --- pkgs/top-level/python-packages.nix | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 08720c93c2c..f3088bb64ea 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3932,17 +3932,18 @@ in modules // { }; MDP = buildPythonPackage rec { - version = "0.1.0"; + version = "3.5"; name = "MDP-${version}"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/M/MDP/MDP-3.5.tar.gz; + url = "https://pypi.python.org/packages/source/M/MDP/${name}.tar.gz"; sha256 = "0aw1zxmyvx6gfmmnixbqmdaah28jl7rmqkzhxv53091asc23iw9k"; }; + buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [ future numpy ]; - doCheck = false; + doCheck = true; meta = { description = "Library for building complex data processing software by combining widely used machine learning algorithms"; @@ -6795,6 +6796,25 @@ in modules // { }; }; + oger = buildPythonPackage rec { + name = "oger-${version}"; + version = "1.1.3"; + src = pkgs.fetchurl { + url = "http://organic.elis.ugent.be/sites/organic.elis.ugent.be/files/Oger-${version}.tar.gz"; + sha256 = "1k02ys812lz0x0yymljp102amkm8bvfgqsrphnk235xbcrb0akg5"; + }; + + propagatedBuildInputs = with self; [ MDP scipy numpy matplotlib ]; + + meta = { + homepage = http://organic.elis.ugent.be/organic/engine; + description = "Rapidly build, train, and evalue modular learning architectures"; + maintainers = with maintainers; [ nico202 ]; + license = licenses.lgpl3; + }; + }; + + pathtools = buildPythonPackage rec { name = "pathtools-${version}"; version = "0.1.2"; From 0857405208623e37d20d5bc8f5ce5067dc12d7e7 Mon Sep 17 00:00:00 2001 From: Simon Vandel Sillesen Date: Sat, 23 Apr 2016 16:17:41 +0200 Subject: [PATCH 006/337] Oracle Java Mission Control: fix startup The jmc binary needed some runtime dependencies. JMC can now be run. --- pkgs/development/compilers/oraclejdk/jdk-linux-base.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix index a18ffcbf3d4..fe5b3b71258 100644 --- a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix +++ b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix @@ -11,6 +11,7 @@ { swingSupport ? true , stdenv , requireFile +, makeWrapper , unzip , file , xorg ? null @@ -83,6 +84,8 @@ let result = stdenv.mkDerivation rec { nativeBuildInputs = [ file ] ++ stdenv.lib.optional installjce unzip; + buildInputs = [ makeWrapper ]; + # See: https://github.com/NixOS/patchelf/issues/10 dontStrip = 1; @@ -159,6 +162,10 @@ let result = stdenv.mkDerivation rec { cat <> $out/nix-support/setup-hook if [ -z "\$JAVA_HOME" ]; then export JAVA_HOME=$out; fi EOF + + # Oracle Java Mission Control needs to know where libgtk-x11 and related is + wrapProgram "$out/bin/jmc" \ + --suffix-each LD_LIBRARY_PATH ':' "${rpath}" \ ''; inherit installjdk pluginSupport; From 40f82550d8fc1fb24ea5ea76b82bd779b7322379 Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Fri, 12 Feb 2016 09:48:15 +0200 Subject: [PATCH 007/337] rmilter: use libmilter with patch to socket activation --- pkgs/servers/mail/rmilter/default.nix | 7 +- .../mail/rmilter/fd-passing-libmilter.patch | 80 +++++++++++++++++++ 2 files changed, 86 insertions(+), 1 deletion(-) create mode 100644 pkgs/servers/mail/rmilter/fd-passing-libmilter.patch diff --git a/pkgs/servers/mail/rmilter/default.nix b/pkgs/servers/mail/rmilter/default.nix index c12ca525294..455e543b2da 100644 --- a/pkgs/servers/mail/rmilter/default.nix +++ b/pkgs/servers/mail/rmilter/default.nix @@ -1,5 +1,10 @@ { stdenv, fetchFromGitHub, cmake, bison, flex, openssl, pcre, libmilter, opendkim }: +let patchedLibmilter = stdenv.lib.overrideDerivation libmilter (_ : { + patches = libmilter.patches ++ [ ./fd-passing-libmilter.patch ]; +}); +in + stdenv.mkDerivation rec { name = "rmilter-${version}"; version = "1.7.3"; @@ -12,7 +17,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ bison cmake flex ]; - buildInputs = [ libmilter openssl pcre opendkim ]; + buildInputs = [ patchedLibmilter openssl pcre opendkim]; meta = with stdenv.lib; { homepage = "https://github.com/vstakhov/rmilter"; diff --git a/pkgs/servers/mail/rmilter/fd-passing-libmilter.patch b/pkgs/servers/mail/rmilter/fd-passing-libmilter.patch new file mode 100644 index 00000000000..3ab61a6fab0 --- /dev/null +++ b/pkgs/servers/mail/rmilter/fd-passing-libmilter.patch @@ -0,0 +1,80 @@ +Description: systemd-like socket activation support for libmilter +Author: Mikhail Gusarov {unix|local}:/path/to/file -- A named pipe. +
  • inet:port@{hostname|ip-address} -- An IPV4 socket. +
  • inet6:port@{hostname|ip-address} -- An IPV6 socket. ++
  • fd:number -- Pre-opened file descriptor. + + + +diff --git a/libmilter/listener.c b/libmilter/listener.c +index 48c552f..2249a1f 100644 +--- a/libmilter/listener.c ++++ b/libmilter/listener.c +@@ -197,6 +197,11 @@ mi_milteropen(conn, backlog, rmsocket, name) + L_socksize = sizeof addr.sin6; + } + #endif /* NETINET6 */ ++ else if (strcasecmp(p, "fd") == 0) ++ { ++ addr.sa.sa_family = AF_UNSPEC; ++ L_socksize = sizeof (_SOCK_ADDR); ++ } + else + { + smi_log(SMI_LOG_ERR, "%s: unknown socket type %s", +@@ -443,7 +448,21 @@ mi_milteropen(conn, backlog, rmsocket, name) + } + #endif /* NETINET || NETINET6 */ + +- sock = socket(addr.sa.sa_family, SOCK_STREAM, 0); ++ if (addr.sa.sa_family == AF_UNSPEC) ++ { ++ char *end; ++ sock = strtol(colon, &end, 10); ++ if (*end != '\0' || sock < 0) ++ { ++ smi_log(SMI_LOG_ERR, "%s: expected positive integer as fd, got %s", name, colon); ++ return INVALID_SOCKET; ++ } ++ } ++ else ++ { ++ sock = socket(addr.sa.sa_family, SOCK_STREAM, 0); ++ } ++ + if (!ValidSocket(sock)) + { + smi_log(SMI_LOG_ERR, +@@ -466,6 +485,7 @@ mi_milteropen(conn, backlog, rmsocket, name) + #if NETUNIX + addr.sa.sa_family != AF_UNIX && + #endif /* NETUNIX */ ++ addr.sa.sa_family != AF_UNSPEC && + setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *) &sockopt, + sizeof(sockopt)) == -1) + { +@@ -511,7 +531,8 @@ mi_milteropen(conn, backlog, rmsocket, name) + } + #endif /* NETUNIX */ + +- if (bind(sock, &addr.sa, L_socksize) < 0) ++ if (addr.sa.sa_family != AF_UNSPEC && ++ bind(sock, &addr.sa, L_socksize) < 0) + { + smi_log(SMI_LOG_ERR, + "%s: Unable to bind to port %s: %s", +@@ -817,7 +838,7 @@ mi_listener(conn, dbg, smfi, timeout, backlog) + # ifdef BSD4_4_SOCKADDR + cliaddr.sa.sa_len == 0 || + # endif /* BSD4_4_SOCKADDR */ +- cliaddr.sa.sa_family != L_family)) ++ (L_family != AF_UNSPEC && cliaddr.sa.sa_family != L_family))) + { + (void) closesocket(connfd); + connfd = INVALID_SOCKET; From 769a33bedd909dd9f482d9cbb957e400fd3bac88 Mon Sep 17 00:00:00 2001 From: Christoph Ruegge Date: Mon, 25 Apr 2016 23:37:18 +0200 Subject: [PATCH 008/337] xsession: make updating DBus environment optional --- nixos/modules/services/x11/desktop-managers/gnome3.nix | 2 ++ nixos/modules/services/x11/desktop-managers/xfce.nix | 5 ++++- nixos/modules/services/x11/display-managers/default.nix | 2 +- nixos/modules/services/x11/xserver.nix | 9 +++++++++ 4 files changed, 16 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index b112fc2422a..16996b9f96c 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -165,6 +165,8 @@ in { ''; }; + services.xserver.updateDbusEnvironment = true; + environment.variables.GIO_EXTRA_MODULES = [ "${gnome3.dconf}/lib/gio/modules" "${gnome3.glib_networking.out}/lib/gio/modules" "${gnome3.gvfs}/lib/gio/modules" ]; diff --git a/nixos/modules/services/x11/desktop-managers/xfce.nix b/nixos/modules/services/x11/desktop-managers/xfce.nix index 33b6dd32c19..60934ed5f19 100644 --- a/nixos/modules/services/x11/desktop-managers/xfce.nix +++ b/nixos/modules/services/x11/desktop-managers/xfce.nix @@ -42,10 +42,13 @@ in # Set GTK_DATA_PREFIX so that GTK+ can find the Xfce themes. export GTK_DATA_PREFIX=${config.system.path} - exec ${pkgs.stdenv.shell} ${pkgs.xfce.xinitrc} + ${pkgs.stdenv.shell} ${pkgs.xfce.xinitrc} & + waitPID=$! ''; }; + services.xserver.updateDbusEnvironment = true; + environment.systemPackages = [ pkgs.gtk # To get GTK+'s themes. pkgs.hicolor_icon_theme diff --git a/nixos/modules/services/x11/display-managers/default.nix b/nixos/modules/services/x11/display-managers/default.nix index ff78964e553..376f9f4b46b 100644 --- a/nixos/modules/services/x11/display-managers/default.nix +++ b/nixos/modules/services/x11/display-managers/default.nix @@ -126,7 +126,7 @@ let (*) echo "$0: Desktop manager '$desktopManager' not found.";; esac - ${optionalString cfg.startDbusSession '' + ${optionalString (cfg.startDbusSession && cfg.updateDbusEnvironment) '' ${pkgs.glib}/bin/gdbus call --session \ --dest org.freedesktop.DBus --object-path /org/freedesktop/DBus \ --method org.freedesktop.DBus.UpdateActivationEnvironment \ diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index dcf9f820f59..9cb9c8de31d 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -233,6 +233,15 @@ in ''; }; + updateDbusEnvironment = mkOption { + type = types.bool; + default = false; + description = '' + Whether to update the DBus activation environment after launching the + desktop manager. + ''; + }; + layout = mkOption { type = types.str; default = "us"; From 5dbb42ce6c41f8245a799f4260d860315e806e2a Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Tue, 26 Apr 2016 18:08:16 +0300 Subject: [PATCH 009/337] qesteidutil: init at 3.12.2.1206 --- pkgs/tools/security/qesteidutil/default.nix | 31 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/tools/security/qesteidutil/default.nix diff --git a/pkgs/tools/security/qesteidutil/default.nix b/pkgs/tools/security/qesteidutil/default.nix new file mode 100644 index 00000000000..e05dee4ef9a --- /dev/null +++ b/pkgs/tools/security/qesteidutil/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, cmake, ccid, qttools, qttranslations, pkgconfig, pcsclite +, hicolor_icon_theme }: + +stdenv.mkDerivation rec { + + version = "3.12.2.1206"; + name = "qesteidutil-${version}"; + + src = fetchurl { + url = "https://installer.id.ee/media/ubuntu/pool/main/q/qesteidutil/qesteidutil_3.12.2.1206.orig.tar.xz"; + sha256 = "1v1i0jlycjjdg6wi4cpm1il5v1zn8dfj82mrfvsjy6j9rfzinkda"; + }; + + unpackPhase = '' + mkdir src + tar xf $src -C src + cd src + ''; + + buildInputs = [ cmake ccid qttools pkgconfig pcsclite qttranslations + hicolor_icon_theme + ]; + + meta = with stdenv.lib; { + description = "UI application for managing smart card PIN/PUK codes and certificates"; + homepage = "http://www.id.ee/"; + license = licenses.lgpl2; + platforms = platforms.linux; + maintainers = [ maintainers.jagajaga ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5ee6c190ad4..304cdce4cd7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2978,6 +2978,8 @@ in qt = qt4; }; + qesteidutil = qt5.callPackage ../tools/security/qesteidutil { } ; + qgifer = callPackage ../applications/video/qgifer { giflib = giflib_4_1; qt = qt4; From fc941899a356efd76e2390c829c59459bfd0d8e9 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Mon, 25 Apr 2016 23:13:03 +0200 Subject: [PATCH 010/337] fail2ban: rework service --- nixos/modules/services/security/fail2ban.nix | 28 +++++++++----------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/nixos/modules/services/security/fail2ban.nix b/nixos/modules/services/security/fail2ban.nix index afbd81be91f..33c4910fc0c 100644 --- a/nixos/modules/services/security/fail2ban.nix +++ b/nixos/modules/services/security/fail2ban.nix @@ -99,34 +99,32 @@ in wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; + partOf = optional config.networking.firewall.enable "firewall.service"; restartTriggers = [ fail2banConf jailConf ]; path = [ pkgs.fail2ban pkgs.iptables ]; preStart = '' - mkdir -p /run/fail2ban -m 0755 mkdir -p /var/lib/fail2ban ''; + unitConfig.Documentation = "man:fail2ban(1)"; + serviceConfig = - { ExecStart = "${pkgs.fail2ban}/bin/fail2ban-server -f"; + { Type = "forking"; + ExecStart = "${pkgs.fail2ban}/bin/fail2ban-client -x start"; + ExecStop = "${pkgs.fail2ban}/bin/fail2ban-client stop"; + ExecReload = "${pkgs.fail2ban}/bin/fail2ban-client reload"; + PIDFile = "/run/fail2ban/fail2ban.pid"; + Restart = "always"; + ReadOnlyDirectories = "/"; - ReadWriteDirectories = "/run /var/tmp /var/lib"; + ReadWriteDirectories = "/run/fail2ban /var/tmp /var/lib"; + PrivateTmp = "true"; + RuntimeDirectory = "fail2ban"; CapabilityBoundingSet = "CAP_DAC_READ_SEARCH CAP_NET_ADMIN CAP_NET_RAW"; }; - - postStart = - '' - # Wait for the server to start listening. - for ((n = 0; n < 20; n++)); do - if fail2ban-client ping; then break; fi - sleep 0.5 - done - - # Reload its configuration. - fail2ban-client reload - ''; }; # Add some reasonable default jails. The special "DEFAULT" jail From b6a900803a53d5f2423a4e04593294780631ab3d Mon Sep 17 00:00:00 2001 From: Sheena Artrip Date: Wed, 27 Apr 2016 03:07:38 -0400 Subject: [PATCH 011/337] freeradius: fix checkrad paths by providing perl, finger substitution --- pkgs/servers/freeradius/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/freeradius/default.nix b/pkgs/servers/freeradius/default.nix index 15bda5d3090..810f274579c 100644 --- a/pkgs/servers/freeradius/default.nix +++ b/pkgs/servers/freeradius/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, autoreconfHook, talloc +{ stdenv, fetchurl, autoreconfHook, talloc, finger_bsd, perl , openssl , linkOpenssl? true , openldap @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { name = "freeradius-${version}"; version = "3.0.11"; - buildInputs = [ autoreconfHook openssl talloc ] + buildInputs = [ autoreconfHook openssl talloc finger_bsd perl ] ++ optional withLdap [ openldap ] ++ optional withSqlite [ sqlite ] ++ optional withPcap [ libpcap ] @@ -60,6 +60,10 @@ stdenv.mkDerivation rec { "--localstatedir=/var" ] ++ optional (!linkOpenssl) "--with-openssl=no"; + postPatch = '' + substituteInPlace src/main/checkrad.in --replace "/usr/bin/finger" "${finger_bsd}/bin/finger" + ''; + installFlags = [ "sysconfdir=\${out}/etc" "localstatedir=\${TMPDIR}" From f223e114dac2e2afbda1ba64bfefe91f2d86dbd5 Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Tue, 26 Apr 2016 18:53:33 +0300 Subject: [PATCH 012/337] xalanc: init at 1.11 --- pkgs/development/libraries/xalanc/default.nix | 28 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/development/libraries/xalanc/default.nix diff --git a/pkgs/development/libraries/xalanc/default.nix b/pkgs/development/libraries/xalanc/default.nix new file mode 100644 index 00000000000..8284fd7707f --- /dev/null +++ b/pkgs/development/libraries/xalanc/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, xercesc }: + +stdenv.mkDerivation rec { + name = "xalan-c-${version}"; + version = "1.11"; + + src = fetchurl { + url = "http://www.eu.apache.org/dist/xalan/xalan-c/sources/xalan_c-${version}-src.tar.gz"; + sha256 = "0a3a2b15vpacnqgpp6fiy1pwyc8q6ywzvyb5445f6wixfdspypjg"; + }; + + configurePhase = '' + export XALANCROOT=`pwd`/c + cd `pwd`/c + mkdir -p $out/usr + ./runConfigure -p linux -c gcc -x g++ -P$out/usr + ''; + + buildInputs = [ xercesc ]; + + meta = { + homepage = http://xalan.apache.org/; + description = "A XSLT processor for transforming XML documents"; + license = stdenv.lib.licenses.asl20; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.jagajaga ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 304cdce4cd7..415c7c360a8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9142,6 +9142,8 @@ in xercesc = callPackage ../development/libraries/xercesc {}; + xalanc = callPackage ../development/libraries/xalanc {}; + # Avoid using this. It isn't really a wrapper anymore, but we keep the name. xlibsWrapper = callPackage ../development/libraries/xlibs-wrapper { packages = [ From 6f90f447347a1a7f01461534c8407677e8bae5ee Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Tue, 26 Apr 2016 18:56:49 +0300 Subject: [PATCH 013/337] libdigidoc: init at 3.10.1.1212 --- .../libraries/libdigidoc/default.nix | 28 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/development/libraries/libdigidoc/default.nix diff --git a/pkgs/development/libraries/libdigidoc/default.nix b/pkgs/development/libraries/libdigidoc/default.nix new file mode 100644 index 00000000000..e060f8c1d76 --- /dev/null +++ b/pkgs/development/libraries/libdigidoc/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, cmake, openssl, pcsclite, opensc, libxml2 }: + +stdenv.mkDerivation rec { + + version = "3.10.1.1212"; + name = "libdigidoc-${version}"; + + src = fetchurl { + url = "https://installer.id.ee/media/ubuntu/pool/main/libd/libdigidoc/libdigidoc_3.10.1.1212.orig.tar.xz"; + sha256 = "ad5e0603aea2e02977f17318cc93a53c3a19a815e57b2347d97136d11c110807"; + }; + + unpackPhase = '' + mkdir src + tar xf $src -C src + cd src + ''; + + buildInputs = [ cmake openssl pcsclite opensc libxml2 ]; + + meta = with stdenv.lib; { + description = "Library for creating DigiDoc signature files"; + homepage = "http://www.id.ee/"; + license = licenses.lgpl2; + platforms = platforms.linux; + maintainers = [ maintainers.jagajaga ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 415c7c360a8..793028a00bc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7448,6 +7448,8 @@ in mesa = null; }; + libdigidoc = callPackage ../development/libraries/libdigidoc { }; + libdiscid = callPackage ../development/libraries/libdiscid { }; libdivsufsort = callPackage ../development/libraries/libdivsufsort { }; From 12944261c23c468b13ed4f60b1ec71b011680f6f Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Tue, 26 Apr 2016 19:13:09 +0300 Subject: [PATCH 014/337] xml-security-c: init at 1.7.3 --- .../libraries/xml-security-c/default.nix | 34 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/development/libraries/xml-security-c/default.nix diff --git a/pkgs/development/libraries/xml-security-c/default.nix b/pkgs/development/libraries/xml-security-c/default.nix new file mode 100644 index 00000000000..1932acbd7ed --- /dev/null +++ b/pkgs/development/libraries/xml-security-c/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchurl, xalanc, xercesc, openssl, pkgconfig }: + +stdenv.mkDerivation rec { + name = "xml-security-c-${version}"; + version = "1.7.3"; + + src = fetchurl { + url = "http://www.apache.org/dist/santuario/c-library/${name}.tar.gz"; + sha256 = "e5226e7319d44f6fd9147a13fb853f5c711b9e75bf60ec273a0ef8a190592583"; + }; + + patchPhase = '' + mkdir -p xsec/yes/lib + sed -i -e 's/-O2 -DNDEBUG/-DNDEBUG/g' configure + ''; + + configurePhase = '' + ./configure --prefix=$out \ + --with-openssl \ + --with-xerces \ + --with-xalan \ + --disable-static + ''; + + buildInputs = [ xalanc xercesc openssl pkgconfig ]; + + meta = { + homepage = http://santuario.apache.org/; + description = "C++ Implementation of W3C security standards for XML"; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.jagajaga ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 793028a00bc..3ce04832bca 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9159,6 +9159,8 @@ in xmlsec = callPackage ../development/libraries/xmlsec { }; + xml-security-c = callPackage ../development/libraries/xml-security-c { }; + xlslib = callPackage ../development/libraries/xlslib { }; xvidcore = callPackage ../development/libraries/xvidcore { }; From 5b7ed1f00ca418bedd8f506087b6093495620535 Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Tue, 26 Apr 2016 23:11:51 +0300 Subject: [PATCH 015/337] xsd: init at 4.0.0 --- pkgs/development/libraries/xsd/default.nix | 38 ++++++ pkgs/development/libraries/xsd/xsdcxx.patch | 126 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 166 insertions(+) create mode 100644 pkgs/development/libraries/xsd/default.nix create mode 100644 pkgs/development/libraries/xsd/xsdcxx.patch diff --git a/pkgs/development/libraries/xsd/default.nix b/pkgs/development/libraries/xsd/default.nix new file mode 100644 index 00000000000..bef2e46e073 --- /dev/null +++ b/pkgs/development/libraries/xsd/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchurl, xercesc }: + +let + fixed_paths = ''LDFLAGS="-L${xercesc}/lib" CPPFLAGS="-I${xercesc}/include"''; +in +stdenv.mkDerivation rec { + name = "xsd-${version}"; + version = "4.0.0"; + + src = fetchurl { + url = "http://codesynthesis.com/download/xsd/4.0/xsd-4.0.0+dep.tar.bz2"; + sha256 = "05wqhmd5cd4pdky8i8qysnh96d2h16ly8r73whmbxkajiyf2m9gc"; + }; + + patches = [ ./xsdcxx.patch ]; + + configurePhase = '' + patchShebangs . + ''; + + buildPhase = '' + make ${fixed_paths} + ''; + + buildInputs = [ xercesc ]; + + installPhase = '' + make ${fixed_paths} install_prefix="$out" install + ''; + + meta = { + homepage = http://www.codesynthesis.com/products/xsd; + description = "An open-source, cross-platform W3C XML Schema to C++ data binding compiler"; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.jagajaga ]; + }; +} diff --git a/pkgs/development/libraries/xsd/xsdcxx.patch b/pkgs/development/libraries/xsd/xsdcxx.patch new file mode 100644 index 00000000000..88a893c6e60 --- /dev/null +++ b/pkgs/development/libraries/xsd/xsdcxx.patch @@ -0,0 +1,126 @@ +--- xsd-4.0.0+dep/xsd/doc/xsd.1~ 2014-09-14 12:25:36.862267587 +0000 ++++ xsd-4.0.0+dep/xsd/doc/xsd.1 2014-09-14 12:28:25.728229892 +0000 +@@ -1,16 +1,16 @@ + .\" Process this file with +-.\" groff -man -Tascii xsd.1 ++.\" groff -man -Tascii xsdcxx.1 + .\" + .TH XSD 1 "July 2014" "XSD 4.0.0" + .SH NAME +-xsd \- W3C XML Schema to C++ Compiler ++xsdcxx \- W3C XML Schema to C++ Compiler + .\" + .\" + .\" + .\"-------------------------------------------------------------------- + .SH SYNOPSIS + .\"-------------------------------------------------------------------- +-.B xsd ++.B xsdcxx + .I command + .B [ + .I options +@@ -20,19 +20,19 @@ + .I file + .B ...] + .in +-.B xsd help ++.B xsdcxx help + .B [ + .I command + .B ] + .in +-.B xsd version ++.B xsdcxx version + .\" + .\" + .\" + .\"-------------------------------------------------------------------- + .SH DESCRIPTION + .\"-------------------------------------------------------------------- +-.B xsd ++.B xsdcxx + generates vocabulary-specific, statically-typed C++ mapping from W3C XML + Schema definitions. Particular mapping to produce is selected by a + .IR command . +@@ -96,7 +96,7 @@ + .PP + .RS + .RS 3 +-.B xsd help ++.B xsdcxx help + .I command + .RE + .PP +@@ -206,7 +206,7 @@ + \fIfilename\fP \fInamespace\fP + + For example, if you have file \fBhello\.xsd\fP with namespace +-\fBhttp://example\.com/hello\fP and you run \fBxsd\fP on this file, then the ++\fBhttp://example\.com/hello\fP and you run \fBxsdcxx\fP on this file, then the + string in question will be: + + \fBhello\.xsd\. http://example\.com/hello\fP +@@ -1632,7 +1632,7 @@ + .\" + .SH DIAGNOSTICS + If the input file is not a valid W3C XML Schema definition, +-.B xsd ++.B xsdcxx + will issue diagnostic messages to + .B STDERR + and exit with non-zero exit code. +--- xsd-4.0.0+dep/xsd/doc/xsd.xhtml~ 2014-09-14 12:28:37.731513138 +0000 ++++ xsd-4.0.0+dep/xsd/doc/xsd.xhtml 2014-09-14 12:30:11.277789610 +0000 +@@ -50,19 +50,19 @@ + +

    NAME

    + +-

    xsd - W3C XML Schema to C++ Compiler

    ++

    xsdcxx - W3C XML Schema to C++ Compiler

    + +

    SYNOPSIS

    + +
    +-
    xsd command [options] file [file ...]
    +-
    xsd help [command]
    +-
    xsd version
    ++
    xsdcxx command [options] file [file ...]
    ++
    xsdcxx help [command]
    ++
    xsdcxx version
    +
    + +

    DESCRIPTION

    + +-

    xsd generates vocabulary-specific, statically-typed ++

    xsdcxx generates vocabulary-specific, statically-typed + C++ mapping from W3C XML Schema definitions. Particular mapping to + produce is selected by a command. Each mapping has + a number of mapping-specific options that should +@@ -104,7 +104,7 @@ + +

    help
    +
    Print usage information and exit. Use +-

    xsd help command

    ++

    xsdcxx help command

    + for command-specific help. +
    + +@@ -219,7 +219,7 @@ + +

    For example, if you have file hello.xsd with + namespace http://example.com/hello and you run +- xsd on this file, then the string in question will ++ xsdcxx on this file, then the string in question will + be:

    + +

    hello.xsd. http://example.com/hello

    +@@ -1530,7 +1530,7 @@ +

    DIAGNOSTICS

    + +

    If the input file is not a valid W3C XML Schema definition, +- xsd will issue diagnostic messages to STDERR ++ xsdcxx will issue diagnostic messages to STDERR + and exit with non-zero exit code.

    + +

    BUGS

    diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3ce04832bca..0a8df842681 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14548,6 +14548,8 @@ in xrestop = callPackage ../tools/X11/xrestop { }; + xsd = callPackage ../development/libraries/xsd { }; + xscreensaver = callPackage ../misc/screensavers/xscreensaver { inherit (gnome) libglade; }; From 9765e5835f8e4daf5a8c50515688814e64501124 Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Tue, 26 Apr 2016 23:12:55 +0300 Subject: [PATCH 016/337] libdigidocpp: init at 3.12.0.1317 --- .../libraries/libdigidocpp/default.nix | 31 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/development/libraries/libdigidocpp/default.nix diff --git a/pkgs/development/libraries/libdigidocpp/default.nix b/pkgs/development/libraries/libdigidocpp/default.nix new file mode 100644 index 00000000000..5ddc6303126 --- /dev/null +++ b/pkgs/development/libraries/libdigidocpp/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, cmake, libdigidoc, minizip, pcsclite, opensc, openssl +, xercesc, xml-security-c, pkgconfig, xsd, zlib, vim }: + +stdenv.mkDerivation rec { + + version = "3.12.0.1317"; + name = "libdigidocpp-${version}"; + + src = fetchurl { + url = "https://installer.id.ee/media/ubuntu/pool/main/libd/libdigidocpp/libdigidocpp_3.12.0.1317.orig.tar.xz"; + sha256 = "8059e1dbab99f062d070b9da0b1334b7226f1ab9badcd7fddea3100519d1f9a9"; + }; + + unpackPhase = '' + mkdir src + tar xf $src -C src + cd src + ''; + + buildInputs = [ cmake libdigidoc minizip pcsclite opensc openssl xercesc + xml-security-c pkgconfig xsd zlib vim + ]; + + meta = with stdenv.lib; { + description = "Library for creating DigiDoc signature files"; + homepage = "http://www.id.ee/"; + license = licenses.lgpl2; + platforms = platforms.linux; + maintainers = [ maintainers.jagajaga ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0a8df842681..2368123afff 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7450,6 +7450,8 @@ in libdigidoc = callPackage ../development/libraries/libdigidoc { }; + libdigidocpp = callPackage ../development/libraries/libdigidocpp { }; + libdiscid = callPackage ../development/libraries/libdiscid { }; libdivsufsort = callPackage ../development/libraries/libdivsufsort { }; From f6d7cefa7ba6429ec2a324ac3ae1fcefb45bdf0b Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Wed, 27 Apr 2016 00:04:14 +0300 Subject: [PATCH 017/337] esteidfirefoxplugin: init at 3.12.1.1142 --- .../networking/browsers/firefox/wrapper.nix | 2 + .../esteidfirefoxplugin/default.nix | 45 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 49 insertions(+) create mode 100644 pkgs/applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin/default.nix diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix index 5fb887bda22..1904d720dbd 100644 --- a/pkgs/applications/networking/browsers/firefox/wrapper.nix +++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix @@ -6,6 +6,7 @@ , supportsJDK, jrePlugin, icedtea_web , trezor-bridge, bluejeans, djview4, adobe-reader , google_talk_plugin, fribid, gnome3/*.gnome_shell*/ +, esteidfirefoxplugin }: ## configurability of the wrapper itself @@ -42,6 +43,7 @@ let ++ lib.optional (cfg.enableTrezor or false) trezor-bridge ++ lib.optional (cfg.enableBluejeans or false) bluejeans ++ lib.optional (cfg.enableAdobeReader or false) adobe-reader + ++ lib.optional (cfg.enableEsteid or false) esteidfirefoxplugin ); libs = [ gst_all.gstreamer gst_all.gst-plugins-base ] ++ lib.optionals (cfg.enableQuakeLive or false) diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin/default.nix new file mode 100644 index 00000000000..039d8bbe406 --- /dev/null +++ b/pkgs/applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin/default.nix @@ -0,0 +1,45 @@ +{ stdenv, fetchurl, gtk2, openssl, pcsclite, pkgconfig, opensc }: + +stdenv.mkDerivation rec { + version = "3.12.1.1142"; + name = "esteidfirefoxplugin-${version}"; + + src = fetchurl { + url = "https://installer.id.ee/media/ubuntu/pool/main/e/esteidfirefoxplugin/esteidfirefoxplugin_3.12.1.1142.orig.tar.xz"; + sha256 = "0y7759x1xr00p5r3c5wpllcqqnnxh2zi74cmy4m9m690z3ywn0fx"; + }; + + unpackPhase = '' + mkdir src + tar xf $src -C src + cd src + ''; + + buildInputs = [ gtk2 openssl pcsclite pkgconfig opensc ]; + + buildPhase = '' + sed -i "s|opensc-pkcs11.so|${opensc}/lib/pkcs11/opensc-pkcs11.so|" Makefile + make plugin + ''; + + installPhase = '' + plugins=$out/lib/mozilla/plugins + mkdir -p $plugins + cp -a npesteid-firefox-plugin.so $plugins/ + rp=$(patchelf --print-rpath $plugins/npesteid-firefox-plugin.so) + patchelf --set-rpath "$rp:${opensc}/lib:${opensc}/lib/pkcs11" $plugins/npesteid-firefox-plugin.so + ''; + + passthru.mozillaPlugin = "/lib/mozilla/plugins"; + + dontStrip = true; + dontPatchELF = true; + + meta = with stdenv.lib; { + description = "Firefox ID card signing plugin"; + homepage = "http://www.id.ee/"; + license = licenses.lgpl2; + platforms = platforms.linux; + maintainers = [ maintainers.jagajaga ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2368123afff..cdb894998f7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2979,6 +2979,8 @@ in }; qesteidutil = qt5.callPackage ../tools/security/qesteidutil { } ; + qdigidoc = qt5.callPackage ../tools/security/qdigidoc { } ; + esteidfirefoxplugin = callPackage ../applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin { }; qgifer = callPackage ../applications/video/qgifer { giflib = giflib_4_1; From 05f2f8fc29353ff41c6c58e67a573997435551d9 Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Wed, 27 Apr 2016 00:48:13 +0300 Subject: [PATCH 018/337] qdigidoc: init at 3.12.0.1442 --- pkgs/tools/security/qdigidoc/certs.patch | 3309 ++++++++++++++++++++++ pkgs/tools/security/qdigidoc/default.nix | 40 + pkgs/top-level/all-packages.nix | 1 + 3 files changed, 3350 insertions(+) create mode 100644 pkgs/tools/security/qdigidoc/certs.patch create mode 100644 pkgs/tools/security/qdigidoc/default.nix diff --git a/pkgs/tools/security/qdigidoc/certs.patch b/pkgs/tools/security/qdigidoc/certs.patch new file mode 100644 index 00000000000..5e28943f333 --- /dev/null +++ b/pkgs/tools/security/qdigidoc/certs.patch @@ -0,0 +1,3309 @@ +diff -ruN a/client/CMakeLists.txt b/client/CMakeLists.txt +--- a/client/CMakeLists.txt 2016-01-29 13:06:27.000000000 +0300 ++++ b/client/CMakeLists.txt 2016-04-27 10:17:06.596682326 +0300 +@@ -1,14 +1,5 @@ + set_app_name( PROGNAME qdigidocclient ) + +-add_executable( TSLDownload TSLDownload.cpp ) +-target_link_libraries( TSLDownload Qt5::Network ) +-add_custom_command( +- OUTPUT TSL.qrc tl-mp.xml EE.xml +- DEPENDS TSLDownload +- COMMAND $ "${CMAKE_CURRENT_BINARY_DIR}" EE +- WORKING_DIRECTORY ${_qt5Core_install_prefix}/bin +-) +- + add_definitions( -DPKCS11_MODULE="${PKCS11_MODULE}" ) + include_directories( ${CMAKE_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/common ${OPENSSL_INCLUDE_DIR} ) + +@@ -20,7 +11,7 @@ + ) + + configure_file( translations/tr.qrc tr.qrc COPYONLY ) +-set( RC_FILES images/images.qrc ${CMAKE_CURRENT_BINARY_DIR}/tr.qrc ${CMAKE_CURRENT_BINARY_DIR}/TSL.qrc ) ++set( RC_FILES images/images.qrc ${CMAKE_CURRENT_BINARY_DIR}/tr.qrc TSL.qrc ) + set( TS_FILES translations/en.ts translations/et.ts translations/ru.ts ) + + if( NOT Qt5Widgets_FOUND ) +diff -ruN a/client/EE.xml b/client/EE.xml +--- a/client/EE.xml 1970-01-01 03:00:00.000000000 +0300 ++++ b/client/EE.xml 2016-04-27 10:17:37.325923576 +0300 +@@ -0,0 +1,1268 @@ ++ ++ ++ 4 ++ 28 ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ Estonian Technical Surveillance Authority ++ Tehnilise Järelevalve Amet ++ ++ ++ ++ ++ 23A Sõle St ++ Tallinn ++ 10614 ++ EE ++ ++ ++ ++ mailto:info@tja.ee ++ http://sr.riik.ee/en.html ++ ++ ++ ++ EE:Supervision/Accreditation Status List of certification services from Certification Service Providers, which are supervised/accredited by the referenced Scheme Operator’s Member State for compliance with the relevant provisions laid down in Directive 1999/93/EC of the European Parliament and of the Council of 13 December 1999 on a Community framework for electronic signatures. ++ ++ ++ http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:306:0021:0039:EN:PDF ++ http://sr.riik.ee/en/tsl/estonia.html ++ http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:306:0021:0039:ET:PDF ++ http://sr.riik.ee/et/tsl/eesti.html ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/StatusDetn/EUappropriate ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EE ++ ++ EE ++ ++ The applicable legal framework for the present TSL implementation of the Trusted List of supervised/accredited Certification Service Providers for Estonia is Directive 1999/93/EC of the European Parliament and of the Council of 13 December 1999 on a Community framework for electronic signatures and its implementation in Estonia laws. ++ Käesolevale Eesti järelvalvealuste/akrediteeritud sertifitseerimisteenuse osutajate usaldusnimekirjale kohaldatava õigusliku raamistiku moodustavad Euroopa Parlamendi ja Nõukogu direktiiv 199/93/EÜ, 13. detsember 1999, digitaalallkirju käsitleva ühenduse raamistiku kohta ning sellele direktiivile vastavad Eesti õigusaktid. ++ ++ 65535 ++ ++ ++ ++ ++ ++ MIIFKzCCBBOgAwIBAgISESFCgSJf+NfOVIYHRWWewAm0MA0GCSqGSIb3DQEBCwUAMGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwHhcNMTUwMzAzMDg1MTAyWhcNMTgwNDIwMTAwNTA1WjBnMQswCQYDVQQGEwJCRTEQMA4GA1UECBMHQmVsZ2l1bTERMA8GA1UEBxMIQnJ1c3NlbHMxHDAaBgNVBAoTE0V1cm9wZWFuIENvbW1pc3Npb24xFTATBgNVBAMTDGVjLmV1cm9wYS5ldTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMFBF1FjO2VA4nIvT3MtXToyfWMNFYRvJc2SIJF3pcZNZcUK9wwNL3j/lOB5+eABCTDShJf8fQgmyEcAU7gXhFw9DFgfnXsmmA1a79zzbs5KWzkmAwEE4lfSYcbJoCuUavD79oaR4v3yv7GZMVab8nXuqWvecwzQWT6sl+rx0ogh1bbeKO9wQ5lbEgRw1MLlyFH2kUieMhjCwO2nQJ9UMTaLu7px4LpZ7tlaVetY7UpMPiGAD34kct1YIoJWJllYbbz7jmALmRAdLvvu5y6Ice4H4j0kDJ/l3zLiVeCiORqrx8ngiiS1LfNSckvz2sbzjVJvXbqxYAEytZQvwxEXdPMCAwEAAaOCAdAwggHMMA4GA1UdDwEB/wQEAwIFoDBJBgNVHSAEQjBAMD4GBmeBDAECAjA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzAXBgNVHREEEDAOggxlYy5ldXJvcGEuZXUwCQYDVR0TBAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwSQYDVR0fBEIwQDA+oDygOoY4aHR0cDovL2NybC5nbG9iYWxzaWduLmNvbS9ncy9nc29yZ2FuaXphdGlvbnZhbHNoYTJnMi5jcmwwgaAGCCsGAQUFBwEBBIGTMIGQME0GCCsGAQUFBzAChkFodHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc29yZ2FuaXphdGlvbnZhbHNoYTJnMnIxLmNydDA/BggrBgEFBQcwAYYzaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL2dzb3JnYW5pemF0aW9udmFsc2hhMmcyMB0GA1UdDgQWBBQ9lw0pOEotT5cKTF8vxu3W6ZCUhzAfBgNVHSMEGDAWgBSW3mHxvRwWKVMcwMx9O4MAQOYafDANBgkqhkiG9w0BAQsFAAOCAQEArSonov8KbE8+5VwewgBHhILHANLIiRmLVJ1siaRXVXL6abmMo8CjW2+VtzAQdnDkzUY6CNATs0y0qkbEcS7fvtvp8QqAiv71+jij6iDT9r9IJ1suNDeQWz6Mng98ecMVsDUzLYieeZXH049tA3hrAnscVRTu7kpT06CGbcJnoNdG7yvxx2Bs9ciVBExrqKMppVHwup23hw/IphHmifPRmXPQ3Fa5FKrqnWJw1BRBLGLOqC1mkj7JuVX108KHlwa5cGiohctnOH9dfyuQPWQecbrobwDgHl4O0Ra+bU/Z4J85YPOB/+F7rOQxRFCpv43zPdg65pNoPppjFDE4TD2bhg== ++ ++ ++ ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl-hr.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUlistofthelists ++ ++ ++ ++ European Commission ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUlistofthelists ++ ++ ++ ++ EU ++ ++ ++ application/pdf ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl-mp.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUlistofthelists ++ ++ ++ ++ European Commission ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUlistofthelists ++ ++ ++ ++ EU ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ ++ 2016-01-13T11:00:00Z ++ ++ 2016-06-10T10:00:00Z ++ ++ ++ http://sr.riik.ee/tsl/estonian-tsl.xml ++ ++ ++ ++ ++ ++ ++ AS Sertifitseerimiskeskus ++ ++ ++ VATEE-100687640 ++ AS Sertifitseerimiskeskus ++ ESTEID ++ SK ++ ++ ++ ++ ++ Pärnu mnt 141 ++ Tallinn ++ 11314 ++ EE ++ ++ ++ ++ mailto:info@sk.ee ++ http://www.sk.ee/en ++ ++ ++ ++ http://www.sk.ee/en/repository/CPS ++ http://sr.riik.ee/en/registry/legal-framework.html ++ http://www.sk.ee/repositoorium/CPS ++ http://sr.riik.ee/et/register/oigusaktid.html ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ ESTEID-SK: Qualified certificates for Estonian ID-card ++ ++ ++ ++ MIIFAjCCA+qgAwIBAgIEPERcgjANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLMB4XDTAyMDExNTE2NDQ1MFoXDTEyMDExMzE2NDQ1MFowfDEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEPMA0GA1UECxMGRVNURUlEMQowCAYDVQQEEwExMRIwEAYDVQQDEwlFU1RFSUQtU0swggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCLeZO5NVo3zbwA8eFVCrrbeZQKvPDB7LUDPvzCqw7U2sC+IwEOdjjpJRF4lxFs+f8yC1bP+rqtWzrKhhJ2owfSAlIZMbly/OFjfLqOcyyi7qdfA/66u+69u/DY9tW5fqW93D73v5WNcNoIemCTydh9IFkQvMihWKH7LblBzCHa4W6qUcBZ7QsBgYpQS9n9fGJt5D2wCDeq0pF1Zy72G3CQFrpuR/aPG28tv9r+C7oqncapbiJ7xIOa77Fm3o07M/9aarq/m1oHEp9CxYiH9nmD3kyMe8yxw5v02MTMmAcxOm83z5O4oXSDTALG5gDfZNPjJaNPno7J8FuGrI3vV8z3AgMBAAGjggGpMIIBpTAMBgNVHRMEBTADAQH/MA4GA1UdDwEB/wQEAwIB5jCCARYGA1UdIASCAQ0wggEJMIIBBQYKKwYBBAHOHwEBATCB9jCB0AYIKwYBBQUHAgIwgcMegcAAUwBlAGUAIABzAGUAcgB0AGkAZgBpAGsAYQBhAHQAIABvAG4AIAB2AOQAbABqAGEAcwB0AGEAdAB1AGQAIABBAFMALQBpAHMAIABTAGUAcgB0AGkAZgBpAHQAcwBlAGUAcgBpAG0AaQBzAGsAZQBzAGsAdQBzACAAYQBsAGEAbQAtAFMASwAgAHMAZQByAHQAaQBmAGkAawBhAGEAdABpAGQAZQAgAGsAaQBuAG4AaQB0AGEAbQBpAHMAZQBrAHMwIQYIKwYBBQUHAgEWFWh0dHA6Ly93d3cuc2suZWUvY3BzLzArBgNVHR8EJDAiMCCgHqAchhpodHRwOi8vd3d3LnNrLmVlL2p1dXIvY3JsLzAfBgNVHSMEGDAWgBQEqnpHo+SJrxrPCkCnGD9v7+l9vjAdBgNVHQ4EFgQUeBe1BfmzWM1ZjN5nXkQGTHWGaV0wDQYJKoZIhvcNAQEFBQADggEBAFIsMHaq4Ffkrxmzw38rHYh5Ia5JGxjtWfPpag9pBtQNZHzY8j97xfPI15haE9Ah3u1WC+bsU2SndVSUGaZ0gKafMxDOy2DUw3B84ymbNRiAFSWty+aKrMCjtdlPktbSQmxNSJAX9vVtM4Y2ory+dtAQ7g11GKHJ+l8BDUpOJA+l8hvS2l4K5whWDHCSqlplMiHPIKgBVArFRNzAq6dquMY+kS3e2PL+PM4GdDW5lRHR/6KUy0BHP2gX/BO4mYQ3BH2BHImUclNras0HISnV/pt6hIkgd1PsFt3rtEolAWP4DWBmc4zAYQJ5t0cEwFM329zCXSGIQIm3a1cMugF5Q/k= ++ ++ ++ CN=ESTEID-SK, SURNAME=1, OU=ESTEID, O=AS Sertifitseerimiskeskus, C=EE, EMAILADDRESS=pki@sk.ee ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2002-01-15T17:44:50Z ++ ++ https://sk.ee/en/repository/CP/ ++ https://sk.ee/repositoorium/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ true ++ ++ This service issues qualified certificates for e-signing and e-authentication within the same process. The Relying Party shall make distinction by inspection of keyUsage field contents - e-signature certificates have nonRepudation bit set exclusively. Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) and that has either its nR or its dS bit set is to be considered as supported by an SSCD ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ ESTEID-SK 2007: Qualified certificates for Estonian ID-card, the residence permit card, the digital identity card, the digital identity card in form of the Mobile-ID ++ ++ ++ ++ MIID0zCCArugAwIBAgIERZugDTANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLMB4XDTA3MDEwMzEyMjIzN1oXDTE2MDgyNjE0MjMwMVowWzELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxDzANBgNVBAsTBkVTVEVJRDEXMBUGA1UEAxMORVNURUlELVNLIDIwMDcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDtWp2jLCsA7K9AxoPDOL0geM1GoR0Q6wSUICCJYyFkUMboEMxpSzFB6tlb0ySlHEU6Fs+tjA4QrSqwaw0uNk4BXv1lkoOr6DUc+20+AQd5jB6A0atrltZ1XG5IvDEep3DJPykkk2MPxUz7dZx7XUEr/kdUWI9cDIkFWic7y9oTBY9JaV6lxm08kweZ/qTw5PU8/bTvZCE0ygvBXU4TDS2FpUJ/+jTzM2ocWa3QjFQv2Sir6LBvgNY3du/m+WLABq0dgN18R4nhFtmaVepqAeUuEi8eRBl6yLTSmMwYCY46LsK5CdjTCZSZv934FtNuyY6Ph9nCXJAgNAY+GfNJfdMXAgMBAAGjgZwwgZkwEgYDVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAf4wMwYDVR0fBCwwKjAooCagJIYiaHR0cDovL3d3dy5zay5lZS9jcmxzL2p1dXIvY3JsLmNybDAfBgNVHSMEGDAWgBQEqnpHo+SJrxrPCkCnGD9v7+l9vjAdBgNVHQ4EFgQUSAbevoyHV5WAeGP6nCMrK6A6GHUwDQYJKoZIhvcNAQEFBQADggEBACO6SJrjN5WZuiLSMy/tSmT/w3dd/KPErSAdUIJYkC7hOIauW7jZ3VNgNUMHSIkUoP8AviEMjGA4lkT61YScpJAdmgl8Y80HFdZV5CsThhddoIdZ3cZjSI4NZmTVkSduTjoySALxKL3ZEIPrepQDvNEeV1WSpI5+u/vMekUWJSPc8BK9O2av1e9ResKyPJidqrIksHFjNS+Yt8Ouw7F10MHaPPzMiwoa0DYTVsIKJncPTQmvdJG8M0DDToiiNPQuUy5d1CA75Wtjs+yILGZXpOfbdoQhE7G4pbZaF1s69jKp+zc0ZT4g2OoKfI2TiIX9qeGJMxkOENcd1DDqYVfePmo= ++ ++ ++ CN=ESTEID-SK 2007, OU=ESTEID, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2007-01-03T13:22:37Z ++ ++ https://sk.ee/repositoorium/CP/ ++ https://sk.ee/en/repository/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ true ++ ++ This service issues qualified certificates for e-signing and e-authentication within the same process. The Relying Party shall make distinction by inspection of keyUsage field contents - e-signature certificates have nonRepudation bit set exclusively. Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) and that has either its nR or its dS bit set is to be considered as supported by an SSCD ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ ESTEID-SK 2011: Qualified certificates for Estonian ID-card, the residence permit card, the digital identity card, the digital identity card in form of the Mobile-ID ++ ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=ESTEID-SK 2011, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ MIIFBTCCA+2gAwIBAgIQKVKTqv2MxtRNgzCjwmRRDTANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMB4XDTExMDMxODEwMTQ1OVoXDTI0MDMxODEwMTQ1OVowZDELMAkGA1UEBhMCRUUxIjAgBgNVBAoMGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxFzAVBgNVBAMMDkVTVEVJRC1TSyAyMDExMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCz6XxsZh6r/aXcNe3kSpNMOqmQoAXUpzzcr4ZSaGZh/7JHIiplvNi6tbW/lK7sAiRsb65KzMWROEauld66ggbDPga6kU97C+AXGu7+DROXstjUOv6VlrHZVAnLmIOkycpWaxjM+EfQPZuDxEbkw96B3/fG69Zbp3s9y6WEhwU5Y9IiQl8YTkGnNUxidQbON1BGQm+HVEsgTf22J6r6G3FsE07rnMNskNC3DjuLSCUKF4kH0rVGVK9BdiCdFaZjHEykjwjIGzqnyxyRKe4YbJ6B9ABm95eSFgMBHtZEYU+q0VUIQGhAGAurOTXjWi1TssA42mnLGQZEI5GXMXtabp51AgMBAAGjggGgMIIBnDASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBBjCB9gYDVR0gBIHuMIHrMIHoBgsrBgEEAc4fZAEBATCB2DCBsgYIKwYBBQUHAgIwgaUegaIASwBhAHMAdQB0AGEAdABhAGsAcwBlACAAaQBzAGkAawB1AHQAdAD1AGUAbgBkAGEAdgBhAGwAZQAgAGQAbwBrAHUAbQBlAG4AZABpAGwAZQAgAGsAYQBuAHQAYQB2AGEAdABlACAAcwBlAHIAdABpAGYAaQBrAGEAYQB0AGkAZABlACAAdgDkAGwAagBhAHMAdABhAG0AaQBzAGUAawBzAC4wIQYIKwYBBQUHAgEWFWh0dHBzOi8vd3d3LnNrLmVlL0NQUzAdBgNVHQ4EFgQUe2ryVVBcuNl6CIdBrvqiKz1bV3YwHwYDVR0jBBgwFoAUEvJaPupWHL/NBqzx8SXJqUvUFJkwPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL3d3dy5zay5lZS9yZXBvc2l0b3J5L2NybHMvZWVjY3JjYS5jcmwwDQYJKoZIhvcNAQEFBQADggEBAKC4IN3FC2gVDIH05TNMgFrQOCGSnXhzoJclRLoQ81BCOXTZI4qn7N74FHEnrAy6uNG7SS5qANqSaPIL8dp63jg/L4qn4iWaB5q5GGJOV07SnTHS7gUrqChGClnUeHxiZbL13PkP37Lnc+TKl1SKfgtn5FbH5cqrhvbA/VF3Yzlimu+L7EVohW9HKxZ//z8kDn6ieiPFfZdTOov/0eXVLlxqklybUuS6LYRRDiqQupgBKQBTwNbC8x0UHX00HokW+dCVcQvsUbv4xLhRq/MvyTthE+RdbkrV0JuzbfZvADfj75nA3+ZAzFYS5ZpMOjZ9p4rQVKpzQTklrF0m6mkdcEo= ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2011-03-18T11:14:59Z ++ ++ https://sk.ee/repositoorium/CP/ ++ https://sk.ee/en/repository/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ true ++ ++ This service issues qualified certificates for e-signing and e-authentication within the same process. The Relying Party shall make distinction by inspection of keyUsage field contents - e-signature certificates have nonRepudation bit set exclusively. Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) and that has either its nR or its dS bit set is to be considered as supported by an SSCD ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ ESTEID-SK 2015: Qualified certificates for Estonian ID-card, the residence permit card, the digital identity card, the digital identity card in form of the Mobile-ID ++ ++ ++ ++ CN=ESTEID-SK 2015,2.5.4.97=#130e4e545245452d3130373437303133,O=AS Sertifitseerimiskeskus,C=EE ++ ++ ++ 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 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2015-12-17T12:38:00Z ++ ++ https://sk.ee/repositoorium/CP/ ++ https://sk.ee/en/repository/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ true ++ ++ This service issues qualified certificates for e-signing and e-authentication within the same process. The Relying Party shall make distinction by inspection of keyUsage field contents - e-signature certificates have nonRepudation bit set exclusively. Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) and that has either its nR or its dS bit set is to be considered as supported by an SSCD ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ EID-SK 2007: Qualified certificates for Mobile-ID ++ ++ ++ ++ MIID4jCCAsqgAwIBAgIERZ4nqjANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLMB4XDTA3MDEwNTEwMjU0NloXDTE2MDgyNjE0MjMwMVowajELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxITAfBgNVBAsTGFNlcnRpZml0c2VlcmltaXN0ZWVudXNlZDEUMBIGA1UEAxMLRUlELVNLIDIwMDcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDifhEdyvuhk/3TJEGMJ1tEZOskE81yMqPGGXaPHXACJ7fncn1D1uQFt+RG8/ckh7zDquHV1m4HQk7dchaP00rvgsvRlYC9GPcFt6TW8w3t+BkxY1RNbmONgH3qzikljk7m6Nb8UGtL9hOmZdw5k5t9Ht8fgHTnoBkFrxYgsv9d4CCkBTSprNUK+vy/NTak4iAYinWtK6tRHHb1fxRsLUXiDLSO42Kz+rehhslANX+9Y5/h0wlh3pcmxLB1JWAP0O9fV6N1LUQ3Ym7wMp/lBXuPvl52yJuSZDWUF7GkIp+vUifOSefF6CeGh8K9BXDvuOqg+5c/6gkfEQxpRgdu+q5FAgMBAAGjgZwwgZkwEgYDVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAf4wMwYDVR0fBCwwKjAooCagJIYiaHR0cDovL3d3dy5zay5lZS9jcmxzL2p1dXIvY3JsLmNybDAfBgNVHSMEGDAWgBQEqnpHo+SJrxrPCkCnGD9v7+l9vjAdBgNVHQ4EFgQUHAf0nL+kJWyztJ4iHx+USBtYeo0wDQYJKoZIhvcNAQEFBQADggEBABaiEXv415Oh7AgHODwKRyNFqPcSSOgpLCy1XJB3hl3fi21fslccWuBhfzqHQCiQi0fewh109IJiHq8n1PeKoHBCUVq6NFpxkVsUlUPBr0Qsya1O3SQjuOsBLzUWBvY25dtBuAkBMCo0V1Erf7iTeOzuL4LLbCoeOfeQT3HPmEfSqP5f8V10ST8erbiTVPJwzr66vXaT9YKxy8NyAQc2iaOHuYmGKxs8dgDQRkG6b2a/f5q21YEQKDhvz7VvM6tH+F+rohA2wAvVz4tcPtyw5WEYcavr1KHgz4eZVWsqh2OsHUK9qMas5m/44O1/hXrjpMy5IQsiB4ASXDuXvdOTVbU= ++ ++ ++ CN=EID-SK 2007, OU=Sertifitseerimisteenused, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2007-01-05T11:25:46Z ++ ++ https://sk.ee/repositoorium/CP/ ++ https://sk.ee/en/repository/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ true ++ ++ This service issues qualified certificates for e-signing and e-authentication within the same process. The Relying Party shall make distinction by inspection of keyUsage field contents - e-signature certificates have nonRepudation bit set exclusively. Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) and that has either its nR or its dS bit set is to be considered as supported by an SSCD ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ EID-SK 2011: Qualified certificates for Mobile-ID, organisation cards for natural persons ++ ++ ++ ++ MIIFADCCA+igAwIBAgIQQyvUTmJDa0ZNgy+/fS0vWjANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMB4XDTExMDMxODEwMTExMVoXDTI0MDMxODEwMTExMVowYTELMAkGA1UEBhMCRUUxIjAgBgNVBAoMGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxFDASBgNVBAMMC0VJRC1TSyAyMDExMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC2Q1zKMt7DytbntSLoYAAVkEwV+5djSr0vSIG/Zm9seKyx+2PY8sVzXRoUD1CMIYnstDhBSKMjn2/+HpA7pOipAIAMrk6uKnpSTTdFbQ+0fzJVPokBgsdsQ6R5TZFPB1nu5zgRRlQmWIFxOpDiNHTt0LObUhWLXzUb31vc1Wmao2IYcDx1TCs/1E9+camiCl2B5lXrPEU3wBq4waD54izS20DK05+6+hHRg+TqoIg5YSmwbjStEyd/8AQeokwVloyyH49bnpeluADcZJgxxE9ZUvVWHoxYfmg1IeRU72jHTcIjNf1cQN2+9/FtHQMnGzDBgmAPpghwWr3JtW0JWvMXAgMBAAGjggGeMIIBmjASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBBjCB9AYDVR0gBIHsMIHpMIHmBgsrBgEEAc4fZAEBATCB1jCBsAYIKwYBBQUHAgIwgaMegaAASwBhAHMAdQB0AGEAdABhAGsAcwBlACAAZgD8APwAcwBpAGwAaQBzAHQAZQBsAGUAIABpAHMAaQBrAHUAdABlAGwAZQAgAHMAZQByAHQAaQBmAGkAawBhAGEAdABpAGQAZQAgAHYA5ABsAGoAYQBzAHQAYQBtAGkAcwBlAGsAcwAgAGsAbwBtAG0AZQByAHQAcwBhAGwAdQBzAGUAbAAuMCEGCCsGAQUFBwIBFhVodHRwczovL3d3dy5zay5lZS9DUFMwHQYDVR0OBBYEFLEQlwL63YbGeEGkwzKI+/4f58AFMB8GA1UdIwQYMBaAFBLyWj7qVhy/zQas8fElyalL1BSZMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly93d3cuc2suZWUvcmVwb3NpdG9yeS9jcmxzL2VlY2NyY2EuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQAxau3ohdFkpvaiVUR7arNovQUZRCG9Ge3udqHYemovyU7N60Hgomc/ZG+uunScATTUhBcv9a5zkQxb1dQ1LYDRfNr9CqI0QvSEE4t9Sfu3fOhyLrlmb3s8xhhYLJBJ325uDvtO/qFeXLlcRXMF5nU8FE2IyaZP1CHYKVh5QNPPQiGZGSox5oOkCvmt4lUl4lZUwVie75us/WtrD6DJeREBTEDHORIfg8E9RA1y/7t2gT9vrU8tabeSZlD03qwXe0nJ9RscI/P0HT8vuo1PGzCfbH9xFqfoZ2jdJ0HzxrFM8VsL/AtCw0dmrxRHLlZzqSw0G7b0W40mwOQauO2gbMfn ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=EID-SK 2011, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2011-03-18T11:11:11Z ++ ++ https://sk.ee/repositoorium/CP/ ++ https://sk.ee/en/repository/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ true ++ ++ This service issues qualified certificates for e-signing and e-authentication within the same process. The Relying Party shall make distinction by inspection of keyUsage field contents - e-signature certificates have nonRepudation bit set exclusively. Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) and that has either its nR or its dS bit set is to be considered as supported by an SSCD ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ KLASS3-SK: Qualified electronic seals ++ ++ ++ ++ MIIEBDCCAuygAwIBAgIEPNkU9TANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLMB4XDTAyMDUwODEyMDcxN1oXDTEyMDUwNTExMDcxN1owgY4xGDAWBgkqhkiG9w0BCQEWCXBraUBzay5lZTELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxITAfBgNVBAsTGFNlcnRpZml0c2VlcmltaXN0ZWVudXNlZDEKMAgGA1UEBRMBMTESMBAGA1UEAxMJS0xBU1MzLVNLMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvIIeK3GJxoPCXVwan+HjJwYGaH3nb/rTPEqg5v9e1c7dnTDBdD2Yteg+lUdHBZDHLj1Tz+J/W9Foc0dzEr96S8+6nMXoonK2x0854JNH2UVbS/+YOGUM6iWSxkHw525tvn5tFaIQoaeh46aQFp9Dngcnv4Gatd0/7NCkLggjFrKmnNTPINpLAG9VoCpVyIMvcVCyTNvSQ+n33ToPO5vtULNYOtCF9MDVND+uNRE2o0tWIG0l84owYPA47tJOLgCpAxLNFR5Ys0nB/ofBYcO+YiCri0yc6t7ZPs/vcfbR6czIwW0GMjyHmVPLB+/WHS3P1sk29DdgIC42RTMthJS6ZQIDAQABo4GZMIGWMA8GA1UdEwQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgHmMDMGA1UdHwQsMCowKKAmoCSGImh0dHA6Ly93d3cuc2suZWUvY3Jscy9qdXVyL2NybC5jcmwwHwYDVR0jBBgwFoAUBKp6R6Pkia8azwpApxg/b+/pfb4wHQYDVR0OBBYEFOU/DJ1xPW+8Gb+a9G6/Cf5A652WMA0GCSqGSIb3DQEBBQUAA4IBAQASvWB+YrgN23EMLW7C5/XUwQLNN1RMDhr6UzOo5XHZ3pxUXq2Erk5ggiS+UJIxkQaSg4OHRru8KTchoJDvS2neeYHOz05zJcAIwoy2GGkHq1iVN+QZaprDaDNYR5GGKgJb3FZrMtyX4dNwnrZzMFzd6t5YibCW+BDPAmqGJvNHzJ5YYdA7I3WT9Baan1ncKd4FtUVb54fppd19NkbCKKSUd7qRYDduNYqVs1C/C0qqLq4TrxoxoxSo+WNLiD01896sIRiPIy8qDOAXJU67382J5XXETe9wZO6o7+NaG0CrpzVY1OaaD2O6Wv/vSpxE2ugqaf0WsP35+coFCWdM2uHZ ++ ++ ++ CN=KLASS3-SK, SERIALNUMBER=1, OU=Sertifitseerimisteenused, O=AS Sertifitseerimiskeskus, C=EE, EMAILADDRESS=pki@sk.ee ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2002-05-08T12:07:17Z ++ ++ https://sk.ee/repositoorium/CP/ ++ https://sk.ee/en/repository/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ false ++ ++ Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) is to be considered as issued to a Legal Person ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ Any certificate that is issued under the CA/QC Sdi certificate and that is issued as a QC (i.e. containing a QcCompliance statement) and having its non-repudation bit set exclusively, is to be considered as supported by an SSCD. They are issued for digital stamping according to Estonian Digital Signature Act ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ KLASS3-SK 2010: Qualified electronic seals ++ ++ ++ ++ CN=KLASS3-SK 2010, OU=Sertifitseerimisteenused, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ 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 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2010-03-31T09:17:28Z ++ ++ https://sk.ee/en/repository/CP/ ++ https://sk.ee/repositoorium/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ false ++ ++ Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) is to be considered as issued to a Legal Person ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ Any certificate that is issued under the CA/QC Sdi certificate and that is issued as a QC (i.e. containing a QcCompliance statement) and having its non-repudation bit set exclusively, is to be considered as supported by an SSCD. They are issued for digital stamping according to Estonian Digital Signature Act ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, ESTEID-SK OCSP RESPONDER 2005 ++ ++ ++ ++ MIIDPDCCAiSgAwIBAgIEQi2iwTANBgkqhkiG9w0BAQUFADB8MRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMQ8wDQYDVQQLEwZFU1RFSUQxCjAIBgNVBAQTATExEjAQBgNVBAMTCUVTVEVJRC1TSzAeFw0wNTAzMDgxMzA0MDFaFw0xMjAxMTIxMzA0MDFaMG8xCzAJBgNVBAYTAkVFMQ8wDQYDVQQKEwZFU1RFSUQxDTALBgNVBAsTBE9DU1AxJjAkBgNVBAMTHUVTVEVJRC1TSyBPQ1NQIFJFU1BPTkRFUiAyMDA1MRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAI8mLeLkRHLxMNCB5Pz8R5DnvPdVxBS91PoHboLnbhjlp1ecByVosjwGpXCGu8tUPuv81Azgqq97AsSugM1J7Pu0gj4bg0Mf6O/9XyoT7RI7H0BuEn4KJQlFcw7tXizI5KUWFFZ4Qg8kfg0xwrDrLIjusBtRbeRARG3DhH8dgZBpAgMBAAGjVzBVMBMGA1UdJQQMMAoGCCsGAQUFBwMJMB8GA1UdIwQYMBaAFHgXtQX5s1jNWYzeZ15EBkx1hmldMB0GA1UdDgQWBBRM+GJhloJeOPpJDgvA0clxQXdnVTANBgkqhkiG9w0BAQUFAAOCAQEAfD8dP+swtSeigLxL3uUXV/tmQkjre7Ww39Uey71LdtxQ6zC7MDjcsLW13JaU0pRuu/p/eGe6h4/w46tSMsBx/U+D1WnHeCj1ED9SFWwfNQFVz9FkM5JEkPDm7lw5hHoxIghRHAC3NMbR3sCrVQA2YELf2WypslROoz8XlRT1LN4pwVehpBeWO7xbQPUtoaxKrSCGumtxtxA3KRJ7POHPTAH4cvipxaZhS1ZcXbKtxsesGW+7KLZirpTBT17ICXEA1CFXDWmJ8MHRhbeNWK3G1PERgTiGtBQV7Z00CzmJPHmb1yfcT27+WZ1W9tRQsjhGEWyMVkNnZooWHIjLpNucQA== ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=ESTEID-SK OCSP RESPONDER 2005, OU=OCSP, O=ESTEID, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2005-03-08T14:04:01Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, ESTEID-SK 2007 OCSP RESPONDER ++ ++ ++ ++ MIIDnDCCAoSgAwIBAgIERZ0acjANBgkqhkiG9w0BAQUFADBbMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEPMA0GA1UECxMGRVNURUlEMRcwFQYDVQQDEw5FU1RFSUQtU0sgMjAwNzAeFw0wNzAxMDQxNTE3MDZaFw0xMDAxMDgxNTE3MDZaMG8xCzAJBgNVBAYTAkVFMQ8wDQYDVQQKEwZFU1RFSUQxDTALBgNVBAsTBE9DU1AxJjAkBgNVBAMTHUVTVEVJRC1TSyAyMDA3IE9DU1AgUkVTUE9OREVSMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJmoB3SJCpPzcoHNqK1J0tRNQjgr5iuB27uE1VacIbITjD/Nc1AefKz5ydNPIaBNehm4yKxBYGxEeWOSJHVXyhJMg53EAUOw/45c46gvznXupHuJ6TEiGjh1pxaXTeLSnTqzNDZDAGQsOTgIbwGLa5U5ad8rXYu2YkJKsAfo6jT5AgMBAAGjgdcwgdQwEwYDVR0lBAwwCgYIKwYBBQUHAwkwEgYJKwYEBQUHMAEFBAUwAwQBMDCBiQYDVR0jBIGBMH+AFEgG3r6Mh1eVgHhj+pwjKyugOhh1oWGkXzBdMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLggRFm6ANMB0GA1UdDgQWBBRJ/snw1GDL3fUH9n9Cpn8yhXiC7DANBgkqhkiG9w0BAQUFAAOCAQEAYzGkZD/uaXlWPeye1z5IiI83nmAjiJyvoj/r3BB9ZFWMX+ZY4Fz6/V/fzD0xXoeDpWbBKxcuctPXzXYxEH17n0/3yGOz8jhdJNBUCwRmd+96oHsU9aWSf+D2tiq1jPw6HVCiUYOhC/OWjg/+JpFlWsBV4gTW8/2PSGig85XlEsWLK7i7tIe60nnw/rWnfbCckMRcbrAF1L/JIlnUYUdkGOGQ9KPVqwR/MyWrwFIcSy2QIbcIaWMuiUc1nt8bmIXKoFZxbLzXYC00zba9cY7lSC4WPuhBtrQJ9JWb4OeoXd5j6O45UaH6XbarfrhER1GHL06cTyksT18p2L2GrMuEJg== ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=ESTEID-SK 2007 OCSP RESPONDER, OU=OCSP, O=ESTEID, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2007-01-04T16:17:06Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, ESTEID-SK 2007 OCSP RESPONDER 2010 ++ ++ ++ ++ MIIEkjCCA3qgAwIBAgIESxUPmTANBgkqhkiG9w0BAQUFADBbMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEPMA0GA1UECxMGRVNURUlEMRcwFQYDVQQDEw5FU1RFSUQtU0sgMjAwNzAeFw0wOTEyMDExMjQ1MDBaFw0xNjA4MjYxMzIzMDBaMIGHMQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czENMAsGA1UECwwET0NTUDErMCkGA1UEAwwiRVNURUlELVNLIDIwMDcgT0NTUCBSRVNQT05ERVIgMjAxMDEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA48pyM/QfeiU1Kbu4AdcAUKXBiwbYbBl4gCltZHC5fZ77fKj2mqfPX2/XW1EqzbVvG0PYIkapkQzBr3R1S6Uaxh1DLC2Cc8BRnqmhXoE03o8En7N9xpN9dGGDBHp2aElBcVVZnAvF4jgbPDCNFAeo3cvpjIx18n0URiVOZFEdxDvF8PFo/exKXtjRM+jk3K6+9doHYvSXn9klFbT8Wge87Qdll3gQzZE3L8QMXF0z4xbBH1lyTmVLt5yZ0fxoE0jNlZFvn2w2EDnU4CKfId8w6Zjd5kdxomcwDzGuuLzdiJllPt05USJcY4FHn9YAVKWmofYY/o6xOUzU8fAz6yA1tQIDAQABo4IBLzCCASswEwYDVR0lBAwwCgYIKwYBBQUHAwkwaQYDVR0gBGIwYDBeBgorBgEEAc4fBAECMFAwJQYIKwYBBQUHAgIwGRoXU0sgdGltZSBzdGFtcGluZyBwb2xpY3kwJwYIKwYBBQUHAgEWG2h0dHA6Ly93d3cuc2suZWUvYWphdGVtcGVsLzCBiQYDVR0jBIGBMH+AFEgG3r6Mh1eVgHhj+pwjKyugOhh1oWGkXzBdMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLggRFm6ANMB0GA1UdDgQWBBQ4AhAwumZ6EXROIl5wZQXedXpOFDANBgkqhkiG9w0BAQUFAAOCAQEAJ/LvPUevNRcBp+J78fZRofhk/ifKNLxCUoh8T3MjtU9u5R0KojRlye+1NU8MqH/zrKhr6TPxuXD0cRrFQ9Hy60II7IzzaegrQVNgq7UgQINvCuNxWZcGtEa3ba9M7tBpQeFxqp3CpBytGeVuXn65hqOBKdp/zYEiMUUkYNAT5A6SSPYLAOgARCI/ydBx+cw0l0fwYvw72FKZa2Mlt5DmXBccCtrQ4l/sb95xfANCNe5n5sBvBhY4F+sIWZUVJ8fTVh7iGaVPSayQfeAAei0m/4/ksiXBwfx6qhzyB3yqcnSk489oBrrCegua/t+3LizfHpNZvDphKMPuAZ4uheLfQA== ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=ESTEID-SK 2007 OCSP RESPONDER 2010, OU=OCSP, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2009-12-01T13:45:00Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, EID-SK 2007 OCSP RESPONDER ++ ++ ++ ++ MIIDOjCCAiKgAwIBAgIERh9YjTANBgkqhkiG9w0BAQUFADBqMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMRQwEgYDVQQDEwtFSUQtU0sgMjAwNzAeFw0wNzA0MTMxMDE2NDVaFw0xMDA0MTcwOTE2NDVaMH8xCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMQ0wCwYDVQQLEwRPQ1NQMSMwIQYDVQQDExpFSUQtU0sgMjAwNyBPQ1NQIFJFU1BPTkRFUjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQD+Z0LZ6TjBzx4x+UshExea1nIMsS86xAN6u/amLV8XQE+vodEld8iqtRsrvFiQ74isYOys1JKqiq+1ryic6j2FnMDZueLiXZl51QWyuhWu+aT4BwEaA8rUxMgKJ94zWksrqSf9cjoaap+9DlDhEsrDa+/89CPl2rlZIB5lqeHLQQIDAQABo1cwVTATBgNVHSUEDDAKBggrBgEFBQcDCTAfBgNVHSMEGDAWgBQcB/Scv6QlbLO0niIfH5RIG1h6jTAdBgNVHQ4EFgQUMsMzikmZqG6CcdgnD5VAXfQeCrgwDQYJKoZIhvcNAQEFBQADggEBAH0eUFQ7LznD4R8XWj/6rsNhe0fme3Os7cyZGNkx1EWenkgdMHCV/gN3SyIfrjW7sEJM62sS1X+8Ke2J+6b5YH0TcSmSDqYICn6zVbsq5MLtHW5wmwKucBJ5xFgoC3NNCEp8wVrzuQmm6xCvFWQVQ6uNhjuxCQxcDKgLwpL7iEcBEMmTTKkvqEtqrvu/LZ/a2OHytkEoXGheN8KlEcIv7AJBPVL8OCv4UpgyUOrVnmIeX2F/KG3wmo4U3kVupuF9kaPrOeOGYG3ZzK2HNwfRNkZ/Ej7AuPazkumAHdsJBbpTdBYq8d8er8XZKai24Ra/e5eEmcMye+O8IpxAA4ExY+I= ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=EID-SK 2007 OCSP RESPONDER, OU=OCSP, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2007-04-13T10:16:45Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, EID-SK 2007 OCSP RESPONDER 2010 ++ ++ ++ ++ MIIEMTCCAxmgAwIBAgIESxUA8TANBgkqhkiG9w0BAQUFADBqMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMRQwEgYDVQQDEwtFSUQtU0sgMjAwNzAeFw0wOTEyMDExMTQxMzBaFw0xNjA4MjYxMzIzMDBaMIGEMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czENMAsGA1UECxMET0NTUDEoMCYGA1UEAxMfRUlELVNLIDIwMDcgT0NTUCBSRVNQT05ERVIgMjAxMDEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAso91KG7EHsjAxMairaCKUHSOyXp5rzxRq5Y9LfDyplVbHfh34fbB7M5G+wnu5CZgJsfJ7DF3MjpA7nlAHd5alAynIUl/CNXejf+XnJ/vyF1eQvAoWvnjBPVIS0mbaABgF54ybAGE2E7UKeZVOAj7RoQVAMHQcYVjxZW5OWz3yJX9KdaDZPOzqlGtRYKUASHiwAFwExKcqfaHOj0qO8+KdSvEBaVlpe5kunEVEvn+kgNKBtzdH2XFMjVFa4im31KW+iq7mNQwUiZDSe9ho6T6UrWu7g8yTQowx3SYLTqVxR0YVgcYNCx7nn1AVGNxK3oeonrHHqcBp6qSAIYXeQNfiQIDAQABo4HDMIHAMBMGA1UdJQQMMAoGCCsGAQUFBwMJMGkGA1UdIARiMGAwXgYKKwYBBAHOHwQBAjBQMCUGCCsGAQUFBwICMBkaF1NLIHRpbWUgc3RhbXBpbmcgcG9saWN5MCcGCCsGAQUFBwIBFhtodHRwOi8vd3d3LnNrLmVlL2FqYXRlbXBlbC8wHwYDVR0jBBgwFoAUHAf0nL+kJWyztJ4iHx+USBtYeo0wHQYDVR0OBBYEFPBOCDPMR+kfp7Ozk5U68E68/AseMA0GCSqGSIb3DQEBBQUAA4IBAQCRaqmxZgJiJ+MLamb/P4vyS6azr6/tj8dZCK++V/3GnecRm7CiZpR47EnW0NyDzCecGyTWSkVlnZPnNvXRx700Nn0M4Inia5pNhSuVmWS3p5eV70vCbsfRD26+6CZhkHWnL/J2xpqeacULtgPPz9gBTyC2ybQr17dv7W5Qc+3UFywmE5N8ozQuEJroGz7P+yCbBEssWcmIUNDNdO0xs6aQZ1f+DV4FUB0lajuILYFz4xM+81akYFVqaGPCVwbQgFSWRKmamj8FxfWjA4DCrgkHVR1rA3tZyirfCBK9cfWpTCLr8zq9Ur0jTAeGrHRzHlUrB9mYZwyr0kNOyl9293xh ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=EID-SK 2007 OCSP RESPONDER 2010, OU=OCSP, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2009-12-01T12:41:30Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, KLASS3-SK OCSP RESPONDER 2009 ++ ++ ++ ++ MIIDzzCCAregAwIBAgIEScskSjANBgkqhkiG9w0BAQUFADCBjjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMQowCAYDVQQFEwExMRIwEAYDVQQDEwlLTEFTUzMtU0swHhcNMDkwMzI2MDY0NDI2WhcNMTIwNTA0MDU0NDI2WjCBgjELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxDTALBgNVBAsTBE9DU1AxJjAkBgNVBAMTHUtMQVNTMy1TSyBPQ1NQIFJFU1BPTkRFUiAyMDA5MRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKi6weNl7Wj7sL6JD4YUNt/JXQ79KL53x5m4QGRsijGJaV5YggE5rJyVZGlsX4FSd9JFIV597ypAUGDbLPf0nDdlSIGteP7zamyETI3GI6bKfkeUuIE707r7uC+8FFe9iHOOL20+pi7WFzwnyXT9yuWs0eCoKdjQvLpMiq0MBIm9AgMBAAGjgcIwgb8wEwYDVR0lBAwwCgYIKwYBBQUHAwkwaAYDVR0gBGEwXzBdBgorBgEEAc4fBAECME8wJQYIKwYBBQUHAgIwGRoXU0sgdGltZSBzdGFtcGluZyBwb2xpY3kwJgYIKwYBBQUHAgEWGmh0dHA6Ly93d3cuc2suZWUvYWphdGVtcGVsMB8GA1UdIwQYMBaAFOU/DJ1xPW+8Gb+a9G6/Cf5A652WMB0GA1UdDgQWBBT59PTkSIzYXNBxQQnAhqH3BtED0TANBgkqhkiG9w0BAQUFAAOCAQEAhyl3H6fo1bz3mD0JcD4eY1slcwec92Qgkn6i9TsO5TlDQCJxiC/80zlh+H5dgIMcNQ6gNbr1cWsUw7xAanv2hGlg20IWq7uCyy5LDghFpO2BWDzTJjmiVTXzyVEvqST0W6efDiwi1tA8H7b+aAzc9ItWm7pYlucGvneKJq07t/UvU9ONSDUfVLPNMr8slwCMOexVDZ+eiBlvrLL3N7NouPs7UpFh/+m5JsERmeLbbrNYimHUUn2PJ/trJ3kBEVFToO+nFdBElfzC3bjSlbPXFxSOL+AqSgvRIaB4CEWUxa33wzoZNaVpCh5AupxQOGdr4u7ajw5hkV8Y9VZ7OFej6A== ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=KLASS3-SK OCSP RESPONDER 2009, OU=OCSP, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2009-03-26T07:44:26Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, KLASS3-SK 2010 OCSP RESPONDER ++ ++ ++ ++ MIIELzCCAxegAwIBAgICAMswDQYJKoZIhvcNAQEFBQAwbTELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxITAfBgNVBAsTGFNlcnRpZml0c2VlcmltaXN0ZWVudXNlZDEXMBUGA1UEAxMOS0xBU1MzLVNLIDIwMTAwHhcNMTAwNDA4MDgwMTMxWhcNMTYwODI1MjIwMDAwWjCBgjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czENMAsGA1UECxMET0NTUDEmMCQGA1UEAxMdS0xBU1MzLVNLIDIwMTAgT0NTUCBSRVNQT05ERVIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhWwGpngF0sdGCgOgiyT12A/Vdm9sMPr/cUwZhU7DA5C8rU1yJhbrh28fMpv0eas6/+IC1oDxI24zjfWIKfHwpBmhUTFsmvmKRIu4a1F6VwNwYEdoAZrQDpzZSve6H6R/+0Uy0BAolebdhPUK22pKd8V1CBY3de886Ray8uUJu09MAU8j+xsoUNOzyxiWdAVp1YTXRhhUt+EQVYJ22RBZ6+b9fPQvgb9aWgE/WwqUh7OrgTnrGZVzgO46prfE7zkALG0FYZCzQTCMH8aIqqte0E3HwSVlKh9qwbRPB9WTDCtCqajh4qgGRTXvWT4vATlHvx8GpJ3roZkp5AlQno3hTAgMBAAGjgcIwgb8waAYDVR0gBGEwXzBdBgorBgEEAc4fBAECME8wJQYIKwYBBQUHAgIwGRoXU0sgdGltZSBzdGFtcGluZyBwb2xpY3kwJgYIKwYBBQUHAgEWGmh0dHA6Ly93d3cuc2suZWUvYWphdGVtcGVsMBMGA1UdJQQMMAoGCCsGAQUFBwMJMB8GA1UdIwQYMBaAFF11FBGM9KWOQo97skBEo+7WejtyMB0GA1UdDgQWBBQ3MJkXG2Go/6j4bem465aue3P5qjANBgkqhkiG9w0BAQUFAAOCAQEAKhoVTII1ECecFkyt9Ogr0XW3WEFprrqTDE4IycMlx+LNjWk30aknMldEtzIC5nCDX27NCWkpbN1o/3ddBv0cKMa05ZK8sHQxU6A5Oev8DCp72/LFEChq5IDqgqW2BiHhyfPfr93JIuV03b/Wgq3fpRyBd21VE9254W4A90xeNxDvdpqxlrD2Lonzm/V/oomzEHsp4kKxXkPmRU4vGtTnxxAnxYp9OuLkvpUCLNoAWMbYqb4cbYzaZ9tQIkBy3nJ352Rs5obYDb3R/ZVWuYLLSocWL7b2QwlDP7LA8VNDqmQvioHt8GcyKXQ5/eWMvj2ePt58waVhwfSdd4nANKtq1g== ++ ++ ++ CN=KLASS3-SK 2010 OCSP RESPONDER, OU=OCSP, O=AS Sertifitseerimiskeskus, C=EE, EMAILADDRESS=pki@sk.ee ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2010-04-08T08:01:31Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, SK OCSP RESPONDER 2011 ++ ++ ++ ++ MIIEvDCCA6SgAwIBAgIQcpyVmdruRVxNgzI3N/NZQTANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMB4XDTExMDMxODEwMjE0M1oXDTI0MDMxODEwMjE0M1owgZ0xCzAJBgNVBAYTAkVFMQ4wDAYDVQQIEwVIYXJqdTEQMA4GA1UEBxMHVGFsbGlubjEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czENMAsGA1UECxMET0NTUDEfMB0GA1UEAxMWU0sgT0NTUCBSRVNQT05ERVIgMjAxMTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAihvGyhMVrgReHluKln1za6gvCE/mlSREmWjJFpL9llvuEUZoPFIypYA8g5u1VfgkeW5gDq25jAOq4FyXeDGIa+pJn2h0o2Wc2aeppVG/emfGm/jA8jjeyMrwH8fAJrqVQ7c9X2xSwJEch/P2d8CfMZt5YF6gqLtPvG1b+n6otBZA5wjIFfJ/inJBMUvqHSz3+PLfxO2/T3Wyk/c8M9HIMqTelqyiMGRgWehiU1OsL9armv3dQrHs1wm6vHaxfpfWB9YAFpeo9aYqhPCxVt/zo2NQB6vxyZS0hsOrXL7SxRToOJaqsnvlbf0erPPFtRHUvbojYYgl+fzlz0Jt6QJoNwIDAQABo4IBHTCCARkwEwYDVR0lBAwwCgYIKwYBBQUHAwkwHQYDVR0OBBYEFKWhSGFt537NmJ50nCm7vYrecgxZMIGCBgNVHSAEezB5MHcGCisGAQQBzh8EAQIwaTA+BggrBgEFBQcCAjAyHjAAUwBLACAAdABpAG0AZQAgAHMAdABhAG0AcABpAG4AZwAgAHAAbwBsAGkAYwB5AC4wJwYIKwYBBQUHAgEWG2h0dHBzOi8vd3d3LnNrLmVlL2FqYXRlbXBlbDAfBgNVHSMEGDAWgBQS8lo+6lYcv80GrPHxJcmpS9QUmTA9BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vd3d3LnNrLmVlL3JlcG9zaXRvcnkvY3Jscy9lZWNjcmNhLmNybDANBgkqhkiG9w0BAQUFAAOCAQEAw2sKwvTHtYGtD8Jw9mNUuj/mWiBSBEBeY2LhW8V6tjBPAPp3s6iWOh0FbVR2LUyrqRwgT3fyWiGsiDm/6cIqM+IblLp/8ztfRQjquhW6XCD9SK02OQ9ZSdBwcmoAApZLGXQC34wdgmV/hLTTNxONnDACBKz9U+Dy9a4ZT4tpNkbH8jq/BMne8FzbvRt1bjpXBP7gjLX+zdx8/hp0Wq4tD+f9NVX0+vm9ahEKuzx4QzPnSB7hhWM9OnLZT7noRQa+KWk5c+e5VoR5R2t7MjVl8Cd+2llxiSxqMSbU5/23BzAKgN+NQdrBZAzpZ7lfaAuLFaICP+bAm6uW2JUrM6abOw== ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=SK OCSP RESPONDER 2011, OU=OCSP, O=AS Sertifitseerimiskeskus, L=Tallinn, ST=Harju, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2011-03-18T11:21:43Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, SK Proxy OCSP Responder 2009 ++ ++ ++ ++ MIIEUjCCAzqgAwIBAgIESg1N9TANBgkqhkiG9w0BAQUFADCBjjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMQowCAYDVQQFEwExMRIwEAYDVQQDEwlLTEFTUzMtU0swHhcNMDkwNTE1MTExMTQ5WhcNMTIwNTA1MTEwNzE3WjCBgTELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxDTALBgNVBAsTBE9DU1AxJTAjBgNVBAMTHFNLIFByb3h5IE9DU1AgUmVzcG9uZGVyIDIwMDkxGDAWBgkqhkiG9w0BCQEWCXBraUBzay5lZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6rr1AZFPunWKMJAse70wx9Utc57qgbrJdk8iiOrcUN2FApNal2wFnRIw9rsF8u9KPu3g47ZSuKKYkpdVVupTwt6gK+brQczfQShO3xOCj7cubcl5+6jDPXSh47zma10hh4tJ5VECOiCDBhIRfA/UJfMYj6BYgEhFuRQxEBgAF5yyEJX1X8Sco/GQcha4Er5SyEhHvXu/vvg0OVfLRqH/7gGBBRLPMOsDImmXf+C0UYKs7ywFBf+M0VnWH9u0p7E8XzA8s3m2ivTdU/JYIU5Zy7NFeV9NJgZw3iaLCO1dbV2gBIWpgGvqlwQ3coKHMs3tMBT25+WWmKVMsHFi254ysCAwEAAaOBwjCBvzATBgNVHSUEDDAKBggrBgEFBQcDCTBoBgNVHSAEYTBfMF0GCisGAQQBzh8EAQIwTzAlBggrBgEFBQcCAjAZGhdTSyB0aW1lIHN0YW1waW5nIHBvbGljeTAmBggrBgEFBQcCARYaaHR0cDovL3d3dy5zay5lZS9hamF0ZW1wZWwwHwYDVR0jBBgwFoAU5T8MnXE9b7wZv5r0br8J/kDrnZYwHQYDVR0OBBYEFCRXW4FmpJ/GGw3/AXu5czpgogbJMA0GCSqGSIb3DQEBBQUAA4IBAQB9U7sG/M/w7eXBQh5tDOZ7XLCRmhrmGk9+1RdAP54SmMzc1nnglmfgl13ncaizPleu0p8541a51XCYqQMJbry47YkEnq48ImiAjEpkbaCZsZhX06uUpA9DlstEW/wBZzSCUoGsklbBolwTWAP97B7trizPe102hNvD5IMaXrMqaH9hQcoYmKyJHBQnxW2bXxYjeXvIDcAQvevLP8IIOLqdib029GFcM7U889FaBcO4cPxx4kITXC2hAvdiZwGuDVAz15Byl8RAfNWrlmv+IBRSQpAecnLYozJYyRNcFPrYLd9aXbej6p6sRCHgC452czoM0VbMmisrK8pm6yZ0J1r+ ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=SK Proxy OCSP Responder 2009, OU=OCSP, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2009-05-15T11:11:49Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, ESTEID-SK OCSP RESPONDER ++ ++ ++ ++ MIIDuDCCAqCgAwIBAgIEPJilyDANBgkqhkiG9w0BAQUFADB8MRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMQ8wDQYDVQQLEwZFU1RFSUQxCjAIBgNVBAQTATExEjAQBgNVBAMTCUVTVEVJRC1TSzAeFw0wMjAzMjAxNTA3NTJaFw0wNTAzMjQxNTA3NTJaMGoxCzAJBgNVBAYTAkVFMQ8wDQYDVQQKEwZFU1RFSUQxDTALBgNVBAsTBE9DU1AxITAfBgNVBAMTGEVTVEVJRC1TSyBPQ1NQIFJFU1BPTkRFUjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC10BeCObXZZWcDX298Wqfd16hpi9tuSbT4L+kowTj+aWz7PDsFpKQWqhxCdlicu67xCT0zAAjaK6x9cwasiIdre++IkscRi00w20G5nTPocxpwGTHqwHx4ED7cceK4t4pbj/zB8FluVNVii8ouG9ZEhH76j/Icx0X27Sq5AS0CwwIDAQABo4HXMIHUMBMGA1UdJQQMMAoGCCsGAQUFBwMJMBIGCSsGBAUFBzABBQQFMAMEATAwgYkGA1UdIwSBgTB/gBR4F7UF+bNYzVmM3mdeRAZMdYZpXaFhpF8wXTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEQMA4GA1UEAxMHSnV1ci1TS4IEPERcgjAdBgNVHQ4EFgQUzpYj2gwlDYK9ahyGyKa0AkK5ys0wDQYJKoZIhvcNAQEFBQADggEBADrq0tGkwsrddEqUbsOpXi75Xs4GVkOyseysNqZZCvLqCF7qTSMiC+fzRxQbXQDhuOT7QQvi3JAoA5zTIm2RvIO1fmrVnJ6CsObjxxvXtcSLI+bICG4uQYgEA+duDRgICpmtCCjtmxb+2/cSJLGioaKiwn0YwgeEowOgjDMh2o4otm6FjtyT1GZsZm56U7WkFa7tSwkHKw427iZUWVrED6W9AfATY14rNnAk8Jqz06w4rPnGE4kYjO+UqMLmFU2KImdrTp1O7h4YLCVlxH/e/He8r7FSgzXSG4EqlD/TMEdCLu7DSWR3SEgJPvKWCpNWzv2DRldHp+kQO3k+R/f2c80= ++ ++ ++ EMAILADDRESS=pki@sk.ee, C=EE, O=ESTEID, OU=OCSP, CN=ESTEID-SK OCSP RESPONDER ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2002-03-20T16:07:52Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP ++ ++ OCSP, KLASS3-SK OCSP RESPONDER (from 2003) ++ ++ ++ ++ MIIDXTCCAkWgAwIBAgIEPolzuzANBgkqhkiG9w0BAQUFADCBjjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMQowCAYDVQQFEwExMRIwEAYDVQQDEwlLTEFTUzMtU0swHhcNMDMwNDAxMTExMDUxWhcNMDYwNDA1MTAxMDUxWjB9MQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czENMAsGA1UECxMET0NTUDEhMB8GA1UEAxMYS0xBU1MzLVNLIE9DU1AgUkVTUE9OREVSMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALXQF4I5tdllZwNfb3xap93XqGmL225JtPgv6SjBOP5pbPs8OwWkpBaqHEJ2WJy7rvEJPTMACNorrH1zBqyIh2t774iSxxGLTTDbQbmdM+hzGnAZMerAfHgQPtxx4ri3iluP/MHwWW5U1WKLyi4b1kSEfvqP8hzHRfbtKrkBLQLDAgMBAAGjVzBVMBMGA1UdJQQMMAoGCCsGAQUFBwMJMB8GA1UdIwQYMBaAFOU/DJ1xPW+8Gb+a9G6/Cf5A652WMB0GA1UdDgQWBBTOliPaDCUNgr1qHIbIprQCQrnKzTANBgkqhkiG9w0BAQUFAAOCAQEAd/8FCyPC9zXxcAZN67KCNU4+XNJ8e+LmG602lBe+lS7Pw4pOgMKebgULKh1fEBHQ2K7FSUWMZdPWkDHaKVRh646yVbFZbfEmKNq4LhRf13/hoUdrG5uRVmCsV03WSfgfUVfb1cZf8tDMIwCmsNXu22k9wykeHallpUmGUfbVZygqfKE2NVQpm2FULiKWBFKXqbMtW5R3xmDS3bjrAIAdUdYhxhfdCHCphsQf/FJlxb8UFOUa8SeRNr5eL7s8znLnrC5pKPpWGbUNSlrhLJZHIeXfwbOamae6UVvjto6bMqRe2sxCsMA0dGz+tMiglfmTVInxpEKBkyvF/on/2qwtVw== ++ ++ ++ EMAILADDRESS=pki@sk.ee, C=EE, O=AS Sertifitseerimiskeskus, OU=OCSP, CN=KLASS3-SK OCSP RESPONDER ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2003-04-01T11:10:51Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, KLASS3-SK OCSP RESPONDER (from 2006) ++ ++ ++ ++ MIIDXTCCAkWgAwIBAgIERCKLGDANBgkqhkiG9w0BAQUFADCBjjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMQowCAYDVQQFEwExMRIwEAYDVQQDEwlLTEFTUzMtU0swHhcNMDYwMzIzMTE0ODQwWhcNMDkwMzI3MTE0ODQwWjB9MQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czENMAsGA1UECxMET0NTUDEhMB8GA1UEAxMYS0xBU1MzLVNLIE9DU1AgUkVTUE9OREVSMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKKTI8Aex0Gva9eeeBkM3fGTiNOEvjj2McN3tOJBMAEvG/G7Npu0/2fAEKFFUv4NnPyH3MiC7s6R8PtPMhV5GBG6kWVztL/gQnlIjAbo1l654+jApIQjT3vdVZDIYyS6lKlYoAdG40CgLlVtRihargQ77azlfORkyRfhKZcSQe8tAgMBAAGjVzBVMBMGA1UdJQQMMAoGCCsGAQUFBwMJMB8GA1UdIwQYMBaAFOU/DJ1xPW+8Gb+a9G6/Cf5A652WMB0GA1UdDgQWBBQUQsudE6pYaIJSuWurylGItfy52DANBgkqhkiG9w0BAQUFAAOCAQEAV+Vu+qzrHe7HDjMHq9DdOQTz833QcMRY0huSgphMOgqNjqjPqTNpHPgNvE6HKGdQ0+VWr8IyRWcxnPMZNihmaCGMpFMpYuH0fx9nsjXDbjat8MfGuX2m1EADGOwjtjMuoYTEGEUe3MBeFkmPFDIYpeuS+I4Qv34tOsGvFOpsDkobSATq4EFw/5hI9WfWaEMYkmBXdeokoVjbNpt+gtdGKNBU42AlxLrcc+YzAE1hj5qH99/hl0X6r63pTjUb1ZMRjGQg7ELwmddms7wB5LKKi5kbfmag5hBtDKGs2s0xW1be4ylNOrT9lqUYuPn9lwcHNg1IS42mYVChV97Tlt/5vw== ++ ++ ++ EMAILADDRESS=pki@sk.ee, C=EE, O=AS Sertifitseerimiskeskus, OU=OCSP,CN=KLASS3-SK OCSP RESPONDER ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2006-03-23T12:48:40Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP ++ ++ OCSP, SK Proxy OCSP Responder 2008 ++ ++ ++ ++ MIIEgTCCA2mgAwIBAgIESQbcTzANBgkqhkiG9w0BAQUFADCBjjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMQowCAYDVQQFEwExMRIwEAYDVQQDEwlLTEFTUzMtU0swHhcNMDgxMDI4MDkzMzAzWhcNMTExMTAyMDgzMzAzWjCBlTELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxITAfBgNVBAsTGFNlcnRpZml0c2VlcmltaXN0ZWVudXNlZDElMCMGA1UEAxMcU0sgUHJveHkgT0NTUCBSZXNwb25kZXIgMjAwODEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnquvUBkU+6dYowkCx7vTDH1S1znuqBusl2TyKI6txQ3YUCk1qXbAWdEjD2uwXy70o+7eDjtlK4opiSl1VW6lPC3qAr5utBzN9BKE7fE4KPty5tyXn7qMM9dKHjvOZrXSGHi0nlUQI6IIMGEhF8D9Ql8xiPoFiASEW5FDEQGAAXnLIQlfVfxJyj8ZByFrgSvlLISEe9e7+++DQ5V8tGof/uAYEFEs8w6wMiaZd/4LRRgqzvLAUF/4zRWdYf27SnsTxfMDyzebaK9N1T8lghTlnLs0V5X00mBnDeJosI7V1tXaAEhamAa+qXBDdygocyze0wFPbn5ZaYpUywcWLbnjKwIDAQABo4HdMIHaMA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDCTBoBgNVHSAEYTBfMF0GCisGAQQBzh8EAQIwTzAlBggrBgEFBQcCAjAZGhdTSyB0aW1lIHN0YW1waW5nIHBvbGljeTAmBggrBgEFBQcCARYaaHR0cDovL3d3dy5zay5lZS9hamF0ZW1wZWwwHwYDVR0jBBgwFoAU5T8MnXE9b7wZv5r0br8J/kDrnZYwHQYDVR0OBBYEFCRXW4FmpJ/GGw3/AXu5czpgogbJMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQEFBQADggEBALnuqrbcM13+ISq6lzIbwaHr6Om2zAialZcAAU0i++lqs1lLTSA/cXoRuUIcjJ54Csh9pVPt3tJ76193H57ICkeKE+YhpHKFTdD3tPtgAU0prOlwiVq7Gh5MR+sMNX2TKaWTj0qd8Vgeui4MB5uWSUWYCNlKnmgoZbV+Zt0AyBHQVG9oRbqcEfK1iPUJw/sjkDUdghUHNUTcXpXfIPWCEvhQz+BX3TRNkR4NREvAwT/tHVtweJi+mr7RPrbtvdYBjdTppFwZVZDpGC34AM6KtL+mpVeGkK73h5V/pDvQ1rmLQn2L2GJe6n9ztghE/BB5zYJ1hWACaoJh5lEm+6xNPyU= ++ ++ ++ EMAILADDRESS=pki@sk.ee, C=EE, O=AS Sertifitseerimiskeskus, OU=Sertifitseerimisteenused, CN=SK Proxy OCSP Responder 2008 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2008-10-28T10:33:03Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ SK TIMESTAMPING AUTHORITY ++ ++ ++ ++ MIIEDTCCAvWgAwIBAgIQJK/s6xJo0AJUF/eG7W8BWTANBgkqhkiG9w0BAQsFADB1MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMB4XDTE0MDkxNjA4NDAzOFoXDTE5MDkxNjA4NDAzOFowYzELMAkGA1UEBhMCRUUxIjAgBgNVBAoMGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxDDAKBgNVBAsMA1RTQTEiMCAGA1UEAwwZU0sgVElNRVNUQU1QSU5HIEFVVEhPUklUWTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJPa/dQKemSKCNSwlMUp9YKQY6zQOfs9vgUnbzTRHCRBRdsabZYknxTI4DqQ5+JPqw8MTkDvb6nfDZGd15t4oY4tHXXoCfRrbMjJ9+DV+M7bd+vrBI8vi7DBCM59/VAjxBAuZ9P7Tsg8o8BrVqqB9c0ezlSCtFg8X0x2ET3ZBtZ49UARh/XP07I7eRk/DtSLYauxJDPzXVEZmSJCIybclox93u8F5/o8GySbD5GYMhffOJgXmul/Vz7eR0d5SxCMvJIRrP7WfiJYaUjLYqL2wjFQe/nUltcGCn2KtqGCyH7vl+Xzefea6Xjc8ebTgan2FJ0UH0mHv98lWADKuTI2fXcCAwEAAaOBqjCBpzAOBgNVHQ8BAf8EBAMCBsAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgwHQYDVR0OBBYEFLGwvffmoGkWbCDlUftc9DBic1cnMB8GA1UdIwQYMBaAFBLyWj7qVhy/zQas8fElyalL1BSZMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly93d3cuc2suZWUvcmVwb3NpdG9yeS9jcmxzL2VlY2NyY2EuY3JsMA0GCSqGSIb3DQEBCwUAA4IBAQCopcU932wVPD6eed+sDBht4zt+kMPPFXv1pIX0RgbizaKvHWU4oHpRH8zcgo/gpotRLlLhZbHtu94pLFN6enpiyHNwevkmUyvrBWylONR1Yhwb4dLS8pBGGFR6eRdhGzoKAUF4B4dIoXOj4p26q1yYULF5ZkZHxhQFNi5uxak9tgCFlGtzXumjL5jBmtWeDTGE4YSa34pzDXjz8VAjPJ9sVuOmK2E0gyWxUTLXF9YevrWzRLzVFqw+qewBV2I4of/6miZOOT2wlA/meL7zr3hnfo7KSJQmMNUjZ6lh6RBIVvYI0t+A/fpTKiZfviz/Xn2e4PC6i57wmH5EgOOav0UK ++ ++ ++ C=EE, O=AS Sertifitseerimiskeskus, OU=TSA, CN=SK TIMESTAMPING AUTHORITY ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2014-09-16T08:40:38Z ++ ++ http://tsa.sk.ee ++ ++ ++ ++ ++ ++ ++ ++ ++ GuardTime AS ++ ++ ++ VATEE-101114112 ++ GuardTime AS ++ Guardtime ++ ++ ++ ++ ++ Tammsaare tee 60 ++ Tallinn ++ 11316 ++ EE ++ ++ ++ ++ mailto:info@guardtime.com ++ http://www.guardtime.com ++ ++ ++ ++ http://www.guardtime.com/policies/ ++ http://sr.riik.ee/en/registry/legal-framework.html ++ http://sr.riik.ee/et/register/oigusaktid.html ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA0 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMDEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTExMDQyOTA5MTUxNVoXDTEyMDUyOTA5MTUxNVowJjENMAsGA1UEAxMEVFNBMDEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2WKqpwAceqQ1DNnsIvmj7AsSFgFR4g0U3ot8aLmIVT3cJ0rVN8PaQ4zuCIGf0xTM6mp1nQRqvtEScYkijZ9lSW44KDs4P71rC/8MYuX0NL/AwDlevmjCEkvHvqCQw7SAJ5gFkObc6FGjMcOzzVDTLc/0g9txSaFy6A2kTQYWY2a7DhqRDVBJphGhW8ir28DmH+AGRxj5I3vs6V8W/x1xy90yWunh8b/DNbS+29YKQ04phwPl0Ks59qvsgm1wPppix0xf/mp9HGC574q0zq2Ee7v4PAhu2FwY2t6Hj887KTWeVDUaRsVtwKqqDWJdmJBG/Pa96H/k9v1t5Lln8NlxHQIDAMm9MA0GCSqGSIb3DQEBCwUAA4IBAQBit30I5IzoldRcKYbWRLPrii5nNcmdLFfOVbjjfh/BcQV4G9cIaNtimuaw75Kq0eVuMaD1GBzn3gNSA7UFpCURt5xtEt/TNdO4ht+SLkVuFeW7AgRSlsJ/M1LiNrQei7qkPRTYrJwT4TGFbycy6oQVkHsFx0WSntG1TECDxNfutS4oKJQVp9pCwt99CVpt2M1sniIRFIsCgeYgwP6EqB0fwHpAZGZeX42VMmvLUFdkuijBgW8phGP5yxDWGWHkY/l+XDTZB2SlBbYcgDpQuS1k0lhGRZScIDSUr4g2ig1LBrbPlMakNXg/EWh74KkDeDDE8NSZFnh/cr2azvcXqt1G ++ ++ ++ O=GuardTime AS, CN=TSA0 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2011-04-29T12:15:15Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA1 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTExMDQyOTExMDMzOFoXDTEyMDUyOTExMDMzOFowJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3IeYUjkf9LPKTkMUrjeOofT57NjJd+5WUmrsTRDGJsW6CWN/rM405B4EbXdrxeKR5TXqvTc8uKB8vb7QdQTBYAEiy8y49jL0wApQ40B2wnAj7kpyeWHwvMLwqeVyAxFxcR+gytsUxdRXl601g7GvwlXpCqi8Alj4vKykx99SBgsrya0CnR63v+Rgwv+0tc3A24b5SiE395Dzh1R9N1pgXWYNOPqn98A1cYWGA0bwayHzpcqw+e4YcR6qQ1gykULsPNlnIGCkakiOshblezzB1WrSziT6lNAjNSev+M7Uo4j6bCB3sFRrv1NXJWM7AqLxn+zC1xVqihB+N9m0YmNkjQIDAPHnMA0GCSqGSIb3DQEBCwUAA4IBAQDUXshmA1Kx+fPyMrbQkOim5FrSoTuLw4Jaxhhcw5wQLTnI0H25IwciqGisi7ou4fYffaQISbLfbXEpGG2aaZ9DPGGeG//5NPvtLoxLYw3igmaCYi4QEQ+O8Q5bH/YgxJWIZha8qtDXYjBVq7giX+1Kkb4O87BcBm9yGWXnDbu/Cbjvv+lnbhLff3N9AGlhEVZW4y/WNgd4RjRANYuKHLsNdBBT2jnxTirGzHRbcQ3QwxJUcTO+z8f/WUJfq6b/VayReUnWrrmYG6btzU2iwUUusb+eZ2uvNNAjuIJS+ngc8g9FLlty5ZcTR+SadzU1H36mdCE1uGHVDl3L07SlHNja ++ ++ ++ O=GuardTime AS, CN=TSA1 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2011-04-29T14:03:38Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA1 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTEwMDQwOTA5MzMzNFoXDTExMDUwOTA5MzMzNFowJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx77CtLsrKHF3SswUv5uBEilPF3hJS6J+W54dKIFj4fE0xkxl7J7yMlDMf3Gk2tunTpZolsOKDPCbsl/9SsV8dY7y+yCT7bRT467yfi2zqTrFybHjXduYGSlvagNpYVw260he6gVH27D/IdpQv2eWOOScGAWcBOZTr6pZxEuX7b24luq7sSci8hv4ARpJamWBTLQX6sdxfiPhjnyMIacEGOQuEQgUjPKxAxo45ApwSHWESD7lAm2PQNacSZJg8+pkxrOq0s/7FrsgfJzQxlDhyF9BA7u28ilsCL60WdVbxqshmQBp91yyuX3ZHAkJ8Wp0kT8EwVfVnLutFWxzXp/4gwIDAOHjMA0GCSqGSIb3DQEBCwUAA4IBAQAAYwPUlEPIzB88xdz9WTaC8/QNF/DbfYOYKOD5439rGPhWjJ0YBe6SliohQf3lK0tfBrnaCj+Nw8EwzJ7fUD6+9xJ4FLSSQPSsH3pxZliAdiLXKWXUNou6jiPTh9gSDBkkjHvWCMhHj7GNDdIEABbwfqsSlejzNsQZGUVu9Z7vP0+flTGvqC3qIJqschhpQWZqaD4YR73K06H+JEFn6vnGQ6UVsWM/KDaktvLStQui/OwIqK8kyEm2cpCQOdkVPJZ7vTcGDgonWvbwaxf78xPJUqHSNkuWIHveV6dFlS949v1eJYEwvcsv6DyVD6UI8A2efjnQmjA4KbXucmWzm0KY ++ ++ ++ O=GuardTime AS, CN=TSA1 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2010-04-09T12:33:34Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA2 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMjEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTEwMDQxMjA3NTIyOVoXDTExMDUxMjA3NTIyOVowJjENMAsGA1UEAxMEVFNBMjEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp430lCKJvdyzzdK95iX4IlSE3MyVDkiPcQWKdvM/O0K/skXMKxK9308G01VVPz4Q0Fe/zm9Hd/b0tF6lNehGpi+CUfS13eq32JZvfyI7UsGNZCiU0nnkuGUUfLCXqlEMVsqfxXu9RAhwaJE3Zw0GZLc4jSF9xJy1HRSSryUkgp09pOl/PP5l0IgBeUESM0U3ALPvS5xjgMpYJAOshZCIS+rsyO1Cp83ymVNyGAw2jUCgjHGHu/l+wbTw8b6C2pUnqcUacaemjctKhtf6hNs+5+uTPBW2q9oA8k2c0SQii7+V04H8L8rvSdLaeVuNDgjEjzqPIJV7oS62APrWlWOf3wIDAKlzMA0GCSqGSIb3DQEBCwUAA4IBAQCCHTCmS6YOLlnhSEMpOq6F6ZUPq7B4BIEVJPlZOkrPuGRnwXY3CP1CM01mM2FcNc7OMYwEVyJNt11Aj12kB2yoCGCqABdYij78P2n4MzQykakymH/IQhTiP6rZ1glB1stye5yboAvezm5Cor9IbdGSf9QEv7DPGYqqyEwDAqCIhIgyKWBDTixcKkRFlP7hvDWCzYaDaCzaxcxN0Cjv0KTMoTDzK97IZJ2+qrBcgP/9AEsZIfPOlvzObbrRpnmwowwgNvYT3p3il7irrIwHryQh8H1kU4AwxmHtuMDcVKvQQrxpCQuEITPlBlelY2MdXKRoCcu4q//X5lq9YYP1XIjH ++ ++ ++ O=GuardTime AS, CN=TSA2 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2010-04-12T10:52:29Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA1 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTEyMDUwMzA4NDEwM1oXDTEzMDYwMzA4NDEwM1owJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0AjnC81sjs87Vv9e8XDGWcKaj7kJTxuaeWpC+WULglfyU2YSawqwb1PZbM9AT0Oi4Dz44tCG1o0Kcaeik+vWFe7AU3GSSC9K4Y3+jrhKZEOhySn1yI1DMdnl+Iv844R/IqS+XEKvP0c2LLnT0Bnmz6l8GIUh2c9MJWXIXfNyfgymldyT3ssw/RabL/IksTdqMsa9B7ar81vtmEG2rzsUjCl6I8U6N7Etv3hseALX/mcdWplpWn8uxAGUl8KqskF1itQ04BOU3P6Qk0WsLFBNCeQ2Rj+HcHPEdxtkT1eM0IbmOT71FuS7YZjC5fqza+CoiSPKBMJioU+28KG1qOFC1QIDAOwjMA0GCSqGSIb3DQEBCwUAA4IBAQBftgbUf5jzWS5EwcLmi7OgQ4ejPme6ZO5M+SX4OJh8cTViXOpqrF6JmIaFl7auqTKa4KNtgWmeGzjaqD3U9WamJ2aU3xmtf+t9rHWns9dBE+JRVdwNIjvOyEt+foSCENaFxtPRDqpaphx/fYC+jdCdNh+JHuKxqf1tW9ktBFNxG7qxmSeBa4eC+RosAXtt0gbmHBVMOQJOApGKIlQzruJ3c5YrCRzza/+D9jSkyp196VO+aYmt2epLMTK5CvJlgIjvF/vyuJuEXAnqd1Si6qUbfLxchWHgJ/dxUf7DxeqpPzJ8s+V0CD0fXYTIHa3p9Kz7/gLqpZMcuY8OH0nVnYOn ++ ++ ++ O=GuardTime AS, CN=TSA1 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-05-28T07:45:00Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA2 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMjEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTEyMDUwMjEyMTM1M1oXDTEzMDYwMjEyMTM1M1owJjENMAsGA1UEAxMEVFNBMjEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuWgbOYOThEhCRi61lnP3GSdD+V4sjuQCehCt9MJ+yyFvrEcJewvGhMaCBq7mUJul0yV5pCNoSH7gLDaO8XByJ4acmV8DxKAH1KlLSH/tashAjxQLMbReolA9c/qKiwO1oK12z5OCN7rA9C7PBO8gk/sCLFacOwgYtDCz7faY5l94AEaniIA62hT3PZ7Sd0IkcL5Gp9goJ2tZdQ+G58GBZawF+pfS2dzWSkKxWiV/lMzZahRdaXUF7vCGsXDsVHqS3AhL7ZblGCRVX0Thg+RCyRBqE12iPea8HWcVMxSJFHLhvSvKHTpj3iA6WVIOCJGUlhcz7h373WCKtgwGx7U+tQIDAMRFMA0GCSqGSIb3DQEBCwUAA4IBAQC4F/SnPubK6gaCyw5/7+sMTMILecuEGZ3W3ScAWLY4KP04pS7ViqlJxCvH3brl52dc9gUG0h602hRlEhdcXpk96tcd108er0mv666mGp97CT92vIL2E46mnz6QUG8uWyNfs+7K5SCgfkAflU7+lypM0NjOLXfDgCDRK2x3S7EAJh1mlqYSRHL9mst1sBLxjUMzi2xzOEGh5SaijIb0xelm2bp2J3JZrCvyjvGGA+95xRwHrGL9sMFdksrY6u66gG9zea8qurkSzRYBv0OGNUHwQWpw95QPZ47IITq9ipqC+J67FIEZheHTUtgPfvx1ch19IS8GiSM72M6rAeS8Kq19 ++ ++ ++ O=GuardTime AS, CN=TSA2 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-05-28T07:45:00Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA1 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTEyMTAxOTE3MzE0M1oXDTEzMTAxOTE3MzE0M1owJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+OA6jsb8QE/mLd3RPZFW40+l9RiGhpVWtaPSNgJAu1emrld4SFmLpOWM5BPsK6tVj2waLNucmEuRtG3r6H91E7EEgjsiBDxJaaREHytXMgpatMkt26X6Cg73Eb0pvD+5eBIh6VpksIWHtRrtq6ahde2wpb9CUmF8nb9IjfJqEsd3L9+EfsF4/EppRzOs4GDzKG+NGmBz95IEMGiIf0yh9Ot05b0Wj4xdOT7sJONbF0lC5qpQiPoXMKeLzsWWj6RfctjjhJZ9s2xEyLfwM89Yb4/vdwVVaa9Rk36ZkCvuoJeP1e+FKDXAJmNRGp2knEC1lQBZvXLG027bKmDdU0+WGwIDAKKPMA0GCSqGSIb3DQEBCwUAA4IBAQCR63M7Z45TV0MW2eA1bYO1vmRSryLbBK7fC4+2T8BqCXC8PYVxRtdMrQMdLUvXolibDY8bUDIC3GI4LLMDu1ivVcAcRJOCO4ii5KHxmK+mlmInif8v7YTZIlXAqPxbxJlYmpRNaEHFcDS7fciYzvohPzpbxRCKb4Nu9rfA0YqJv2s0vZmkZPTQ7W1vwHQw/+7KeRL3v/oY6/ANP0eKcNURwdhV3es2kya3RyEXH6sJuv3iUGOIPTAp5h8T7RV0xjlDxnz6BcRMSxxpFhyaUJHaA8ELKQXqHx1jjz0Ycri/AdIM21F3wc5Uq6855rm1STGythhxYFkrgx/dgLU7JeXc ++ ++ ++ O=GuardTime AS, CN=TSA1 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-10-19T16:31:00Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA2 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQEFBQAwJjENMAsGA1UEAxMEVFNBMjEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTEzMDUxNTEyNDA1MVoXDTE0MDUxNTEyNDA1MVowJjENMAsGA1UEAxMEVFNBMjEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmbkBqCyj5DTDvCRFqy9AubKiWtz1NczYGFG4Uu1YrtNpY7hOrutp2SxjBZGMwcXDXdzIceE28FCvuPjhTF1MsSmWA3wRqEFfdoKtwJ3hYM4N8NKB8GHgDKRYKw5nY++1anjt+KoxhpZsRbaAvPZSkbONr6trgSe9DUXE1WJ632LAvC0PGdd4LnUERxnernnhs5N/mQwv4BJmMPHcZ2lpiMfBCgJ2/v7r9UbodVRkGr/EHMzp9RdehneT3IQpMDV+7oL1niOyXi6KVdlbqaLzmL8QTpQuopfhaA6uKaAegWkkEaYOo50BK3xYKZjCUHwL+yH6Sw7ddgGNtBId7vtdpwIDALyRMA0GCSqGSIb3DQEBBQUAA4IBAQAjlFih75+4WvKgcTr7CHVgftiGLaSCa93uq57kmebap1raFqigOkCYpqg3Jx5DDhdGcx93VjdqTt6qC8IAvx2VJAywQXOisTtIrfiXK5hXUJMWlXzqT6q6Kv1q3Ac8603QySfStmVg5vehW504bg2UnjjL2oY0+X9e/D8nQRpeI8zVNAYYk2elAr3nNDrcR/kRtEfughvlK2F4fS5R4UrNO2P7xTaiNdQwRuq3CJZEkA2HjPRXE3kiJoL80p7aWU6DKOOHZr6VQjcOHJiK5T/ZUHeOT10tM3BCPHzmmHAs1ziMkFFfItOmAXooOXBsw8L3cOX5BiopaTnMzMw7Pwfo ++ ++ ++ O=GuardTime AS, CN=TSA2 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2013-05-15T11:40:51Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H1 ++ ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDExEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xMjExMjYxMjI1MDhaFw0xNDEyMjYxMjI1MDhaMCExCzAJBgNVBAMTAkgxMRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6jdPpv5oA0BNHcFTVZpB8CEjGZvWix4KWgbAVbJiQaiLx2TgmRrimtAi7ogQ2qWPpJJbxgnKQUvpL/913tMH1blL2PXYk2fR6xU/jF3DoBvQBA7TrX39OlcTn+GO/noh9/hz3/a5ebyp452AyFow/g7IzvECf/kT8G+OcIj4aWK/M7qbmrj98eB/j6t5kuBF26llyLzExJr4iJOTSuCaR7BT3yWuLC3rAUtXJaG0XiQxkmTd6Ibt5GK8pSBtsQfKeJv9iTUS6I093rqZ8dSiP9/k2satrk9/hy464niGyXiKWfiEwWBeEe6okg7FwtZZ7ZHL42IATqLBRmbI9qvbXAgMBc7MwDQYJKoZIhvcNAQELBQADggEBAEbHvn6BZArTuTDE+opwN0NZ6FdtQ102tR1qWMcNGgKKICc1dvQpTCsUD5X4RL26pE0aNy9lB6HFa2vNlS4ZOz7LAbxKWn9DwSTHZVCBmDz7cThAop6YaVd+f2cYk6aP4FnIWr0dfSTTqxIWyFURip5TLC4vgu2FvJRuQU3LTBcpdbi5WwVSxxgS5VCzpEc5qUC7kZFGBV/aze6CAxUoE2nWrK3udj/8RUOSpUyaeF+f4oEAkR/xMKvd1xuWjl09rRyOD71h7WhfmNAJDHYZVRVthl6XBJbv+DMOkjpltfeFUHyvZm9eXEZnUh+KS8VpJ4O62VA+rNwV6e2QgaaVu7M= ++ ++ ++ O=Guardtime, CN=H1 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-11-26T12:25:08Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H2 ++ ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDIxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xMjExMjYxMjQwNDZaFw0xNDEyMjYxMjQwNDZaMCExCzAJBgNVBAMTAkgyMRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGUFzXDI8KWQj8/UcZLf1BecHHG3+YYoA3FwfZfdNjlbRepRdwypQx8p0RNbvcZC5eP7TnOLz8tCA95jBclLXOOMEKLeIdbcEuERrVNNZ6MplCsLBfxf0rSZzPcgjUA8vnREZj+rLqYkUwt6P2qt3uwCT/Ymm6D25UG373TX/058+7+8YlftspEowUPZt1E23ZzpTrObervZSiqvy4V1+efOPQZq0B/h71hkmw0+/zuWJ9vjTUhS3sde86AqDf8s3q6G1FbVEH9ilnJ8XZipam95fZx+kRCeBQ/Yitw+lYeLcGFQKOJ0uZuqMo3HnFcJfNkd27uA1Ymi938SVOCypfAgMBbiswDQYJKoZIhvcNAQELBQADggEBAHR1TVGVIuBLeTtrflzXP4bnsczEudLu36D0dTKcwTvBeGB4YEnaBp69vKT2/boNbdeZ0Pm6ft7PQYRzQg5v8NVlqmYwq8pAxNhrywGOICOynoW7mnRbooDKVQ25Ct4vdJwdf/pcrJ0l9F1WX3MZ5rNgKTPW6sXrMReXojfFf/2YwAvdwPhATjtRvnXYhkkN0aeXvkgPiPMctEP0lEiZelwWm+DjVFHOy8l1d4+38rvh25tuChxxcl/p45/H7xpAndHO1qpKEu9DJy6q5eWBcNgvHVf7UTXSDtIuRCOcS6g0Q2yz72sdW1Z/m1W/67ToYjofQwvhc14CrhQkD05pRAA= ++ ++ ++ O=Guardtime, CN=H2 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-11-26T12:40:46Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H3 ++ ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDMxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xMjExMjYxMzAwMTZaFw0xNDEyMjYxMzAwMTZaMCExCzAJBgNVBAMTAkgzMRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVkmSzH2Au23FOAGkCMTdCZUoHCcOHV7EPqVxFmwea01gS0nDfAjzFUcudvgYRtaw6r6r4ZPLC+pqBI0W7FjeVpRQAuKypYGhie2IEd2FAQLDB4gnJl68Z7K9B+Njc8rvwKbrqix+N3ReqFz9IENbwtGrXj90SMFBoCofkmUCe+fy5H/YYjhud7wnZUhYPw7DsYU+5eqAh9dNXNSD4gxOLDoZgID49G953fS2pkgdZKIWpZl+/hftiTDLD92NB0HYwoqEJZZGSM+RUKMxPeRiHz6goGcqoXp/WjeXyd5uiP4TQX8KsvAQQDTBrBs8DFbFlL7MOEzM+vvV2PdFdU0bRAgMBDskwDQYJKoZIhvcNAQELBQADggEBAL/Invma9hUUj7tcZAKKNlZm2bktd6jguW+eFUbf7m1zfSLw3sq85mwFkl8hSDlV/d4pasJJCd8KmGLki5T9BM/TAjvzf1g2orBGMArhZkYNnYkuJTHcxetLFqtyBxdMKGiObmhfTI1YNAckomnvsausJ8ejsKKFxFTcWQ1TOeL3v3N/sZ/c/pwVd80ZbTIo/k/dFwbRVkhuj3Q+DDi/8tlcGXSAppBVX+uFqDGudu3TZ8XQY7VX7ZSH/2rIO5SZm0CbgAOFYQitDLKLIXEBS6R4W4n559L+dXIaStAR3U8Jmx8WXWMSsa1FJVynyiVLUMMw07mVgQGUs2IK81ghXsY= ++ ++ ++ O=Guardtime, CN=H3 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-11-26T13:00:16Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H4 ++ ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDQxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xMjExMjYxMzA3NDdaFw0xNDEyMjYxMzA3NDdaMCExCzAJBgNVBAMTAkg0MRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNVtvh71sZgFYcsv6a/zRU3/iby6KWNztiEjzuLl2oaqsUEVHq4kpAAj6/Hl+UPpIEwPEckB6rpGRgeN/+K+4bWJTrxh/7S/k3sQiHozTAYIOf6TIC4xAK5rjkfRyJNWZMbKU5ShXGC+DMh5sn5ZLtxOLshP4bVjCDrKUb+bNJCxYE/UT4N3bSPj3j45CgYnwqANWu2MFYcuuwSI6M+BiLWRA9HNLwHF3nVibCCJtyo17gN4oa236h61/+hehqICa9xePBBRh9gao35dtFNOEUgEN+qjqXGkUBrcFst6SG0nGh67AGJcQeku3QKU8Z81qocY9NhUKeXordC1C/XPsfAgMBWGEwDQYJKoZIhvcNAQELBQADggEBAGAdaaN8Zy/BWVBH+hLT+LXFJLKmFxaqRKRiyPtuerCRHmKjlHw8JqlVjB1UDUy4BN1LL04k6iwcpZX/ahuvlG0cwrdfi2/ld++ngyMQ8ecFEvjvli5u9kqiWSFxwDtA7fU5rsTm+Qni5hklPA60VMQHkuylx5oHejoyvPoBEft/tQnQ3QL+re7Cs06in8hkBtWndYK9jyot7G99wWfR5TEYzYQkze1L0oTjmySW/+EkrsT66XmRWHQuYLgo5tL5D+oO6H2tfeiKQ5PO0+zDLwQJJYjvvITCVKudR7/sH1v6/B4nXuvch82gaAzlfHK3EP6TQ7CBC3cw+uZ7qkggdIY= ++ ++ ++ O=Guardtime, CN=H4 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-11-26T13:07:47Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H5 ++ ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDUxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xMjExMjYxMjUzMjJaFw0xNDEyMjYxMjUzMjJaMCExCzAJBgNVBAMTAkg1MRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzNmmpHjZG/rb8xYUBH5TgSkSE9tkVl+JgtkeokY0BLZvrJhM9TZ/XX3AbN5aagJWnMgxPDBCyTYcA7XzsW6lRlQK7gym+zbLi9bmLEcpQzEYdeQs4Bi39Hb4vtlHYOFQjdck5H0CCaiLoJVJxX4b5y1dczJjXN5n7pkBl/YXXuIt4h/41bdZKw25j/KxEGWU/CmlZdrrDPzYW85aYk++dbO+uKspRkkIQZV+impSUpbwjOoN0VjfrmbJ7s+iyvB94j6qvvSTl537uFY6TOK//W3O4OrtEd8ze3aiePC517yTM8IQaUOrNy/pojan7FkhvLcVi1duQILuAcDu7gaQjAgMBMMcwDQYJKoZIhvcNAQELBQADggEBADndrk/PCTqGVmbrtjFWmYIjLyFgbUihSoHHf2+kw66Mzi77LFkDc+CYSz5M1pIjsXQe+a+Kkrvpc9YKkvxnT81ttiSduRujCNw2ISrYfFVP91Hzxh6hl2mnRSF6LOLsNbZCaSJjkH4JPuFdnY7wUiozKFmt/6T/5qu4B7osH5o+sLuCJKcgk0fXgssx41JM+ZUWf5JhS/QUUaPiW18s4SOZmNmO5w1IYVVG70bUOXsoGsVmrBNuuQeikPPdE30OAf+4ODB82rudUZok/ZrSW69p+eiAbkLKqlVfd1Lx05xeLf/EBgIvlSXRUECHV2LDmTbwJq1wDjHh5NHN7Z8I22I= ++ ++ ++ O=Guardtime, CN=H5 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-11-26T12:53:22Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H1 ++ ++ ++ ++ O=Guardtime,CN=H1 ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDExEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xNDEyMDkwODQ1NDNaFw0xNzAxMDkwODQ1NDNaMCExCzAJBgNVBAMTAkgxMRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLKt3SYJHx+Y0zQypj433j9k23BtR7VxLy+FDL54GkqmAiCmaknWz/nRy19FM+kDfciM92OySnneN+nOyykfoblJ0uL2CIhN5vYITV9QvHxNNsij0urOiWu5eXui6N6T+lZPOl938EmNeorJbgzG7FeDJid5W4kRBE9apiRBPp3YFehl0crycBgLY6kHlvvoH33AgwsW9Zbp2B7jWU92GdH1D3aBw5JwhEhSI01sqjcI7Odbh7PZaygsXpoVRyW1T5PzDDR1+qoWHoak/oN9J0NXMEAVyswpytQ0rckOIbnXhfA7va2WLQ8+GuIm7wKwquS2wtqgBPbyvO7rP4L/AfAgMB4EEwDQYJKoZIhvcNAQELBQADggEBAI52GHcEe75qB8Sps07G3TVA+XXh+PGFZYSMrH5bsn1uJvaDNDb1fl1dQCK+YibtoxzVM0pdyBVlHFWsex1wTpdmstsmZYP8Xaj9ezabN6nPSCz6pdzhFUKM2XG0kuny6JLAFuNjqsh13SxsATARL6yZv7L2PI5VclXHbcpRhNaqiTeTKxLfXqfTgSX1f1RGNJI/r4SoiTBT+PFJ2TcJfc5GTuRunaTeGVIe+QGIrv0fWXAlZylGTFszgq2e2hh/1i9KFlxD7gS1IPvSRrxHVWdTEjM9BHSjMd/y6L6jQ9Ti9qW+UYz2CRo8sOYgfB7axA1mVmv/W60TQr2pkCl7GDM= ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2014-12-09T09:45:43Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H2 ++ ++ ++ ++ O=Guardtime,CN=H2 ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDIxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xNDEyMDMxMjIwMDZaFw0xNzAxMDMxMjIwMDZaMCExCzAJBgNVBAMTAkgyMRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC8ojFnaqso7obLfS6sDn8Mj22s/ZcmY2NbwfGy12xX+1FpEjgwrwea8Uq6YS55Mvux/oRcBh2UsgFxnn0IlzSLgrmRx0t42PVuufygcXVGy+voYjxsOJUkP8uFqdv+QhLPUHTyVzMKHIYvVEa434dHKiSK2nwWkpFVqEQ2hITU/uSv3ZAX64F+7iJuIlraefdZ0QC6ucdOsxAFwC3FEH+HfPpV2rb6nhsBu8hxIGWOqDHoCcd3y0H2+7n/BE1pmOCkuT0j1tKU2NwUrEvWfRna2xyx+zNff9PmcNRrlT0yytr4ghCuQJbcGpA7+EGf5jGKfGjL1xL6GXwnb3W23SPDAgMBHWMwDQYJKoZIhvcNAQELBQADggEBALxmxs0QzRhDIlCmedBngmOGYIBd9sJ3TtWXak+4cJemPttrKPetWlDnSHyW2leuO6neIUtvKSXVETrIqbX0Y2bn37qPseBu3284qWLi2fAYhhOKfz2PEuUmck0+p3wKH6iDgsXgjmQuu6wO9m1+Y8qB/K+mSwi8gpxjBU38aPCgQrPZnIAbBPpju2NBb241ep+aOlonKQRO+KcsPMwYzLt0xEmkjopq4dRl0i+Nl/m3EVc1JCIslvSD37tUBQIbEpvv7OrXbv37xvY9Cr4JRWrrjrRO6n1d2NSxdagHjwobdBgPCQXGqroMxUNL0EprVmlbRNvWkxmj4wd6PYKfnaQ= ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2014-12-03T13:20:06Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H3 ++ ++ ++ ++ O=Guardtime,CN=H3 ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDMxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xNDEyMDQwOTI4MTFaFw0xNzAxMDQwOTI4MTFaMCExCzAJBgNVBAMTAkgzMRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC15sVKLBcJ6NRMFmMZxyBy/kKCcBr8zwozbZ+3cyuKeRk8s2+9IEH0xklpE9MxCmDaW65rpk24aX01A9LvYaM/Jn8bzE9H955wuRTWZbUpW22iljLxjq3x6bM2mwMB/BRkWPK/0BZ8mO1XOXFGh6eRD5OqLXDen3AXno3LgxpibK7jHekfX1aT2G35c2zDcZmif86bQiFSxPxI/xJXiJcswX3Xl1CoEdoyiOhyYIl1756QKzNL/yzXy4W7Fczk5gjax+ke9snndPg/ZnPzKLHJowNyPzobhG0R7W7eG/S7BpxMTEG3alA3BZvV2gmVDw8Bp8t6mNNtxgbWL6fqKQdrAgMBb5cwDQYJKoZIhvcNAQELBQADggEBACyCZSs4DiVR9FvRRUCeXAU4zpvlO2+nlAqL/SnK657aHNbnnQKqtBdoW4N/Gf6Pxz27B7PB1c1p1qgmKzvVewKfwh+37XoCIxqenoLzwALGN0wPne3dVB1Jf8DMEMtECB5ktZMd/BI8fgc6VlYBDnDXa+qu13hbTHYuWV0dIokseNOoNU9twcABn14E0AsEwfalZpXps9LQgjVx609pZwDFRQo3igzY4qKxpivUD0xyrjjsh5UebldLj2K7gtFubrenuQuRerVFIJ82VmNsAdFFzyVsCXdUdULO+wxcnIjCUlAY2l8CEM70z/UXmuCCqnoqPmmXk/oEIdqPLZQqR3c= ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2014-12-04T10:28:11Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H4 ++ ++ ++ ++ O=Guardtime,CN=H4 ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDQxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xNDEyMDUwOTQwMzVaFw0xNzAxMDUwOTQwMzVaMCExCzAJBgNVBAMTAkg0MRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCgdoH5rbrx9r/CkW7gdHjEGtJlVYP9/sF26W0yMVvyEApwXJk9ccM5FNeJlnHO94DQ4jQIYGU8MnFu0Xs8FlrRI47vPikjsdI/HfGW8zQFvPq/CGR2JWtoTW/OS3TLlhuKsgZ4ynsIZs7VrU9H1bk/OyAgtvK3sbdyELF6JYIy0t2mN5kXHPgFYs3PCifQteLEDsYLdxKKtwnEpR8Vyptw/9iNHPsvnqwpa/U5UL0Q/0dF4fxpYNwVdgTKL5bpjaI6I2NmYBdhI8L9aTdEXsP+kSA/+pB5iqNGZ9vlrfweRLsqb8fIILjgIheJwgOKMMTdfIsxfN8nJPr6ICAjd37DAgMBmHswDQYJKoZIhvcNAQELBQADggEBAHh80N8rHNR29mMguKbYl5b6Enhls0VWx/F3oDe+gfZ3p+ASXHPqZG8+e0BwDZh0QykZ3g8etSBL4yOEUi5PEhilECuny++NqFItHheyUXFFJih5qCqP8w+qiseVignIlRH/oumNXMt0HZUeWvh0G43Nc/6OdW2g2OtjUKjQ3WtbNP9Znx+okruUAzOrWpYN0V5PqE5FXrrsslykYb6ou3xThvmkowHddyl3x/koUd1nfra5YUAY9hzfFfUC8SdRg805OSy+EwI+dE006j91dR1EyNKZhqEg1Q5Wb2BGGRXbAYDOGeuX6NE9X+V2gKqD+kauxfz+t2f6lzWEueaexo8= ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2014-12-05T10:40:35Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H5 ++ ++ ++ ++ O=Guardtime,CN=H5 ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDUxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xNDEyMDgwOTAzNDdaFw0xNzAxMDgwOTAzNDdaMCExCzAJBgNVBAMTAkg1MRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC60wohNDbrmyAL/7WupGYRFg8sBizryJup1HDV/YJvhVAo7jt63nrzuxqnADeqlzeek2GuYugh5LbYRR8EeBtxE3ssIablc5TLKPZj1hzJ+Tsw39BrbYebQUwusxU+BUclQ9TpxgSAM6eXa5w2pi9o8eiHVMxzXQ5c5BE0XGSSH4IRRoej/xnealXgxNIFvEm14sFvkAg04WQQwD9ZTmWMY80WHeYDFr+v7N520r19GMyTc8YoR8DfWI0lLBYrcG1yDXu6gZlaLD+Xrb633Qn7WRgWD0ejCh9taWbEDBwoc6aM8yZDLfBsExYQSn8RMCcVXZjDZv5k7+IQaozgj0q7AgMBarkwDQYJKoZIhvcNAQELBQADggEBALnzytGvxyDEf8fDaErxIVaZpUcZrWSifiBc3jK3h3PvFTuaY98DT9keY2X1vM9mSeMBusRdMbIkFROA6+uUUNEXlp7lQEoZ9/N1H4vCGscvZWBOua668qw2PrUCQoD5pP1SDH/0JpK4wX+Xk8bdi+Q6cHu2p606r4PBtJVv2oR5y+LaghTC10pT+4+EQ8rDPmseiatvSa9dJdz3RM/bIR+Ki9OO5nBYpPBQJuvDTJ1rfWSfr7JD0ejDOVeG9OfN0j26L/sChV5uZxRMs/mvIlRibHqXU0+oeOGCCsZGb6YN27nLFh5TUdqtGRbJuu3f/8tYNLa7Gb/iI6afpO8nRXc= ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2014-12-08T10:03:47Z ++ ++ ++ ++ ++ ++j+9gYt6p5wepZ2D+v4UMpi2ngnyACS2Xw7Mdl/UldVg=h/24vkRG/BCBuEIS+6inHtgAurioFNbkO2EkycN9uEQ=XYUUi+Ch9gcfrz0DfsifdcB6IDBCFicSO3ww2e8ssGy91XzQLuKfwC77ROHl6oApuPxYYeUkXUXZ15Im/kq6GjYcqrQJ0ZLoHpaxTgx2ztLwPAA4McdXNt1QoNSr5EBUxlk8sYkKh142PZWZ4kAxDyAfDlE0jnhUvGRekbUEoX/00BLCmX+KhTPcTIoj/OEhLMTwJPNPbryXpOrlxFF8NyAXX7o5tOu1mV6/ntyTpHte+AbXdL7DT2Aaj9htGS99fL0jPBAVRUkTdSB02u0xRP3t38nY6qDMV8FESfkJcWXmWjrc/qBCxaJEx1QvfoKESlp/2Un2FppsoEqs/FB4Tg==MIIDtDCCApygAwIBAgIJAOGr7PilHGMwMA0GCSqGSIb3DQEBBQUAMHExLjAsBgNVBAMTJUVzdG9uaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IxCzAJBgNVBAYTAkVFMTIwMAYDVQQKEylFc3RvbmlhbiBUZWNobmljYWwgU3VydmVpbGxhbmNlIEF1dGhvcml0eTAeFw0xMDEwMjkxMzIyNTBaFw0yMDExMDUxMzIyNTBaMHExLjAsBgNVBAMTJUVzdG9uaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IxCzAJBgNVBAYTAkVFMTIwMAYDVQQKEylFc3RvbmlhbiBUZWNobmljYWwgU3VydmVpbGxhbmNlIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALhdQ9c33Y98JC0pl34+rg+qXLgdjEQaBM9gpxOpIpeqwrcXi5xbLmh4mk6imennbRaZXgJRqrOkx77B+UsBwn6uPgeZenJ1kFGvAOR9aePbgxJ5AggMr4wJXSa03OSGDhptsmMFc86qtnht94mDf1UCn1CNYA7qQHzu4MQwqJ2Ist7IIki89VZD5I4Y5AItMKlEjnHAOw/dlMfI8SxE2vvxCIyQu+rhfGPfwotHi0POyKtkX9Y+JSqEVqRXNw7B2x+d9mRYUJ8EqDvj5ag9dtgyXLsfJ4HdUJMqvoT6QnfwlBbaFusTm3R8SNVXl/8LHDoM5naOSKAOGRSe2OnxAJ8CAwEAAaNPME0wDAYDVR0TBAUwAwIBADALBgNVHQ8EBAMCB4AwHQYDVR0OBBYEFAon+QooAKxPsgZlsTxvK/8synsxMBEGA1UdJQQKMAgGBgQAkTcDADANBgkqhkiG9w0BAQUFAAOCAQEACansBzvd2iwBlZg50oueEtUlFyE+do+FmI4apydq2bM3kdeikWGERSbV1EzD86j7jpNKEOvlPTkV7fZl+7uCJ3OuCrzHEzuaZnvFPkN7Rmj4P1AGh5UK4UVWJwTceuhzIf4D6+/5CNY6U8iEHIqvAmTVOPSKEvxdBv7GKHy6x897icQa8ttHq+xCLmc0+6zpbzSZ5dOmFG3kzJuZPqtqa89Lqf7x6IRRKgUd+C+JsKDMjEde/eYnM8yxdVlzEWe6Z0qKVvPTuiCnhTNhaaQM3aiw61RMTes2Ik4wSGY75XZjQV5gVszHJBEntktcduGWCuJ24qS2lb1M2/8bE43Fkg==2016-01-13T11:30:12ZFLND/PjEXrla9sSFb5Npn5rUqkw=O=Estonian Technical Surveillance Authority,C=EE,CN=Estonian Trusted List Scheme Operator16261351432217453360text/xml +\ No newline at end of file +diff -ruN a/client/tl-mp.xml b/client/tl-mp.xml +--- a/client/tl-mp.xml 1970-01-01 03:00:00.000000000 +0300 ++++ b/client/tl-mp.xml 2016-04-27 10:17:23.977818782 +0300 +@@ -0,0 +1,2000 @@ ++ ++ ++ ++ 4 ++ 134 ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUlistofthelists ++ ++ European Commission ++ Европейска комисия ++ Comisión Europea ++ Evropská komise ++ Europa-Kommissionen ++ Europäische Kommission ++ Euroopa Komisjon ++ Ευρωπαϊκή Επιτροπή ++ Commission européenne ++ Commissione europea ++ Eiropas Komisija ++ Europos Komisija ++ Európai Bizottság ++ Il-Kummissjoni Ewropea ++ Europese Commissie ++ Komisja Europejska ++ Comissão Europeia ++ Comisia Europeană ++ Európska komisia ++ Evropska komisija ++ Euroopan komissio ++ Europeiska kommissionen ++ ++ ++ ++ ++ Rue de la Loi 200 ++ Bruxelles ++ 1049 ++ BE ++ ++ ++ Wetstraat 200 ++ Brussel ++ 1049 ++ BE ++ ++ ++ Rue de la Loi/Wetstraat 200 ++ Brussels ++ 1049 ++ BE ++ ++ ++ ++ mailto:EC-TL-Service@ec.europa.eu ++ https://ec.europa.eu/digital-agenda/en/eu-trusted-lists-certification-service-providers ++ ++ ++ ++ EU:Supervision/Accreditation Status List of certification services from Certification Service Providers, which are supervised/accredited by the referenced Scheme Operator’s Member State for compliance with the relevant provisions laid down in Directive 1999/93/EC of the European Parliament and of the Council of 13 December 1999 on a Community framework for electronic signatures. ++ EU:Списък, съдържащ в съответствие с член 2, параграф 4 от Решение 2009/767/ЕО на Комисията от 16 октомври 2009 г. за определяне на мерки, улесняващи прилагането на процедури с помощта на електронни средства чрез единични звена за контакт в съответствие с Директива 2006/123/ЕО на Европейския парламент и на Съвета относно услугите на вътрешния пазар, изменено с Решение 2010/425/ЕС на Комисията и Решение 2013/662/ЕС за изпълнение на Комисията, информацията, съобщена от държавите членки съгласно член 2, параграф 3 от Решение 2009/767/ЕО на Комисията. ++ EU:De conformidad con el artículo 2, apartado 4, de la Decisión 2009/767/CE de la Comisión, de 16 de octubre de 2009, por la que se adoptan medidas que facilitan el uso de procedimientos por vía electrónica a través de las «ventanillas únicas» con arreglo a la Directiva 2006/123/CE del Parlamento Europeo y del Consejo relativa a los servicios en el mercado interior, modificada por la Decisión 2010/425/UE de la Comisión y por la Decisión de Ejecución 2013/662/UE de la Comisión, la presente lista contiene la información proporcionada por los Estados miembros según lo previsto en el artículo 2, apartado 3, de la Decisión 2009/767/CE de la Comisión. ++ EU:Seznam zveřejněný podle čl. 2 odst. 4 rozhodnutí Komise 2009/767/ES ze dne 16. října 2009, kterým se stanovují opatření pro usnadnění užití postupů s využitím elektronických prostředků prostřednictvím „jednotných kontaktních míst“ podle směrnice Evropského parlamentu a Rady 2006/123/ES o službách na vnitřním trhu, ve znění rozhodnutí Komise 2010/425/EU a prováděcího rozhodnutí Komise 2013/662/EU, který obsahuje informace oznámené členskými státy v souladu s čl. 2 odst. 3 rozhodnutí Komise 2009/767/ES. ++ EU:Listen indeholder, jf. artikel 2, stk. 4, i Kommissionens beslutning 2009/767/EF af 16. oktober 2009 om fastlæggelse af foranstaltninger, der skal lette anvendelsen af elektroniske procedurer ved hjælp af "kvikskranker" i henhold til Europa-Parlamentets og Rådets direktiv 2006/123/EF om tjenesteydelser i det indre marked, som ændret ved Kommissionens afgørelse 2010/425/EU og Kommissionens gennemførelsesafgørelse 2013/662/EU, de oplysninger, der indgives af medlemsstaterne i henhold til artikel 2, stk. 3, i Kommissionens beslutning 2009/767/EF. ++ EU:Liste, die in Übereinstimmung mit Artikel 2 Absatz 4 der Entscheidung 2009/767/EG der Kommission vom 16. Oktober 2009 über Maßnahmen zur Erleichterung der Nutzung elektronischer Verfahren über „einheitliche Ansprechpartner“ gemäß der Richtlinie 2006/123/EG des Europäischen Parlaments und des Rates über Dienstleistungen im Binnenmarkt – geändert durch den Beschluss 2010/425/EU der Kommission und den Durchführungsbeschluss 2013/662/EU der Kommission – die von den Mitgliedstaaten gemäß Artikel 2 Absatz 3 der Entscheidung 2009/767/EG der Kommission übermittelten Informationen enthält: ++ EU:Nimekiri kooskõlas komisjoni 16. oktoobri 2009. aasta otsuse 2009/767/EÜ (millega kehtestatakse meetmed elektrooniliste haldustoimingute kasutamise lihtsustamiseks ühtsete kontaktpunktide kaudu, mis on sätestatud Euroopa Parlamendi ja nõukogu direktiivis 2006/123/EÜ teenuste kohta siseturul; muudetud komisjoni otsusega 2010/425/EL ja komisjoni rakendusotsusega 2013/662/EL) artikli 2 lõikega 4; nimekirjas esitatakse teave, mille liikmesriigid on edastanud komisjoni otsuse 2009/767/EÜ artikli 2 lõike 3 kohaselt. ++ EU:Ο παρών κατάλογος περιέχει - σύμφωνα με το άρθρο 2 παράγραφος 4 της απόφασης 2009/767/ΕΚ της Επιτροπής, της 16ης Οκτωβρίου 2009, σχετικά με τη θέσπιση μέτρων που διευκολύνουν τη χρήση διαδικασιών με ηλεκτρονικά μέσα μέσω των ενιαίων κέντρων εξυπηρέτησης βάσει της οδηγίας 2006/123/ΕΚ του Ευρωπαϊκού Κοινοβουλίου και του Συμβουλίου σχετικά με τις υπηρεσίες στην εσωτερική αγορά, όπως τροποποιήθηκε με την απόφαση 2010/425/ΕΕ της Επιτροπής και την εκτελεστική απόφαση 2013/662/ΕΕ της Επιτροπής - τις πληροφορίες που κοινοποιούνται από τα κράτη μέλη σύμφωνα με το άρθρο 2 παράγραφος 3 της απόφασης 2009/767/ΕΚ της Επιτροπής. ++ EU:Liste contenant, par application de l’article 2, paragraphe 4, de la décision 2009/767/CE de la Commission du 16 octobre 2009 établissant des mesures destinées à faciliter l’exécution de procédures par voie électronique par l’intermédiaire des «guichets uniques» conformément à la directive 2006/123/CE du Parlement européen et du Conseil relative aux services dans le marché intérieur, telle que modifiée par la décision 2010/425/UE de la Commission et la décision d'exécution 2013/662/UE de la Commission, les informations communiquées par les États membres en application de l'article 2, paragraphe 3, de la décision 2009/767/CE de la Commission. ++ EU:Conformemente all'articolo 2, paragrafo 4, della decisione 2009/767/CE della Commissione, del 16 ottobre 2009, che stabilisce misure per facilitare l'uso di procedure per via elettronica mediante gli "sportelli unici" di cui alla direttiva 2006/123/CE del Parlamento europeo e del Consiglio relativa ai servizi nel mercato interno, modificata dalla decisione 2010/425/UE della Commissione e dalla decisione di esecuzione 2013/662/UE della Commissione, il presente elenco UE contiene le informazioni comunicate dagli Stati membri a norma dell'articolo 2, paragrafo 3, della decisione 2009/767/CE. ++ EU:Saraksts, kas saskaņā ar 2. panta 4. punktu Komisijas 2009. gada 16. oktobra Lēmumā 2009/767/EK par pasākumiem, lai veicinātu procedūru veikšanu elektroniski, izmantojot vienotos kontaktpunktus atbilstoši Eiropas Parlamenta un Direktīva 2006/123/EK par pakalpojumiem iekšējā tirgū, kurā grozījumi izdarīti ar Komisijas Lēmumu 2010/425/ES un Komisijas Īstenošanas Lēmumu 2013/662/ES, ietver informāciju, ko dalībvalstis paziņojušas saskaņā ar Komisijas Lēmuma 2009/767/EK 2. panta 3. punktu. ++ EU:Sąrašas, kuriame pagal 2009 m. spalio 16 d. Komisijos sprendimo 2009/767/EB, kuriuo pagal Europos Parlamento ir Tarybos direktyvą 2006/123/EB dėl paslaugų vidaus rinkoje nustatomos priemonės procedūroms, atliekamoms naudojantis elektroninėmis priemonėmis ir kontaktinių centrų paslaugomis, palengvinti, su pakeitimais, padarytais Komisijos sprendimu 2010/425/ES ir Komisijos įgyvendinimo sprendimu 2013/662/ES, 2 straipsnio 4 dalį pateikiama informacija, kurią valstybės narės pateikė pagal Komisijos sprendimo 2009/767/EB 2 straipsnio 3 dalį. ++ EU:Jegyzék, amely az eljárásoknak a belső piaci szolgáltatásokról szóló 2006/123/EK európai parlamenti és tanácsi irányelv szerinti egyablakos ügyintézési pontokon keresztül elektronikus eszközökkel történő teljesítését lehetővé tevő rendelkezések meghatározásáról szóló, a 2010/425/EU bizottsági határozattal és a 2013/662/EU bizottsági végrehajtási határozattal módosított, 2009. október 16-i 2009/767/EK bizottsági határozat 2. cikkének (4) bekezdésével összhangban tartalmazza a tagállamok által a 2009/767/EK bizottsági határozat 2. cikke (3) bekezdésének megfelelően bejelentett információkat. ++ EU:Lista li fiha, skont l-Artikolu 2(4) tad-Deċiżjoni tal-Kummissjoni 2009/767/KE tas-16 ta’ Ottubru 2009 li tistipula miżuri li jiffaċilitaw l-użu ta’ proċeduri b’mezzi elettroniċi permezz tal-punti ta’ kuntatt waħdieni skont id-Direttiva 2006/123/KE tal-Parlament Ewropew u tal-Kunsill dwar is-servizzi fis-suq intern, kif emendata mid-Deċiżjoni tal-Kummissjoni 2010/425/UE u mid-Deċiżjoni ta' Implimentazzjoni tal-Kummissjoni 2013/662/UE, l-informazzjoni notifikata mill-Istati Membri skont l-Artikolu 2(3) tad-Deċiżjoni tal-Kummissjoni 2009/767/KE. ++ EU:Lijst waarin overeenkomstig artikel 2, lid 4, van Beschikking 2009/767/EG van de Commissie van 16 oktober 2009 inzake maatregelen voor een gemakkelijker gebruik van elektronische procedures via het „één- loket” in het kader van Richtlijn 2006/123/EG van het Europees Parlement en de Raad betreffende diensten op de interne markt, zoals gewijzigd bij Besluit 2010/425/EU van de Commissie en Uitvoeringsbesluit 2013/662/EU van de Commissie, de informatie is opgenomen die door de lidstaten overeenkomstig artikel 2, lid 3, van Beschikking 2009/767/EG van de Commissie is medegedeeld. ++ EU:Wykaz zawierający, zgodnie z art. 2 ust. 4 decyzji Komisji 2009/767/WE z dnia 16 października 2009 r. ustanawiającej środki ułatwiające korzystanie z procedur realizowanych drogą elektroniczną poprzez „pojedyncze punkty kontaktowe” zgodnie z dyrektywą 2006/123/WE Parlamentu Europejskiego i Rady dotyczącą usług na rynku wewnętrznym, zmienioną decyzją Komisji 2010/425/UE i decyzją wykonawczą Komisji 2013/662/UE, informacje przekazane przez państwa członkowskie zgodnie z art. 2 ust. 3 decyzji Komisji 2009/767/WE. ++ EU:Lista contendo, em conformidade com o artigo 2.º, n.º 4, da Decisão 2009/767/CE da Comissão, de 16 de outubro de 2009, que determina medidas destinadas a facilitar a utilização de procedimentos informatizados através de «balcões únicos», nos termos da Diretiva 2006/123/CE do Parlamento Europeu e do Conselho relativa aos serviços no mercado interno, com a redação que lhe foi dada pela Decisão 2010/425/UE da Comissão e pela Decisão de Execução 2013/662/UE da Comissão, as informações notificadas pelos Estados-Membros nos termos do artigo 2.º, n.º 3, da Decisão 2009/767/CE da Comissão. ++ EU:Listă care conține, în conformitate cu articolul 2 alineatul (4) din Decizia 2009/767/CE a Comisiei din 16 octombrie 2009 de stabilire a unor măsuri de facilitare a utilizării procedurilor prin mijloace electronice prin intermediul „ghișeelor unice” în temeiul Directivei 2006/123/CE a Parlamentului European și a Consiliului privind serviciile în cadrul pieței interne, astfel cum a fost modificată prin Decizia 2010/425/UE a Comisiei și Decizia de punere în aplicare 2013/662/UE a Comisiei, informațiile notificate de statele membre în temeiul articolului 2 alineatul (3) din Decizia 2009/767/CE a Comisiei. ++ EU:Zoznam, ktorý obsahuje v súlade s článkom 2 ods. 4 rozhodnutia Komisie 2009/767/ES zo 16. októbra 2009, ktorým sa ustanovujú opatrenia na uľahčenie postupov elektronickými spôsobmi prostredníctvom „miest jednotného kontaktu“ podľa smernice Európskeho parlamentu a Rady 2006/123/ES o službách na vnútornom trhu, zmeneného rozhodnutím Komisie 2010/425/EÚ a vykonávacím rozhodnutím Komisie 2013/662/EÚ, informácie oznámené členskými štátmi podľa článku 2 ods. 3 rozhodnutia Komisie 2009/767/ES. ++ EU:Seznam, ki v skladu s členom 2(4) Odločbe Komisije 2009/767/ES z dne 16. oktobra 2009 o vzpostavitvi ukrepov za pospeševanje uporabe postopkov po elektronski poti s pomočjo enotnih kontaktnih točk po Direktivi 2006/123/ES Evropskega parlamenta in Sveta o storitvah na notranjem trgu, kakor je bila spremenjena s Sklepom Komisije 2010/425/EU in Izvedbenim sklepom Komisije 2013/662/EU, vsebuje informacije, ki jih države članice sporočijo v skladu s členom 2(3) Odločbe Komisije 2009/767/ES. ++ EU:Luettelo, joka sisältää toimenpiteistä sähköisten menettelyjen käytön edistämiseksi keskitettyjä asiointipisteitä käyttäen palveluista sisämarkkinoilla annetun Euroopan parlamentin ja neuvoston direktiivin 2006/123/EY mukaisesti 16 päivänä lokakuuta 2009 tehdyn komission päätöksen 2009/767/EY, sellaisena kuin se on muutettuna komission päätöksellä 2010/425/EU ja komission täytäntöönpanopäätöksellä 2013/662/EU, 2 artiklan 4 kohdan mukaisesti tiedot, jotka jäsenvaltiot ovat ilmoittaneet komission päätöksen 2009/767/EY 2 artiklan 3 kohdan mukaisesti: ++ EU:Förteckning som, i enlighet med artikel 2.4 i kommissionens beslut av den 16 oktober 2009 om åtgärder som underlättar användningen av förfaranden på elektronisk väg genom gemensamma kontaktpunkter i enlighet med Europaparlamentets och rådets direktiv 2006/123/EG om tjänster på den inre marknaden, ändrat genom kommissionens beslut 2010/425/EU och kommissionens genomförandebeslut 2013/662/EU, innehåller den information som medlemsstaterna lämnat i enlighet med artikel 2.3 i kommissionens beslut 2009/767/EG. ++ EU:Popis koji, u skladu s člankom 2. stavkom 4. Odluke Komisije 2009/767/EZ od 16. listopada 2009. o utvrđivanju mjera kojima se olakšava uporaba postupaka elektroničkim putem preko „jedinstvenih kontaktnih točaka” u skladu s Direktivom 2006/123/EZ Europskog parlamenta i Vijeća o uslugama na unutarnjem tržištu, kako je izmijenjena Odlukom Komisije 2010/425/EU i Provedbenom odlukom Komisije 2013/662/EU, sadržava informacije o kojima su države članice izvijestile u skladu s člankom 2. stavkom 3. Odluke Komisije 2009/767/EZ: ++ ++ ++ http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.C_.2015.435.01.0001.01.ENG ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#en ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#bg ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#es ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#cs ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#da ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#de ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#et ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#el ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#fr ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#it ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#lv ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#lt ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#hu ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#mt ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#nl ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#pl ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#pt ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#ro ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#sk ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#sl ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#fi ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#sv ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/StatusDetn/EUlistofthelists ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUlistofthelists ++ ++ EU ++ ++ In accordance with Art. 2 (4) of Commission Decision 2009/767/EC of 16 October 2009 setting out measures facilitating the use of procedures by electronic means through the ‘points of single contact’ under Directive 2006/123/EC of the European Parliament and of the Council on services in the internal market, as amended by Commission Decision 2010/425/EU and Commission Implementing Decision 2013/662/EU, the present list contains the information notified by Member States pursuant to Art. 2 (3) of Commission Decision 2009/767/EC. The European Commission maintains this website as an interoperability tool designed to facilitate the practical use of national Trusted Lists. Our goal is to keep this information timely and accurate. If errors are brought to our attention, we will try to correct them. However, the Commission accepts no responsibility or liability whatsoever with regard to the content of national Trusted Lists which lies exclusively with the Member States. It is our goal to minimize disruption caused by technical errors. However, some data or information on our site may have been created or structured in files or formats that are not error-free and we cannot guarantee that our service will not be interrupted or otherwise affected by such problems. The European Commission accepts no responsibility with regard to such problems incurred as a result of using this site or any linked external sites. This disclaimer is not intended to limit the liability of the European Commission in contravention of any requirements laid down in applicable national law nor to exclude its liability for matters which may not be excluded under that law. ++ Списък съгласно член 2, параграф 4 от Решение 2009/767/ЕО на Комисията от 16 октомври 2009 г. за определяне на мерки, улесняващи прилагането на процедури с помощта на електронни средства чрез „единични звена за контакт“ в съответствие с Директива 2006/123/ЕО на Европейския парламент и на Съвета относно услугите на вътрешния пазар, изменено с Решение 2010/425/ЕС на Комисията и с Решение за изпълнение 2013/662/EС на Комисията, съдържащ информацията, съобщена от държавите членки съгласно член 2, параграф 3 от Решение 2009/767/ЕО на Комисията. Европейската комисия поддържа този уебсайт като инструмент за оперативна съвместимост, чиято цел е да улесни използването на национални доверителни списъци. Наша цел е да поддържаме актуалността и точността на тази информация. Ако ни съобщите за допуснати грешки, ще се постараем да ги коригираме. Въпреки това Комисията не поема никаква отговорност по отношение на съдържанието на националните доверителни списъци, за което отговорност носят изцяло държавите-членки. Наша цел е да сведем до минимум проблемите, причинени от технически грешки. Въпреки това някои данни или информация на нашия сайт може да са създадени или структурирани във файлове или формати, податливи на грешки, и не можем да гарантираме, че нашите услуги няма да бъдат прекъснати или засегнати по друг начин от подобни проблеми. Европейската комисия не поема отговорност по отношение на такива проблеми, появили се в резултат от използването на този сайт или на други външни сайтове, свързани с него. Настоящият отказ от отговорност няма за цел да ограничава отговорността на Европейската комисия в разрез с изискванията, заложени в приложимото национално законодателство, нито да я освобождава от отговорност в области, в които това не е възможно съгласно това законодателство. ++ De conformidad con el artículo 2, apartado 4, de la Decisión 2009/767/CE de la Comisión, de 16 de octubre de 2009, por la que se adoptan medidas que facilitan el uso de procedimientos por vía electrónica a través de las ventanillas únicas con arreglo a la Directiva 2006/123/CE del Parlamento Europeo y del Consejo relativa a los servicios en el mercado interior, modificada por la Decisión 2010/425/UE de la Comisión y la Decisión de ejecución de la Comisión 2013/662/EU de 14 de octubre de 2013, la presente lista contiene la información notificada por los Estados miembros en virtud del artículo 2, apartado 3, de la Decisión 2009/767/CE de la Comisión. Con el presente sitio Internet la Comisión Europea quiere ofrecer una herramienta de interoperabilidad que facilite el uso práctico de las listas de confianza nacionales. Nuestro objetivo es mantener esta información actualizada y precisa. Trataremos de corregir los errores que se nos señalen. No obstante, la Comisión no asume responsabilidad alguna en relación con el contenido de las listas de confianza nacionales, que son de la exclusiva incumbencia de los Estados miembros. Queremos reducir al mínimo los problemas ocasionados por errores de carácter técnico. No obstante, algunos datos o informaciones de nuestro sitio pueden haber sido creados u organizados en archivos o formatos no exentos de errores, y no podemos garantizar que nuestro servicio no se vea interrumpido o afectado de alguna otra manera. La Comisión no asume responsabilidad alguna por los problemas que puedan surgir al utilizar este sitio o sitios externos con enlaces al mismo. La presente cláusula de exención de responsabilidad no tiene por objeto limitar la responsabilidad de la Comisión de forma contraria a lo dispuesto por las normativas nacionales aplicables ni excluir su responsabilidad en los casos en los que, en virtud de dichas normativas, no pueda excluirse. ++ V souladu s čl. 2 odst. 4 rozhodnutí Komise 2009/767/ES ze dne 16. října 2009, kterým se stanovují opatření pro usnadnění užití postupů s využitím elektronických prostředků prostřednictvím „jednotných kontaktních míst“ podle směrnice Evropského parlamentu a Rady 2006/123/ES o službách na vnitřním trhu, ve znění rozhodnutí Komise 2010/425/EU a prováděcího rozhodnutí Komise 2013/662/EU, tento seznam obsahuje informace oznámené členskými státy podle čl. 2 odst. 3 rozhodnutí Komise 2009/767/ES. Tyto internetové stránky spravuje Evropská komise s cílem usnadnit praktické využívání důvěryhodných seznamů z jednotlivých členských států. Snažíme se poskytovat aktualizované a přesné informace. Snažíme se rovněž opravovat všechny chyby, na něž nás upozorníte. Komise však vylučuje jakoukoli odpovědnost za obsah důvěryhodných seznamů, neboť tuto odpovědnost nesou výhradně členské státy. Snažíme se vyvarovat poruch způsobených technickými chybami. Některé údaje či informace na našich internetových stránkách však mohly být vytvořeny či strukturovány do souborů či formátů, které nejsou bezchybné, a proto nemůžeme zaručit, že naše služby nebudou v důsledku takových problémů přerušeny či jinak ovlivněny. Evropská komise odmítá jakoukoli odpovědnost za problémy, které nastanou v důsledku používání těchto stránek nebo externích stránek, na něž tyto stránky odkazují. Záměrem tohoto prohlášení není omezit odpovědnost Evropské komise v případě porušení platných vnitrostátních právních předpisů ani vyloučit její odpovědnost v záležitostech, ve kterých ji podle těchto předpisů vyloučit nelze. ++ I overensstemmelse med artikel 2, stk. 4, i Kommissionens beslutning 2009/767/EF om fastlæggelse af foranstaltninger, der skal lette anvendelsen af elektroniske procedurer ved hjælp af kvikskranker i henhold til Europa-Parlamentets og Rådets direktiv 2006/123/EF om tjenesteydelser i det indre marked, som ændret ved Kommissionens afgørelse 2010/425/EU og Kommissionens gennemførelsesforordning 2013/662/EU, indeholder denne liste de oplysninger, som medlemslandene har afgivet i henhold til artikel 2, stk. 3, i Kommissionens beslutning 2009/767/EF. Kommissionen har her på webstedet samlet information om de nationale positivlister, så det er lettere at anvende dem i praksis. Vi tilstræber, at oplysningerne er korrekte og ajourførte. Hvis vi bliver opmærksomme på fejl, søger vi at rette dem. Kommissionen påtager sig imidlertid intet ansvar for indholdet i de nationale positivlister. Ansvaret påhviler udelukkende medlemslandene. Vi tilstræber så vidt muligt at mindske forstyrrelser forårsaget af tekniske problemer. Dog kan visse data eller andre oplysninger på webstedet være blevet struktureret i filer eller formater, som ikke er fejlfrie, og vi kan ikke garantere, at vores service ikke afbrydes eller i øvrigt ikke påvirkes af den slags problemer. Kommissionen påtager sig intet ansvar for sådanne ulemper, der måtte opstå som følge af brugen af dette websted eller andre tilknyttede eksterne websteder. Hensigten med denne erklæring om ansvarsfraskrivelse er hverken at begrænse Kommissionens ansvar på en måde, der strider med eventuelle krav ifølge gældende national ret, eller at udelukke Europa-Kommissionens ansvar i tilfælde, hvor ansvar ikke kan udelukkes ifølge national ret. ++ Diese Liste enthält die von den Mitgliedstaaten übermittelten Angaben und steht damit im Einklang mit Artikel 2 Absatz 4 der Entscheidung 2009/767/EG der Kommission vom 16. Oktober 2009 über Maßnahmen zur Erleichterung der Nutzung elektronischer Verfahren über „einheitliche Ansprechpartner“ gemäß der Richtlinie 2006/123/EG des Europäischen Parlaments und des Rates über Dienstleistungen im Binnenmarkt – geändert durch die Entscheidung der Kommission Nr. 2010/425/EU und dem Durchführungsbeschluss der Kommission Nr. 2013/662/EU – in Übereinstimmung mit Artikel 2 Absatz 3 der Entscheidung der Kommission Nr. 2009/767/EG. Diese Website der Europäischen Kommission ist als Schnittstelle gedacht, die die Verwendung nationaler vertrauenswürdiger Listen in der Praxis vereinfachen soll. Wir sind bestrebt, die einschlägigen Informationen inhaltlich richtig und rechtzeitig bereitzustellen. Wir bemühen uns, Irrtümer zu berichtigen, die uns zur Kenntnis gebracht werden. Die Kommission übernimmt jedoch keine Verantwortung oder Haftung für den Inhalt der nationalen vertrauenswürdigen Listen, für die ausschließlich die Mitgliedstaaten zuständig sind. Wir arbeiten darauf hin, technisch bedingte Störungen auf ein Mindestmaß zu reduzieren. Dennoch kann es vorkommen, dass Daten oder Informationen auf unserer Website in fehlerhaften Dateien oder Formaten vorliegen. Wir können also nicht garantieren, dass der Arbeitsablauf durch derartige Probleme nicht gestört oder anderweitig beeinträchtigt wird. Die Europäische Kommission übernimmt für derartige Störungen beim Besuch dieser Website oder damit verbundener externer Sites keine Verantwortung. Mit der vorliegenden Haftungsausschlussklausel soll die Haftung der Europäischen Kommission bei Nichteinhaltung der einschlägigen nationalen Rechtsvorschriften weder eingeschränkt noch in Fällen ausgeschlossen werden, in denen ein Ausschluss nach diesen Rechtsvorschriften nicht möglich ist. ++ Vastavalt komisjoni 16. oktoobri 2009. aasta otsuse 2009/767/EÜ (millega kehtestatakse meetmed elektrooniliste haldustoimingute kasutamise lihtsustamiseks ühtsete kontaktpunktide kaudu, mis on sätestatud Euroopa Parlamendi ja nõukogu direktiivis 2006/123/EÜ teenuste kohta siseturul ning mida on muudetud komisjoni otsusega 2010/425/EL ja komisjoni rakendusotsusega 2013/662/EL) artikli 2 lõikele 4 sisaldab käesolev loetelu liikmesriikide vastavalt komisjoni otsuse 2009/767/EÜ artikli 2 lõikele 3 esitatud teavet. Euroopa Komisjon haldab asjaomast veebisaiti koostalitlusvõime vahendina, mis hõlbustab liikmesriikide usaldusnimekirjade praktilist kasutamist. Eesmärk on pakkuda õigeaegset ja täpset teavet. Märgatud vigu püüame parandada. Samas ei võta komisjon endale vastutust ega mingeid kohustusi liikmesriikide usaldusnimekirjade sisu suhtes, mille eest vastutavad üksnes liikmesriigid ise. Meie eesmärk on vähendada tehniliste vigade tõttu tekkinud häireid. Osa veebisaidil olevatest andmetest või teabest võib aga olla loodud või paigutatud vigastesse failidesse või vormingutesse ning seega ei saa me tagada, et sellised probleemid meie teenust ei häiri või muul moel ei mõjuta. Euroopa Komisjon ei võta endale vastutust seoses kõnealuste probleemidega, mis tulenevad käesoleva veebisaidi või seonduvate välissaitide kasutamisest. Käesoleva vastutamatusesätte eesmärk ei ole Euroopa Komisjoni vastutuse piiramine, mis oleks vastuolus kohaldatavas liikmesriigi õigusaktis sätestatud nõuetega ega komisjoni vastutuse kõrvaldamine küsimustes, mida ei tohi asjaomase õigusakti alusel kõrvale jätta. ++ Σύμφωνα με το άρθρο 2 παράγραφος 4 της απόφασης 2009/767/EΚ της Επιτροπής, της 16ης Οκτωβρίου 2009, σχετικά με τη θέσπιση μέτρων που διευκολύνουν τη χρήση διαδικασιών με ηλεκτρονικά μέσα μέσω των «ενιαίων κέντρων εξυπηρέτησης» βάσει της οδηγίας 2006/123/EΚ του Ευρωπαϊκού Κοινοβουλίου και του Συμβουλίου σχετικά με τις υπηρεσίες στην εσωτερική αγορά, όπως τροποποιήθηκε με τη απόφαση 2010/425/EΕ της Επιτροπής και την εκτελεστική απόφαση 2013/662/ΕΕ της Επιτροπής, ο παρών κατάλογος περιέχει τις πληροφορίες που γνωστοποιούν τα κράτη μέλη σύμφωνα με το άρθρο 2 παράγραφος 3 της απόφασης 2009/767/EΚ της Επιτροπής. Ο δικτυακός αυτός τόπος της Ευρωπαϊκής Επιτροπής είναι ένα διαλειτουργικό εργαλείο σχεδιασμένο για να διευκολύνει τη χρήση των εθνικών καταλόγων εμπίστευσης.. Στόχος μας είναι να παρέχουμε ακριβή και επικαιροποιημένα στοιχεία. Αν επισημανθούν σφάλματα θα καταβληθεί κάθε προσπάθεια για τη διόρθωσή τους.Ωστόσο, η Επιτροπή δεν φέρει καμία ευθύνη όσον αφορά το περιεχόμενο των εθνικών καταλόγων εμπίστευσης, για τους οποίους την αποκλειστική ευθύνη φέρουν τα κράτη μέλη. Καταβάλλουμε κάθε προσπάθεια ώστε να ελαχιστοποιήσουμε τις διακοπές που προκαλούνται από τεχνικά προβλήματα. Ωστόσο, ορισμένα δεδομένα ή πληροφορίες που περιέχει ο δικτυακός τόπος μπορεί να έχουν δημιουργηθεί ή οργανωθεί σε αρχεία ή μορφότυπους που περιέχουν σφάλματα και γι΄αυτό δεν μπορούμε να εγγυηθούμε ότι η υπηρεσία μας δεν θα διακοπεί, ή δεν θα επηρεαστεί με άλλο τρόπο, από τέτοια προβλήματα. Η Επιτροπή δεν φέρει καμιά ευθύνη όσον αφορά τέτοια προβλήματα που ανακύπτουν κατά τη χρήση αυτού του δικτυακού τόπου, ή οποιουδήποτε άλλου συνδεδεμένου δικτυακού τόπου. Η παρούσα δήλωση αποποίησης ευθύνης δεν έχει σκοπό να περιορίσει την ευθύνη της Ευρωπαϊκής Επιτροπής κατά τρόπο που αντίκειται στις απαιτήσεις της ισχύουσας εθνικής νομοθεσίας ούτε να αποκλείσει την ευθύνη της για ζητήματα για τα οποία δεν μπορεί να αποκλειστεί δυνάμει της εν λόγω νομοθεσίας. ++ Conformément à l'article 2, paragraphe 4, de la décision 2009/767/CE de la Commission du 16 octobre 2009 établissant des mesures destinées à faciliter l’exécution de procédures par voie électronique par l’intermédiaire des «guichets uniques» conformément à la directive 2006/123/CE du Parlement européen et du Conseil relative aux services dans le marché intérieur, modifiée par la décision 2010/425/UE de la Commission et par la décision d’exécution 2013/662/UE de la Commission, la présente liste contient les informations notifiées par les États membres conformément à l'article 2, paragraphe 3, de la décision 2009/767/CE de la Commission. Le présent site de la Commission européenne constitue un outil d'interopérabilité destiné à faciliter l'utilisation des listes de confiance nationales. Notre objectif est de diffuser des informations exactes et à jour. Nous nous efforcerons de corriger les erreurs qui nous seront signalées. Toutefois, la Commission n'assume pas la responsabilité du contenu des listes de confiance nationales, qui incombe exclusivement aux États membres. Nous souhaitons limiter autant que possible les inconvénients occasionnés par des erreurs techniques. Cependant, certaines données ou informations présentes sur notre site peuvent avoir été créées ou structurées dans des fichiers ou des formats qui ne sont pas exempts d'erreurs. Il nous est donc impossible de garantir que notre service ne sera pas interrompu ou autrement affecté par de tels problèmes. La Commission décline toute responsabilité quant aux éventuels problèmes de ce type, résultant d'une utilisation du présent site ou de tout autre site extérieur auquel il renvoie. La présente clause de non-responsabilité n'a pas pour but de limiter la responsabilité de la Commission de manière contraire aux dispositions prévues dans les législations nationales applicables ou de dégager sa responsabilité dans des cas où elle ne peut l'être en vertu desdites législations. ++ Conformemente all'articolo 2, paragrafo 4, della decisione della Commissione 2009/767/CE, del 16 ottobre 2009, che stabilisce misure per facilitare l’uso di procedure per via elettronica mediante gli sportelli unici di cui alla direttiva 2006/123/CE del Parlamento europeo e del Consiglio relativa ai servizi nel mercato interno, decisione modificata dalla decisione della Commissione 2010/425/UE e dalla decisione di esecuzione della Commissione 2013/662/UE , la presente lista contiene le informazioni notificate dagli Stati membri a norma dell'articolo 2, paragrafo 3, della decisione 2009/767/CE. Il presente sito della Commissione europea assicura l'interoperabilità necessaria per facilitare l'uso pratico degli elenchi di fiducia nazionali. L'obiettivo perseguito è quello di fornire un'informazione aggiornata e precisa. Qualora dovessero essere segnalati degli errori, si provvederà a correggerli. La Commissione non si assume alcuna responsabilità per quanto riguarda il contenuto degli elenchi di fiducia nazionali, che è di competenza esclusiva degli Stati membri. È nostra cura ridurre al minimo le disfunzioni imputabili a problemi tecnici. Parte dei dati o delle informazioni presenti nel sito potrebbero tuttavia essere stati inseriti o strutturati in archivi o formati non esenti da errori. Non possiamo pertanto garantire che il servizio non subisca interruzioni o che non sia in altro modo influenzato da tali problemi. La Commissione non si assume alcuna responsabilità per gli eventuali problemi derivanti dall'utilizzazione del presente sito o di eventuali siti esterni ad esso collegati. La presente clausola di esclusione della responsabilità non ha lo scopo di limitare la responsabilità della Commissione in violazione di disposizioni della legge nazionale applicabile, né di escluderla nei casi in cui non può essere esclusa in forza di detta legge. ++ Šajā sarakstā ir iekļauta informācija, kuru dalībvalstis Komisijai ir paziņojušas saskaņā ar 2. panta 4. punktu Komisijas 2009. gada 16. oktobra Lēmumā 2009/767/EK par pasākumiem, lai veicinātu procedūru veikšanu elektroniski, izmantojot vienotos kontaktpunktus atbilstoši Eiropas Parlamenta un Padomes Direktīvai 2006/123/EK par pakalpojumiem iekšējā tirgū (minētais Lēmums grozīts ar Komisijas Lēmumu 2010/425/ES un Komisijas Īstenošanas lēmumu 2013/662/ES). Šis saraksts publicēts atbilstīgi Komisijas Lēmuma 2009/767/EK 2. panta 4. punktam. Eiropas Komisija uztur šo tīmekļa vietni, lai sekmētu dalībvalstu uzticamo sarakstu praktisku un savstarpēju izmantošanu. Mēs darām visu, lai nodrošinātu, ka šī informācija ir sniegta laicīgi un ir pareiza. Centīsimies labot norādītās kļūdas. Tomēr Komisija neuzņemas nekādu atbildību vai saistības attiecībā uz dalībvalstu uzticamajos sarakstos sniegto informāciju, jo par tiem atbild vienīgi dalībvalstis. Mēs darām visu, lai līdz minimumam samazinātu traucējumus, ko rada tehniskas kļūmes. Tomēr atsevišķos gadījumos dati vai informācija, kas iekļauta mūsu vietnē, ir sagatavota vai organizēta datnēs vai formātos, kas nefunkcionē nevainojami, un mēs nevaram garantēt, ka šādas problēmas nepārtrauks vai citādi neietekmēs mūsu pakalpojumus. Eiropas Komisija neuzņemas nekādu atbildību par problēmām, kas rodas, izmantojot šo vietni vai kādu citu ārēju vietni, uz kuru esam snieguši hipersaiti. Šī atruna neierobežo Eiropas Komisijas atbildību tad, ja nav ievērotas spēkā esošo valsts tiesību aktu prasības, un neierobežo tās atbildību gadījumos, kad saskaņā ar tiesību aktiem tai atbildība ir jāuzņemas. ++ Remiantis 2009 m. spalio 16 d. Komisijos sprendimo 2009/767/EB, kuriuo pagal Europos Parlamento ir Tarybos direktyvą 2006/123/EB dėl paslaugų vidaus rinkoje nustatomos priemonės procedūroms, atliekamoms naudojantis elektroninėmis priemonėmis ir kontaktinių centrų paslaugomis, palengvinti, iš dalies pakeisto Komisijos sprendimu 2010/425/ES ir Komisijos įgyvendinimo sprendimu 2013/662/ES, 2 straipsnio 4 dalimi, šiame sąraše pateikiama informacija, kurią valstybės narės perdavė pagal Komisijos sprendimo 2009/767/EB 2 straipsnio 3 dalį. Ši Europos Komisijos administruojama interneto svetainė – sąveiki priemonė, skirta praktiniam naudojimuisi valstybių narių patikimais sąrašais palengvinti. Siekiame laiku teikti tikslią informaciją ir ištaisyti visas pastebėtas klaidas. Tačiau Komisija neprisiima atsakomybės ar teisinių įsipareigojimų dėl valstybių narių patikimų sąrašų turinio. Už jį atsakingos tik valstybės narės. Siekiame, kad būtų kuo mažiau nesklandumų dėl techninių klaidų. Tačiau tam tikri mūsų interneto svetainėje skelbiami duomenys gali būti sukurti ar susisteminti tokiose rinkmenose arba tokiais formatais, kuriuose pasitaiko klaidų, todėl negalime užtikrinti, kad tokios problemos nesutrikdys mūsų darbo ar jo kaip nors kitaip nepaveiks. Europos Komisija neprisiima atsakomybės už tokio pobūdžio problemas, kylančias naudojantis šia interneto svetaine arba kitomis su ja susietomis išorės svetainėmis. Šiuo atsakomybės apribojimu nesiekiama sumažinti Europos Komisijos teisinių įsipareigojimų nepažeisti jokių taikytinų nacionalinės teisės reikalavimų ar neprisiimti teisinių įsipareigojimų už tai, už ką pagal tą teisę nuo atsakomybės neatleidžiama. ++ A 2010/425/EU bizottsági határozattal és a 2013/662/EU bizottsági végrehajtási határozattal módosított, az eljárásoknak a belső piaci szolgáltatásokról szóló 2006/123/EK európai parlamenti és tanácsi irányelv szerinti egyablakos ügyintézési pontokon keresztül elektronikus eszközökkel történő teljesítését lehetővé tevő rendelkezések meghatározásáról szóló 2009. október 16-i 2009/767/EK bizottsági határozat 2. cikkének (4) bekezdése értelmében a jelen lista azokat az információkat tartalmazza, amelyeket a tagállamok a 2009/767/EK bizottsági határozat 2. cikkének (3) bekezdése értelmében jelentettek be. Az Európai Bizottság e weblapot a kölcsönös átjárhatóság elősegítésére tartja fönn, abból a célból, hogy megkönnyítse a megbízható szolgáltatók listájának használatát. Célunk az, hogy ezek az információk naprakészek és pontosak legyenek. Amennyiben arról értesülünk, hogy a webhelyen hibás információk szerepelnek, azokat igyekszünk kijavítani. A Bizottság semmilyen felelősséget sem vállal a nemzeti megbízható szolgáltatók listájának tartalmáért, mert azért kizárólag a tagállamok felelősek. Arra törekszünk, hogy az esetleges technikai hibák a lehető legkisebb mértékben okozzanak fennakadásokat a portál működésében. Előfordulhat ugyanakkor, hogy a portál oldalain található adatok vagy információk olyan fájlokban vagy formátumokban állnak rendelkezésre, amelyek nem mentesek a hibáktól; ilyen esetekben nem tudjuk garantálni, hogy ezek a problémák nem okoznak fennakadásokat a webhely használata során. Az Európai Bizottság nem vállal felelősséget a honlap (vagy a belinkelt külső honlapok) használatából fakadó problémákért. E jogi nyilatkozat nem korlátozza az Európai Bizottságnak az alkalmazandó közösségi jogban lefektetett követelményekből fakadó felelősségét, és nem zárja ki a Bizottság felelősségét olyan ügyekben, amelyekért az említett jog értelmében felelősségre vonható. ++ F'konformità mal-Art. 2(4) tad-Deċiżjoni tal-Kummissjoni 2009/767/KE tas-16 ta' Ottubru 2009 li tistipula miżuri li jiffaċilitaw l-użu ta’ proċeduri b’mezzi elettroniċi permezz tal-"punti ta’ kuntatt waħdieni" skont id-Direttiva 2006/123/KE tal-Parlament Ewropew u tal-Kunsill dwar is-servizzi fis-suq intern, kif emendata bid-Deċiżjoni tal-Kummissjoni 2010/425/UE, u d-Deċiżjoni ta' Implimentazzjoni tal-Kummissjoni 2013/662/UE, dan l-elenku fih l-informazzjoni notifikata mill-Istati Membri skont l-Art. 2 (3) tad-Deċiżjoni tal-Kummissjoni 2009/767/KE. Il-Kummissjoni Ewropea żżomm dan is-sit bħala strument ta' interoperabilità ddisinnjat biex jiffaċilita l-użu prattiku tal-Listi ta' Fiduċja nazzjonali. L-għan tagħna hu li nżommu din l-informazzjoni aġġornata u eżatta. Jekk tiġbdulna l-attenzjoni li hemm żbalji, aħna nippruvaw nikkoreġuhom. Madanakollu l-Kummissjoni ma taċċetta l-ebda responsabbiltà fir-rigward tal-kontenut tal-Listi ta' Fiduċja nazzjonali li taqa' esklussivament fuq l-Istati Membri. Huwa l-għan tagħna li nnaqqsu t-tfixkil ikkawżat mill-iżbalji tekniċi. Madanakollu, xi dejta jew informazzjoni fuq is-sit tagħna setgħet inħolqot jew ġiet strutturata f’fajls jew formati li mhumiex ħielsa mill-iżbalji u ma nistgħux niggarantixxu li s-servizz tagħna ma jiġix interrott jew b’xi mod effettwat minn problemi bħal dawn. Il-Kummissjoni ma tieħu l-ebda responsabbiltà għal dawn il-problemi mġarrba bħala riżultat tal-użu ta' dan is-sit jew kwalunkwe siti esterni relatati. Din ir-rinunzja mhijiex maħsuba biex tillimita r-responsabbiltà tal-Kummissjoni fil-kontravenzjoni ta' kwalunkwe rekwiżit stipulat fil-liġi applikabbli tal-Komunità, l-anqas biex tneħħi r-responsabbiltà għal kwistjonijiet li jistgħu ma jkunux esklużi taħt dik il-liġi. ++ Overeenkomstig artikel 2, lid 4, van Beschikking 2009/767/EG van de Commissie van 16 oktober 2009 inzake maatregelen voor een gemakkelijker gebruik van elektronische procedures via het één-loket in het kader van Richtlijn 2006/123/EG van het Europees Parlement en de Raad betreffende diensten op de interne markt, als gewijzigd bij Besluit 2010/425/EU van de Commissie en Uitvoeringsbesluit 2013/662/EU van de Commissie, bevat deze lijst de door de lidstaten meegedeelde gegevens op grond van artikel 2, lid 3, van Beschikking 2009/767/EG. De Europese Commissie wil met deze website het gebruik van de vertrouwenslijsten vergemakkelijken. Ons doel is up-to-date en nauwkeurige informatie aan te bieden. Gesignaleerde fouten worden zo snel mogelijk gecorrigeerd. De Commissie aanvaardt echter geen enkele verantwoordelijkheid of aansprakelijkheid met betrekking tot de informatie op de vertrouwenslijsten. De verantwoordelijkheid hiervoor ligt uitsluitend bij de EU-landen. Wij proberen onderbrekingen door technische storingen zoveel mogelijk te beperken. Sommige gegevens of informatie op onze site kan zijn aangemaakt of omgezet in bestanden of formaten die niet foutloos zijn. Wij kunnen niet uitsluiten dat onze dienstverlening door dergelijke problemen wordt verstoord. De Commissie aanvaardt geen aansprakelijkheid voor die problemen die zich als gevolg van het gebruik van deze site of van andere daarmee verbonden externe sites mochten voordoen. Met deze disclaimer wordt niet beoogd de aansprakelijkheid van de Commissie te beperken in strijd met de in de toepasselijke EU-wetgeving vervatte vereisten, noch haar aansprakelijkheid uit te sluiten voor aangelegenheden die uit hoofde van die wetgeving niet mogen worden uitgesloten. ++ Zgodnie z art. 2 ust. 4 decyzji Komisji 2009/767/WE z dnia 16 października 2009 r. ustanawiającej środki ułatwiające korzystanie z procedur realizowanych drogą elektroniczną poprzez „pojedyncze punkty kontaktowe” zgodnie z dyrektywą 2006/123/WE Parlamentu Europejskiego i Rady dotyczącą usług na rynku wewnętrznym, zmienionej decyzją Komisji 2010/425/UE i decyzją wykonawczą Komisji 2013/662/UE, wykaz ten zawiera informacje przekazane przez państwa członkowskie. Ta strona internetowa Komisji Europejskiej ma ułatwić korzystanie z krajowych zaufanych list. Naszym celem jest dostarczanie aktualnych i ścisłych informacji. Jeśli zostaniemy powiadomieni o błędach, dołożymy wszelkich starań, aby je skorygować. Komisja nie ponosi jednak żadnej odpowiedzialności za treść krajowych zaufanych list, za którą odpowiadają wyłącznie państwa członkowskie. Naszym celem jest ograniczenie do minimum zakłóceń wynikających z błędów technicznych. Jednak niektóre z zamieszczonych w tym serwisie danych lub informacji mogły być utworzone lub zamieszczone w plikach lub formatach, które nie są wolne od błędów, w związku z czym nie możemy zagwarantować, że problemy takie nie spowodują przerw w dostępie do serwisu lub innych zakłóceń w jego funkcjonowaniu. Komisja Europejska nie bierze odpowiedzialności w związku z tego rodzaju problemami będącymi następstwem korzystania z tego serwisu lub jakichkolwiek serwisów zewnętrznych, do których odsyła niniejszy serwis. Niniejsze zastrzeżenie nie ma na celu ograniczenia odpowiedzialności Komisji Europejskiej w przypadku naruszenia jakichkolwiek wymagań określonych w stosownych przepisach prawa krajowego ani wyłączenia jej odpowiedzialności za kwestie, które na gruncie tego prawa nie podlegają wyłączeniu. ++ Em conformidade com o n.º 4 do artigo 2.° da Decisão 2009/767/CE da Comissão, de 16 de Outubro de 2009, que determina medidas destinadas a facilitar a utilização de procedimentos informatizados através de balcões únicos, nos termos da Directiva 2006/123/CE do Parlamento Europeu e do Conselho relativa aos serviços no mercado interno, com a redacção que lhe foi dada pela Decisão 2010/425/EU e pela Decisão de Execução 2013/662/UE da Comissão, a presente lista contém as informações notificadas pelos Estados-Membros ao abrigo do n.º 3 do artigo 2.° da Decisão 2009/767/CE da Comissão. Este sítio Web da Comissão Europeia assegura a interoperabilidade necessária para facilitar uma utilização eficaz das listas aprovadas e tem por objectivo fornecer informações exactas e actualizadas. Procuraremos corrigir todos os erros que nos forem comunicados. Contudo, a Comissão declina toda e qualquer responsabilidade quanto ao conteúdo das listas aprovadas nacionais, que incumbe exclusivamente aos Estados-Membros. É nosso objectivo reduzir ao mínimo os inconvenientes causados por erros técnicos. Contudo, determinados dados constantes do nosso sítio podem ter sido criados ou estruturados em ficheiros ou formatos não isentos de erros, pelo que não podemos garantir um serviço sem interrupções ou perturbações. A Comissão declina qualquer responsabilidade por eventuais problemas que surjam na sequência da consulta deste sítio ou de quaisquer sítios externos a que as ligações dêem acesso. A presente declaração de exoneração de responsabilidade não pretende limitar a responsabilidade da Comissão Europeia de uma forma que contrarie o disposto na legislação nacional aplicável, nem excluir a sua responsabilidade nos casos em que tal não é permitido por essa legislação. ++ În conformitate cu articolul 2 alineatul (4) din Decizia Comisiei 2009/767/CE din 16 octombrie 2009 de stabilire a unor măsuri de facilitare a utilizării procedurilor prin mijloace electronice prin intermediul „ghișeelor unice” în temeiul Directivei 2006/123/CE a Parlamentului European și a Consiliului privind serviciile în cadrul pieței interne, așa cum a fost modificată prin Decizia Comisiei 2010/425/UE și prin Decizia de punere în aplicare 2013/662/UE a Comisiei, prezenta listă conține informațiile notificate de statele membre în conformitate cu articolul 2 alineatul (3) din Decizia Comisiei 2009/767/CE. Comisia Europeană utilizează acest site ca instrument de facilitare a utilizării Listelor naționale sigure, prin sporirea interoperabilității. Scopul nostru este ca aceste informații să fie actualizate și exacte. În cazul în care ni se vor semnala erori, vom încerca să le corectăm. Totuși, Comisia nu își asumă niciun fel de responsabilitate cu privire la conținutul Listelor naționale sigure, care intră, integral, în sarcina statelor membre. De asemenea, ne propunem să reducem consecințele negative cauzate de erori tehnice. Cu toate acestea, este posibil ca unele date sau informații de pe site-ul nostru să fi fost create sau structurate în fișiere sau formate care pot prezenta erori. Prin urmare, nu putem garanta că serviciile noastre nu vor fi întrerupte sau afectate de asemenea probleme. Comisia Europeană nu își asumă nicio responsabilitate cu privire la eventuale probleme survenite ca urmare a utilizării acestui site sau a oricăror alte site-uri externe la care face trimitere. Această denegare de responsabilitate nu este destinată să limiteze răspunderea Comisiei Europene într-un mod care contravine reglementărilor prevăzute de legislația internă aplicabilă și nu exclude răspunderea sa în cazuri care, în conformitate cu legislația respectivă, aceasta nu poate fi exclusă. ++ V súlade s článkom 2 ods. 4 rozhodnutia Komisie 2009/767/ES zo 16. októbra 2009, ktorým sa ustanovujú opatrenia na uľahčenie postupov elektronickými spôsobmi prostredníctvom miest jednotného kontaktu podľa smernice Európskeho parlamentu a Rady 2006/123/ES o službách na vnútornom trhu, zmeneného rozhodnutím Komisie 2010/425/EÚ a vykonávacím rozhodnutím Komisie 2013/662/EÚ, tento zoznam obsahuje informácie oznámené členskými štátmi podľa článku 2 ods. 3 rozhodnutia Komisie 2009/767/ES. Európska komisia spravuje tieto internetové stránky ako interoperabilný nástroj, ktorý slúži na uľahčenie praktického využitia zoznamov dôveryhodných informácií. Naším cieľom je poskytovať tieto informácie včas a správne. Ak budeme upozornení na chyby, pokúsime sa ich napraviť. Komisia však nepreberá žiadnu zodpovednosť, ani inak neručí za obsah zoznamov dôveryhodných informácií, ktoré poskytli členské štáty. Je naším cieľom minimalizovať technické chyby. Niektoré informácie alebo údaje na tejto webovej lokalite však mohli byť vytvorené v chybných súboroch alebo formátoch, a preto nemožno zaručiť, že tieto problémy nespôsobia výpadok alebo inú poruchu našej webovej lokality. Komisia nenesie žiadnu zodpovednosť za podobné chyby, ktoré sa zistia pri používaní tejto lokality alebo pridružených externých lokalít. Zámerom tohto vyhlásenia o odmietnutí zodpovednosti nie je obmedzenie zodpovednosti Európskej komisie v rozpore s požiadavkami ustanovenými v príslušných vnútroštátnych predpisoch ani vylúčenie jej zodpovednosti vo veciach, v ktorých ju podľa týchto predpisov nie je možné vylúčiť. ++ Seznam v skladu s členom 2(4) Odločbe Komisije 2009/767/ES z dne 16. oktobra 2009 o vzpostavitvi ukrepov za pospeševanje uporabe postopkov po elektronski poti s pomočjo „enotnih kontaktnih točk“ po Direktivi 2006/123/ES Evropskega parlamenta in Sveta o storitvah na notranjem trgu, kakor je bila spremenjena z Odločbo Komisije 2010/425/EU in Izvedbenim sklepom Komisije 2013/662/EU, vsebuje informacije, ki so jih v skladu s členom 2 (3) Odločbe Komisije 2009/767/ES sporočile države članice. Evropska komisija si prizadeva izboljšati praktično uporabo zanesljivih seznamov držav članic. Temu je namenjeno tudi to spletišče. Želimo zagotavljati pravočasne in točne informacije. Če nas boste opozorili na morebitne napake, jih bomo poskušali čimprej odpraviti. Komisija ne prevzema nikakršne zakonske ali druge odgovornosti glede vsebine nacionalnih zanesljivih seznamov, za katero so odgovorne izključno države članice. Uporabnikom želimo omogočiti nemoteno uporabo s čim manj tehničnimi napakami. Vendar so lahko nekateri podatki in informacije na našem spletišču v datotekah ali obliki, ki niso popolnoma brez napak, zato ne moremo zagotoviti, da takšne težave ne bodo vplivale na zagotavljanje naših storitev. Komisija ne prevzema nobene odgovornosti v zvezi s težavami, ki so posledica uporabe tega spletišča ali povezanega zunanjega spletišča. Izjava ne omejuje odgovornosti Evropske komisije pri kakršnem koli delovanju v nasprotju z veljavno nacionalno zakonodajo, niti ne izključuje odgovornosti za dejanja, ki jih v skladu s to zakonodajo ni mogoče izključiti. ++ Tämä luettelo sisältää komission päätöksen 2009/767/EY 2 artiklan 4 kohdan mukaisesti tiedot, jotka EU-maat ovat toimittaneet komissiolle päätöksen 2009/767/EY 2 artiklan 3 kohdan mukaisesti (komission päätös 2009/767/EY, tehty 16 päivänä lokakuuta 2009, toimenpiteistä sähköisten menettelyjen käytön edistämiseksi keskitettyjä asiointipisteitä käyttäen palveluista sisämarkkinoilla annetun Euroopan parlamentin ja neuvoston direktiivin 2006/123/EY mukaisesti, sellaisena kuin se on muutettuna komission päätöksellä 2010/425/EU ja komissio täytäntöönpanopäätöksellä 2013/662/EU). Euroopan komissio ylläpitää tätä verkkosivustoa helpottaakseen kansallisten luotettavien luetteloiden käyttöä. Pyrimme pitämään tiedot ajantasaisina ja virheettöminä. Pyrimme korjaamaan tietoomme tulleet virheet. Komissio ei kuitenkaan voi olla vastuussa kansallisten luotettavien luetteloiden sisällöstä, joka on yksinomaan jäsenvaltioiden vastuulla. Tavoitteenamme on minimoida teknisten häiriöiden aiheuttamat haitat. Jotkin tiedot sivustollamme on voitu luoda tai muotoilla sellaiseen muotoon tai sellaisiin tiedostoihin, jotka eivät ole virheettömiä, emmekä voi taata, ettei palvelumme keskeydy tai etteivät kyseiset ongelmat muutoin vaikuta siihen. Euroopan komissio ei vastaa ongelmista, jotka johtuvat tämän sivuston tai siihen linkitettyjen ulkopuolisten sivustojen käytöstä. Tämän vastuuvapauslausekkeen tarkoituksena ei ole rajoittaa Euroopan komission vastuuta vastoin sovellettavan kansallisen lain vaatimuksia tai poistaa komission vastuuta seikoista, joiden osalta vastuuta ei sovellettavan kansallisen lain mukaan voida poistaa. ++ Av listan framgår var du kan hitta den information som EU-länderna har anmält, och som kommissionen måste tillhandahålla, enligt artikel 2.3 och 2.4 i kommissionens beslut 2009/767/EG av den 16 oktober 2009 om åtgärder som underlättar användningen av förfaranden på elektronisk väg genom gemensamma kontaktpunkter i enlighet med Europaparlamentets och rådets direktiv 2006/123/EG om tjänster på den inre marknaden, ändrad genom kommissionens beslut 2010/425/EU och kommissionens genomförandebeslut 2013/662/EU. Vi har samlat informationen på den här webbplatsen, så att du lättare ska kunna använda den i praktiken. Vi strävar efter att hålla informationen aktuell och korrekt. Om felaktigheter kommer till vår kännedom, försöker vi att rätta till dem. Vi frånsäger oss dock allt ansvar för de nationella förteckningarna. Medlemsländerna ansvarar helt och hållet själva för innehållet. Vi strävar efter att så långt som möjligt undvika tekniska störningar. En del uppgifter eller information på vår sida kan dock ha skapats eller strukturerats i filer eller format som inte är felfria. Vi kan inte garantera att den service vi tillhandahåller kommer att vara fri från avbrott eller andra störningar som har att göra med sådana problem. Kommissionen frånsäger sig allt ansvar för problem som kan uppstå till följd av att denna webbplats eller någon av dess länkar har använts. Denna ansvarsfriskrivning är inte avsedd att inskränka kommissionens ansvar i strid med tillämplig nationell lagstiftning eller att utesluta ansvar för kommissionen i de fall där friskrivning inte får ske enligt sådan lagstiftning. ++ U skladu s člankom 2. stavkom 4. Odluke Komisije 2009/767/EZ od 16. listopada 2009. o utvrđivanju mjera kojima se olakšava uporaba postupaka elektroničkim putem preko „jedinstvenih kontaktnih točaka” u skladu s Direktivom 2006/123/EZ Europskog parlamenta i Vijeća o uslugama na unutarnjem tržištu, kako je izmijenjena Odlukom Komisije 2010/425/EU i Provedbenom odlukom Komisije 2013/662/EU, trenutačni popis sadržava informacije o kojima su države članice izvijestile u skladu s člankom 2. stavkom 3. Odluke Komisije 2009/767/EZ. Europska Komisija održava ovo web-mjesto kao sredstvo za postizanje interoperabilnosti koje je napravljeno kako bi olakšalo praktičnu primjenu nacionalnih pouzdanih popisa. Naš je cilj ove informacije održavati pravodobnim i točnim. Ukaže li nam se na pogreške, pokušat ćemo ih otkloniti. No, Komisija ne preuzima nikakvu odgovornost za sadržaj nacionalnih pouzdanih popisa, jer su za njega odgovorne isključivo države članice. Cilj nam je smetnje uzrokovane tehničkim pogreškama svesti na minimum. Međutim, postoji mogućnost da su neki podaci i informacije na našim stranicama izrađeni ili strukturirani u datotekama ili formatima koji nisu bez pogrešaka te stoga ne možemo jamčiti da će se naše usluge odvijati bez prekida ili da takvi problemi neće na neki drugi način utjecati na njih. Europska Komisija ne preuzima nikakvu odgovornost u vezi s problemima koji nastanu zbog uporabe ovih stranica ili bilo kojih povezanih vanjskih stranica. Ovom se izjavom o ograničenju odgovornosti ne ograničava odgovornost Europske Komisije u slučaju kršenja uvjeta propisanih primjenjivim nacionalnim pravom niti se isključuje njezina odgovornost u slučajevima u kojima u skladu s tim pravom to nije moguće. ++ ++ 65535 ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ https://www.signatur.rtr.at/currenttl.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ AT ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Rundfunk und Telekom Regulierungs-GmbH ++ Rundfunk und Telekom Regulierungs-GmbH ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/AT ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://tsl.belgium.be/tsl-be.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ BE ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ FPS Economy, SMEs, Self-employed and Energy - Quality and Safety ++ SPF Economie, PME, Classes moyennes et Energie - Qualité et Sécurité ++ FOD Economie, KMO, Middenstand en Energie - Kwaliteit en Veiligheid ++ FÖD Wirtschaft, KMU, Mittelstand und Energie - Qualität und Sicherheit ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/BE ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://crc.bg/files/_bg/TSL-CRC-BG-signed.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ BG ++ ++ ++ application/pdf ++ ++ ++ ++ Communications Regulation Commission ++ Комисия за регулиране на съобщенията ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/BG ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://crc.bg/files/_bg/TSL-CRC-BG-signed.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ BG ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Communications Regulation Commission ++ Комисия за регулиране на съобщенията ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/BG ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.mcw.gov.cy/mcw/dec/dec.nsf/all/B28C11BBFDBAC045C2257E0D002937E9/$file/TSL-CY-sign.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ CY ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Department of Electronic Communications ++ Τμήμα Ηλεκτρονικών Επικοινωνιών ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/CY ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIFqDCCBJCgAwIBAgIEAKhcEzANBgkqhkiG9w0BAQsFADCBtzELMAkGA1UEBhMCQ1oxOjA4BgNVBAMMMUkuQ0EgLSBRdWFsaWZpZWQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHksIDA5LzIwMDkxLTArBgNVBAoMJFBydm7DrSBjZXJ0aWZpa2HEjW7DrSBhdXRvcml0YSwgYS5zLjE9MDsGA1UECww0SS5DQSAtIEFjY3JlZGl0ZWQgUHJvdmlkZXIgb2YgQ2VydGlmaWNhdGlvbiBTZXJ2aWNlczAeFw0xNTA2MDMxMTI4NTZaFw0xNjA2MDIxMTI4NTZaMH4xCzAJBgNVBAYTAkNaMR0wGwYDVQQDDBRJbmcuIFJhZG9tw61yIMWgaW1lazE3MDUGA1UECgwuTWluaXN0cnkgb2YgdGhlIEludGVyaW9yIG9mIHRoZSBDemVjaCBSZXB1YmxpYzEXMBUGA1UEBRMOSUNBIC0gMTAzNDQ4MjEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCawspfUgMcHE6NKJmbpUU0o3e1+qJPJnw7MMd/c+aSummSNw8DnoYrsjQmC7Iii1U4JIytzlYwJ/uOkvT7XG3z7dkkl9395RC8gVMnarGOIrkDbRo5PbzKUfKa92faFvbnn2uvHPZDIreEdHvX35hR4BOdaeH29gSmSzBhDvZ4xnH6uFyh/SX5cIv/5QJRHz399ZlfA4K9cZG2aAMJzh968ctQqxL7jjAmMI3Re2GZFLHO9J5dYkFmcHgty1Qp/PYUV473m2V8Y3nZi1imi9gSVxuERMjM+0BOUHWd1pyGCcqSSMN86jqNESJFW31fzR7fstd08UG5MPRj0/m8NpfRAgMBAAGjggHyMIIB7jARBgNVHSUECjAIBgYEAJE3AwAwgd8GA1UdIASB1zCB1DCB0QYNKwYBBAGBuEgBAR4DATCBvzCBvAYIKwYBBQUHAgIwga8agaxUZW50byBrdmFsaWZpa292YW55IGNlcnRpZmlrYXQgamUgdnlkYW4gcG9kbGUgemFrb25hIENlc2tlIHJlcHVibGlreSBjLiAyMjcvMjAwMCBTYi4gdiBwbGF0bmVtIHpuZW5pL1RoaXMgaXMgcXVhbGlmaWVkIGNlcnRpZmljYXRlIGFjY29yZGluZyB0byBDemVjaCBBY3QgTm8uIDIyNy8yMDAwIENvbGwuMIGBBgNVHR8EejB4MCagJKAihiBodHRwOi8vcWNybGRwMS5pY2EuY3ovcWljYTA5LmNybDAmoCSgIoYgaHR0cDovL3FjcmxkcDIuaWNhLmN6L3FpY2EwOS5jcmwwJqAkoCKGIGh0dHA6Ly9xY3JsZHAzLmljYS5jei9xaWNhMDkuY3JsMAkGA1UdEwQCMAAwDgYDVR0PAQH/BAQDAgZAMBgGCCsGAQUFBwEDBAwwCjAIBgYEAI5GAQEwHwYDVR0jBBgwFoAUecvQI+k6Z3CRdE/TUeLgIP3hKPswHQYDVR0OBBYEFC6CFzYHEofr962LdU1w+xy0PFJXMA0GCSqGSIb3DQEBCwUAA4IBAQCB2lBGEdViXN7Q3r5voDGlZGE4kzeK3+eXLlyDIFEPrRV/MeIN5+Rtk7MCWZmHUbbzFoJzsqvBG5yBY5uNlhJZZ4Ee7xrHykrxpCx4CrD+hkqLNeaI+IocTxMG/4y0adaEx7ooVZH7+elE+0WVIBzPPuWH298zVrdS6LKNAjodqFWK8R84lLZPjh+lFHciznwgaKOz+JKvBuBQYznP1DAvQ21Cspe6lB9XpVQA9O0mwoCiXD6buW1COz2MGwMLwn6k/eJKfEqWzOa8cdYm2GpdxAAnU9XE1aLnbjHBBlAf6uZ+/YOV8JgiDEOCCVmnt9aPZZmX8HIqh8FxC5ykQ46T ++ ++ ++ ++ ++ MIIFDzCCA/egAwIBAgIBATANBgkqhkiG9w0BAQsFADCBtjELMAkGA1UEBhMCQ1oxDzANBgNVBAcTBlByYWd1ZTE3MDUGA1UEChMuTWluaXN0cnkgb2YgdGhlIEludGVyaW9yIG9mIHRoZSBDemVjaCBSZXB1YmxpYzE3MDUGA1UEAxMuTWluaXN0cnkgb2YgdGhlIEludGVyaW9yIG9mIHRoZSBDemVjaCBSZXB1YmxpYzEkMCIGCSqGSIb3DQEJARYVcmFkb21pci5zaW1la0BtdmNyLmN6MB4XDTE0MDMwMTA1MjAwMFoXDTE5MDMwMTA1MjAwMFowgbYxCzAJBgNVBAYTAkNaMQ8wDQYDVQQHEwZQcmFndWUxNzA1BgNVBAoTLk1pbmlzdHJ5IG9mIHRoZSBJbnRlcmlvciBvZiB0aGUgQ3plY2ggUmVwdWJsaWMxNzA1BgNVBAMTLk1pbmlzdHJ5IG9mIHRoZSBJbnRlcmlvciBvZiB0aGUgQ3plY2ggUmVwdWJsaWMxJDAiBgkqhkiG9w0BCQEWFXJhZG9taXIuc2ltZWtAbXZjci5jejCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO3PmohbCGpwe/1BnjkOsTnULvFONX0/hUAFi7wJ4xSK9cShj2OLxJEa56tIdD7UBz5PMqsEhaGTH20/7qkT92uk/F+sZdveVbEha5VlVyAVGvO2ReVCC0e7NxJqyNVGzyFxIFfcIAO2aTQpu1+kAGRmPoqES+7zO9J2L1s5C0H8fzvCNEEA9k0aBigstyxrlWE3odzLXDlAYTT5fcMIZkuAOe7dbK4yOFDZpe/5yCG4PdiD021NIVjA/vm2t092uEcBzqIcaeziusWMn2EAACD7d9wkP538j5htpldsSFUPgatc2rkv96vk9gwPdR0IxUsUaEhxjGuN+p6h3puoFxECAwEAAaOCASQwggEgMAkGA1UdEwQCMAAwHQYDVR0OBBYEFFGuBukXCJgG9hD9xpOCmxGMW4BoMIHjBgNVHSMEgdswgdiAFFGuBukXCJgG9hD9xpOCmxGMW4BooYG8pIG5MIG2MQswCQYDVQQGEwJDWjEPMA0GA1UEBxMGUHJhZ3VlMTcwNQYDVQQKEy5NaW5pc3RyeSBvZiB0aGUgSW50ZXJpb3Igb2YgdGhlIEN6ZWNoIFJlcHVibGljMTcwNQYDVQQDEy5NaW5pc3RyeSBvZiB0aGUgSW50ZXJpb3Igb2YgdGhlIEN6ZWNoIFJlcHVibGljMSQwIgYJKoZIhvcNAQkBFhVyYWRvbWlyLnNpbWVrQG12Y3IuY3qCAQEwDgYDVR0PAQH/BAQDAgZAMA0GCSqGSIb3DQEBCwUAA4IBAQDS9g+4r+i0yu3dHp1L3K8nrdexpw9qTOgiNpydf2uDHltlnRVgXuyn38KBhyI89uDYILN32owBbMuygu04sehRB/sfcWMpeWbH7KAneShUaZijpD4UiUdoLHROEoxhC9hCH2Ygu4phZN4Wk+xIQ9LtiAIQsjdncIrUPd0+NGsAdedClDw9rjwAatohAHUTQEHzFolL7KVzj2ZtmeguR5t+QBeRchgoL4u5zE7B4uaH/zA00AKI1p5oVPekF29PGA0PVmj1BuLb5q845tNDVrprxjL8lcvVTobt6MVDAogwsnxPwY8V9cnWg1qxqeU72FIRbwy4EgkbpAHayyk9xAU1 ++ ++ ++ ++ http://tsl.gov.cz/publ/TSL_CZ.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ CZ ++ ++ ++ application/pdf ++ ++ ++ ++ Ministry of the Interior of the Czech Republic ++ Ministerstvo vnitra České republiky ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/CZ ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://tsl.gov.cz/publ/TSL_CZ.xtsl ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ CZ ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Ministry of the Interior of the Czech Republic ++ Ministerstvo vnitra České republiky ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/CZ ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ https://www.nrca-ds.de/st/TSL-XML.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ DE ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Federal Network Agency ++ Bundesnetzagentur ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/DE ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.digst.dk/~/media/Files/Loesninger-og-infrastruktur/NemID/HumanReadabletldkxml.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ DK ++ ++ ++ application/pdf ++ ++ ++ ++ Danish Agency for Digitisation // CVR:34051178 ++ Digitaliseringsstyrelsen // CVR:34051178 ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/DK ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.digst.dk/~/media/Files/Loesninger-og-infrastruktur/NemID/TLDK.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ DK ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Digitaliseringsstyrelsen // CVR:34051178 ++ Danish Agency for Digitisation // CVR:34051178 ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/DK ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://sr.riik.ee/tsl/estonian-tsl.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ EE ++ ++ ++ application/pdf ++ ++ ++ ++ Estonian Technical Surveillance Authority ++ Tehnilise Järelevalve Amet ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EE ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://sr.riik.ee/tsl/estonian-tsl.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ EE ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Estonian Technical Surveillance Authority ++ Tehnilise Järelevalve Amet ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EE ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ https://www.eett.gr/tsl/EL-TSL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ EL ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Hellenic Telecommunications and Post Commission, EETT ++ Εθνική Επιτροπή Τηλεπικοινωνιών και Ταχυδρομείων - EETT ++ EETT ++ EETT ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EL ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ https://sede.minetur.gob.es/Prestadores/TSL/TSL.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ ES ++ ++ ++ application/pdf ++ ++ ++ ++ MINISTRY OF INDUSTRY ENERGY AND TOURISM ++ MINISTERIO DE INDUSTRIA ENERGIA Y TURISMO ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/ES ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIDyzCCArOgAwIBAgIJAL6B32RxtXxMMA0GCSqGSIb3DQEBCwUAMH4xKzApBgNVBAMTIlNQQU5JU0ggVFJVU1QgTElTVCBTQ0hFTUUgT1BFUkFUT1IxCzAJBgNVBAYTAkVTMTIwMAYDVQQKEylNSU5JU1RFUklPIERFIElORFVTVFJJQSBFTkVSR0lBIFkgVFVSSVNNTzEOMAwGA1UECxMFU0VUU0kwHhcNMTQwMzExMTIzMjUyWhcNMTkwMzExMTIzMjUyWjB+MSswKQYDVQQDEyJTUEFOSVNIIFRSVVNUIExJU1QgU0NIRU1FIE9QRVJBVE9SMQswCQYDVQQGEwJFUzEyMDAGA1UEChMpTUlOSVNURVJJTyBERSBJTkRVU1RSSUEgRU5FUkdJQSBZIFRVUklTTU8xDjAMBgNVBAsTBVNFVFNJMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAocIbYfDYGdw239aAMo08eEfZvn4ACaaYkHLd80Flq6ecAk/aDuwEnmldiBv8yTNdw9/ZqsIy+x0wB09a+9lZDDyq7dCqP8CYZzJW+hYPN4IhqRLDypVxYIKUHu4TYOmAIKhEnUOnY/OrpAtErhFMaA3IwmgMSaJ8vaxop/KcSnKlx+KazoEaPV+yIX6xeCtCzghq0hjjqU0Hlg9+hyna0TRo6K4ars7MceWl1ameMaBiRbAhxINnoEvLEuOx79/kafGNLDAP0ThGhbK9q7hEBylydzY+wVLgM5yCYZdcLllHkt5Fr2zxNU8FH2Jnl+83qbdZDPFYb+HMWZfhHNkz8QIDAQABo0wwSjAJBgNVHRMEAjAAMAsGA1UdDwQEAwIGQDAdBgNVHQ4EFgQUNab+5BisBkvbZfGGr5bY9s0pxT4wEQYDVR0lBAowCAYGBACRNwMAMA0GCSqGSIb3DQEBCwUAA4IBAQCQNx9/TYPACsgOJzBx06EcOHnvslBilvlMghtaQLygoatFTpaeX0JqFuYAZhfGF28k8eC3ENxUYPa30Zh4ZWRm0QlmLjBKBB/z3jJQIq7b0kqf6H8Vb/vvvSNsoWBwnWzv9X8t9D+S9TK5844dCtSvhlkTBlJYXZ+N9cbz0rk6GELzwY33VOSygcj0hyib4+Xb8dxX15omjVS+qk3FyWCq3DPibwKzD5irJL7EfRFkDoWwRVzaaeDCOJqFWeIpfY7/NocB1fbkvx7wMFzZ9xAFgPLirxi6ZVu0YKoDQq95HnvEzDMdoBUdAK+WtS1a3zJIjNAqb6YE9w4cbPpUXWUs ++ ++ ++ ++ ++ MIIDyzCCArOgAwIBAgIJAKWF81P5BqylMA0GCSqGSIb3DQEBCwUAMH4xKzApBgNVBAMTIlNQQU5JU0ggVFJVU1QgTElTVCBTQ0hFTUUgT1BFUkFUT1IxCzAJBgNVBAYTAkVTMTIwMAYDVQQKEylNSU5JU1RFUklPIERFIElORFVTVFJJQSBFTkVSR0lBIFkgVFVSSVNNTzEOMAwGA1UECxMFU0VUU0kwHhcNMTQwOTExMTEzODEyWhcNMTkwOTExMTEzODEyWjB+MSswKQYDVQQDEyJTUEFOSVNIIFRSVVNUIExJU1QgU0NIRU1FIE9QRVJBVE9SMQswCQYDVQQGEwJFUzEyMDAGA1UEChMpTUlOSVNURVJJTyBERSBJTkRVU1RSSUEgRU5FUkdJQSBZIFRVUklTTU8xDjAMBgNVBAsTBVNFVFNJMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3Tk6ThJZ/uBAqg8c0PWtC+xl8XQ4RyELaZSwcbaBJlyr/dj288QWjIBtOz+kZgEM7mINlTNW4/FVHNeJfY8dzUBdkhTccx7W3yK720U83DZp+OhBS47+T4/6krQPZ2uMhPI+U7sf7qcOVJ0AjxF2vrrFqTzm1pJ8TE1ys482b8s0o3A9ugLR28UcQhhUUPA2hMkEwzIY9TL1Umrip2XtlJT3N1IOKTMQpiqTJL5laF6WWVRtcTv461uePiohd9ZhBjOXstcaEczCOFeE7Zh6l9uSCwW78ool8b2VezEh5ZDaGv/iSxxPIoiOkd5/9yElqy3JLagJKs8LpTp33WvGhQIDAQABo0wwSjAJBgNVHRMEAjAAMAsGA1UdDwQEAwIGQDAdBgNVHQ4EFgQUkh8fb5AKQbc7caUcVmmK7FH1vUwwEQYDVR0lBAowCAYGBACRNwMAMA0GCSqGSIb3DQEBCwUAA4IBAQDJjFeyy4YBakY61DvbuuCb6FlrIhSbNPH2/o7fX4Ve+G+2WRJOEkE1dIezvnVyOvNnym66rngcZXQDoFMPK5SOQm4nNXrUDd5rWM3c84sHba7UuEdVgC9ZW0YR44/9bVxIHOBSXUDcWbUu6nVStZpNy/Gn11iEIRSU4TsE8YJK5cjZ/xaigYDt01BlLu34v60JoClwlbHeuPgHhUwPyGD8sD4g9+QQhsouv8pG9gbT5+KttS63jB/SmrWLAJOmg97WI/2jkSObJ8zwn0jVJdZtBGbiN2I3+wv1F+FvRZH4jdpE2P7aimucx5iMng+o/dKzFGThn5DwVa5pvplf8IEs ++ ++ ++ ++ https://sede.minetur.gob.es/Prestadores/TSL/TSL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ ES ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ MINISTRY OF INDUSTRY ENERGY AND TOURISM ++ MINISTERIO DE INDUSTRIA ENERGIA Y TURISMO ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/ES ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIGLjCCBBagAwIBAgIFFNaV71owDQYJKoZIhvcNAQENBQAwgYwxCzAJBgNVBAYTAkZJMREwDwYDVQQHDAhIZWxzaW5raTE0MDIGA1UECgwrRmlubmlzaCBDb21tdW5pY2F0aW9ucyBSZWd1bGF0b3J5IEF1dGhvcml0eTE0MDIGA1UEAwwrRmlubmlzaCBDb21tdW5pY2F0aW9ucyBSZWd1bGF0b3J5IEF1dGhvcml0eTAeFw0xNDAxMjkwMDAwMDBaFw0xNzAxMjkwMDAwMDBaMIGMMQswCQYDVQQGEwJGSTERMA8GA1UEBwwISGVsc2lua2kxNDAyBgNVBAoMK0Zpbm5pc2ggQ29tbXVuaWNhdGlvbnMgUmVndWxhdG9yeSBBdXRob3JpdHkxNDAyBgNVBAMMK0Zpbm5pc2ggQ29tbXVuaWNhdGlvbnMgUmVndWxhdG9yeSBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDlBRvA314qdToNxTWlXnEL8BwrU7AE0FkYQdWwl9Pe8+3+pzZ1y1vTGgDNVX5qm6taGtMyKwLCuZ4HXUs1tV1LmKE4GHm49R5IjcxCocGyUmIQOzAlYEG087ol/nVuG3bVyOOv/OID8/drj13QvSmhkOXtfHKo0meF/HiGHO9oTBshQpdhCDCxcP+ERh92peCcn1XdO/fCIWdEfIxfyPvf0ktdjAQyeRE7PUusRAdVfPppW6x2+2dMjFwN6pL+eiTw8QX79mm47DVR9nxpvzhvO8JqniG7Oog9GdQF/kGK7AU7gmJq+mp+pl8S9dpooxg/JbmxpGyceHeIWtmqEv4rcI/futBjJ6W8xsMKu8Bhb/m8Fx9oiXCqYf/3nsDBtCnhF8zNxW65X5sqcxzC8j1WrTNMIZdIUsozZ4uWVsdVHnC913HmPg9iZj62t0d6BrEMe+OPyj9+2Klx2wBE2JoHK+7X3I3HWubTNqxRV2YpcTTzy/NoDlVszJh0gQywaYivciEDeTMufpRtAX21NdwzDx120x80WeZg7yiNLP9cdnxcFaUD/6JViqxjTfU68JvHto5f/Q4wgB1wtCfU2/LQyjoLXrZGgEoMhvOAwQzr0tRjL9Rob0kcghR9rJXZ3mlKJcjYFAFTiKusxQMWyZ00Sqw0VWlTnYrMtC42r/kaUwIDAQABo4GUMIGRMB0GA1UdDgQWBBStsWQJG5o1vkTC1ZRN7YIu/oMLMjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSAECjAIMAYGBFUdIAAwLwYDVR0RBCgwJoENdHNsQGZpY29yYS5maYYVaHR0cDovL3d3dy5maWNvcmEuZmkvMBEGA1UdJQQKMAgGBgQAkTcDADANBgkqhkiG9w0BAQ0FAAOCAgEALIdGuCE+3QSRFO1G3Bckk5lzk5fLo3tuhQnG3sQUkLjN7RKU4kHLqxSBw5Xveg08gPbEQJUWllr+ggwEZGT4Pb5U+0A32uO9l+FzHTU08VuFNGJanGnl7yqpNDOfoJ+vEjobTJXrHztPHxIenM6Zi3vXq8lHK3kBMjwDDS7tONP8Buj5QZbTLcrqQaw2GnA1qD1jEG+HL5+DAqtz/b7lM3F2yaaKsKRA0QEELQhschxyXF5H0pwTU7wHHN5vyNsFtq4KvzR+nq8kdDpbH1UnS0sS6MsttPdDePwXWGwrldxW4qHH0ev0RdC5oUnF+Z+D8oAhRP7ZsRlBlJTVNyeMSZuw3N9tB2Rwde0CSkWpconGDmmt8u8rxYRrgfqWU1tlrPr3KA3GUA11knawTL09R8v0ts3xAQvWKZl8C3GwUkHdHr4Whno8gucptP5zq/6Tu6KWe8jTAbjLguj8ouEnzjutXEncCIXel0+YIUKjV0OeH3mKbg4mx8WAL0Ui1uNsPQGa7od0DgsMV6aOKZgHj4ne+UImn9sVJU2lM5ZqPNe5uhOj/dSrxpCAp++VRJhEr2x+LQe1r+AWE/xFsX1jK7S/YYgnFYF6oDt+k4pRZ71yKS0LtxvkJyo69xLNHF6ef2iCZ0VQLMmZy2O5je0BVeBX0MlhX5rjqr8gPBWHHaI= ++ ++ ++ ++ ++ MIIGLjCCBBagAwIBAgIFFF1sOa8wDQYJKoZIhvcNAQENBQAwgYwxCzAJBgNVBAYTAkZJMREwDwYDVQQHDAhIZWxzaW5raTE0MDIGA1UECgwrRmlubmlzaCBDb21tdW5pY2F0aW9ucyBSZWd1bGF0b3J5IEF1dGhvcml0eTE0MDIGA1UEAwwrRmlubmlzaCBDb21tdW5pY2F0aW9ucyBSZWd1bGF0b3J5IEF1dGhvcml0eTAeFw0xNDAxMjkwMDAwMDBaFw0xNzA1MjkwMDAwMDBaMIGMMQswCQYDVQQGEwJGSTERMA8GA1UEBwwISGVsc2lua2kxNDAyBgNVBAoMK0Zpbm5pc2ggQ29tbXVuaWNhdGlvbnMgUmVndWxhdG9yeSBBdXRob3JpdHkxNDAyBgNVBAMMK0Zpbm5pc2ggQ29tbXVuaWNhdGlvbnMgUmVndWxhdG9yeSBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCj/Np9sC+sShirNn7st+aMFctbBTuWZJiit/jHekczvWKpMWt7JjWieZESkdcSEfDN8Ziu8a0rLsBgcKGKdNxW1EapJg5GolE+0P01kglCxQptOqUkc8t943p1TOsDx/u1vSHjnaV5SyCuqhbBaJOTZrOGePPyaOMKvQ/C/EqBuolfYfEC1TrrC7T0NA9t0F3MtKFvcrFPfEgOPmqcqHJfnOhb9ip4HSzOn09qUltJKsmZ/h9v2qcUdmjN6H7okMec1Pjnf8M5oEZk0Mr++ZAEOHQDfcN9rzVKdlUH2uckwHfOF0BYcdpyn7jry7BA9lDM8k/BnNmE+/hDYUGWODF8nw9qqcWgTMBngAvXeGAoZEq7L4Y/n/jASaHBaMrPB5+FFfM3bQp1yu94aPaVemuipG3tVOLwnJR7ITQXbVjwhK+oVc3OV7lMBcnumdrwPlQTDv2kYNDE9+agZsIldb86nAzF7KvT3E9BYW+Ki8OJrhpiCkZEOD6VjMOBWYXpB1t9QoQP8HNX8++3F0n637w9DfyD8EbbhPD9MmyYe97//jzl8dVJVbKp04EM+dYibS7t3Tv9vTXP/ZrBtXlV++FN3c7X4MFmeS1BqmGGcWENLgTy5+wal35c/Tl8i4w/9DsiOweUTtApE4lbd0YjYDlRtpIZHv5rWxzYKZf5QyvJAwIDAQABo4GUMIGRMB0GA1UdDgQWBBTyJSvYrLIitCRLQ7chsEd0fIW2GjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSAECjAIMAYGBFUdIAAwLwYDVR0RBCgwJoENdHNsQGZpY29yYS5maYYVaHR0cDovL3d3dy5maWNvcmEuZmkvMBEGA1UdJQQKMAgGBgQAkTcDADANBgkqhkiG9w0BAQ0FAAOCAgEARutGlCEPO6KVboOz76YpIRzAtFsAdztsNpNqnalAorAeN3Wnvm2fGiNR+zpkEE91Iqv79WNGNY9clADQTmksmUubHH9jSky9nQbM7wmEqcLAF8jGYQz0Pvya4p/3rZ2Q6b46wyb4E+GWyYAqp35nEizIf+iNnPuCrFjWjsVnhZWYMbNO/4PGBsQTSv6t6q7zAp21bw5slYbAfiYvLxR017btGq29sMRsei1olbleLHMM+L+eepU0fmXrwQEOJgqU2H8xw1NPLJu8ZVq8oM/nGPEzweKoCE0/PWjoVH1GryNmN+tz55Z7VejkdxHEwjnRJABC+HLjqF5awLUxXbwC6qZ7UzCEnf0AygStNi1PFf4Xn6iN8qP1tSHxSdOj25yQ3Ovqq/GERLlW/Im7oNBqXJDuoI0x7VeQRKbRflS8fyUbwSbg7TQo0yoSefHevk+bXF74NLB3kh2Leu/i6wPY3A5X4sucESYJmVUqRt6E32EIvdy/dPZtLDGqlqHMxJmXGdehSJ1UOUXgYmAVT+yRVOYTROBkqk3VzdkuDrzHiYGO7x7t+XyI9I/jQJTXvPNqWq3JtZDsyxI8nHAr1MKcm8FnZr3DL/RUOhxRTPCRX9BtXehy+izYdaWb/PcS6LtSFWrXvQLXGLFzgVfjBDWsLS9XfLylZTaox/BBp2JjCyY= ++ ++ ++ ++ https://www.viestintavirasto.fi/attachments/HumanReadable_TSL-Ficora.xml.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ FI ++ ++ ++ application/pdf ++ ++ ++ ++ Finnish Communications Regulatory Authority ++ Viestintavirasto ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/FI ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ https://www.viestintavirasto.fi/attachments/TSL-Ficora.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ FI ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Finnish Communications Regulatory Authority ++ Viestintavirasto ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/FI ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIEfjCCA2agAwIBAgISESFFIhi7LsGOut4p3YeL6MH7MA0GCSqGSIb3DQEBCwUAMIGUMQswCQYDVQQGEwJGUjEwMC4GA1UECgwnQWdlbmNlIE5hdGlvbmFsZSBkZXMgVGl0cmVzIFPDqWN1cmlzw6lzMRcwFQYDVQQLEw4wMDAyIDEzMDAwMzI2MjE6MDgGA1UEAwwxQXV0b3JpdMOpIGRlIGNlcnRpZmljYXRpb24gcG9ydGV1ciBBQUUgMyDDqXRvaWxlczAeFw0xNDAzMjYxNTEwMTJaFw0xNzAzMjYxNDEwMTJaMH0xCzAJBgNVBAYTAkZSMS4wLAYDVQQKEyVBZ2VuY2UgTmF0aW9uYWxlIGRlcyBUaXRyZXMgU2VjdXJpc2VzMRcwFQYDVQQLEw4wMDAyIDEzMDAwMzI2MjElMCMGA1UEAxMcTGF1cmVudCBWb2lsbG90IDIzMTAwMDExNTN2bDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKjtrKgkGxUMgxtItb0taMxoKdUFZIo7mUnhuWa5ozlnHvF1QZ+GlrgUCcRZtvMkzRkjzzsduwe3d0pXTXbddjs2CPD5nnyXpVCw0RG9tgBSwSkNMB2BFPDeNoShLNh6GgJ5pYpfPj+Xj4AG9s4wZAPtNBXNoZj25lK85XPbNCwroOXStJVqWryr6A8Wa/IIBui3uxyQcgEhQTK0TmXRsnWOI6YCOhVeQm7Nj8yelWu6j4zqqf9IoFbn8U7YQ+kgRAhZjpUlQBiXRzyCAPYZn/GE7v8xAodEppwpQ3MEwUMul++ENVixJnPhCTK+1DXuk33FC5eh8l3pJsWMfJFWVAECAwEAAaOB3zCB3DAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGQDAXBgNVHSAEEDAOMAwGCiqBegGBSAIDAQEwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybC5hbnRzLmdvdXYuZnIvYW50c3YyL2FjX3BvcnRldXJfYWFlLmNybDAiBggrBgEFBQcBAwQWMBQwCAYGBACORgEBMAgGBgQAjkYBBDAdBgNVHQ4EFgQUO8vG9yPdo2CH7zThOxpkoirLy/IwHwYDVR0jBBgwFoAUrS1vABmDqTgbf4cj78PA932oJUkwDQYJKoZIhvcNAQELBQADggEBAKqCs2JJe0jjmqQUARdsLDAB27S9glO6UHWprnkUG3OoJRRnDewACyo4MTdst2WgB6kAuQ80lMsTGCpRTN4TppbZDvHtcv6QsAV+878m0zdzBfCLp8F9pMxQaQZNFjBD3o0TsGz4plY1KCgHBviSRqwdAT7SqY68XAjMj+e3WhJ0693nEMmurXMpqe2OE1s5Y5BExlxhffImyrhDzry4/V0ZEnAb99DW0zr+WTNZFlkpz9CwZgPWTpuGHagU8/aFCJ2hbrmYZYsPhHMBLbBKfphJ9rrojQmY7SWpvd7ygGIfi9migV7EFMq/v8XyXuwFq1jt7QgturXnb39dgU7MT9A= ++ ++ ++ ++ http://references.modernisation.gouv.fr/sites/default/files/TSL-FR_xml.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ FR ++ ++ ++ application/pdf ++ ++ ++ ++ Directorate General for State Modernisation ++ Direction Générale de la Modernisation de l'Etat (DGME ) ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/FR ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIEfjCCA2agAwIBAgISESFFIhi7LsGOut4p3YeL6MH7MA0GCSqGSIb3DQEBCwUAMIGUMQswCQYDVQQGEwJGUjEwMC4GA1UECgwnQWdlbmNlIE5hdGlvbmFsZSBkZXMgVGl0cmVzIFPDqWN1cmlzw6lzMRcwFQYDVQQLEw4wMDAyIDEzMDAwMzI2MjE6MDgGA1UEAwwxQXV0b3JpdMOpIGRlIGNlcnRpZmljYXRpb24gcG9ydGV1ciBBQUUgMyDDqXRvaWxlczAeFw0xNDAzMjYxNTEwMTJaFw0xNzAzMjYxNDEwMTJaMH0xCzAJBgNVBAYTAkZSMS4wLAYDVQQKEyVBZ2VuY2UgTmF0aW9uYWxlIGRlcyBUaXRyZXMgU2VjdXJpc2VzMRcwFQYDVQQLEw4wMDAyIDEzMDAwMzI2MjElMCMGA1UEAxMcTGF1cmVudCBWb2lsbG90IDIzMTAwMDExNTN2bDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKjtrKgkGxUMgxtItb0taMxoKdUFZIo7mUnhuWa5ozlnHvF1QZ+GlrgUCcRZtvMkzRkjzzsduwe3d0pXTXbddjs2CPD5nnyXpVCw0RG9tgBSwSkNMB2BFPDeNoShLNh6GgJ5pYpfPj+Xj4AG9s4wZAPtNBXNoZj25lK85XPbNCwroOXStJVqWryr6A8Wa/IIBui3uxyQcgEhQTK0TmXRsnWOI6YCOhVeQm7Nj8yelWu6j4zqqf9IoFbn8U7YQ+kgRAhZjpUlQBiXRzyCAPYZn/GE7v8xAodEppwpQ3MEwUMul++ENVixJnPhCTK+1DXuk33FC5eh8l3pJsWMfJFWVAECAwEAAaOB3zCB3DAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGQDAXBgNVHSAEEDAOMAwGCiqBegGBSAIDAQEwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybC5hbnRzLmdvdXYuZnIvYW50c3YyL2FjX3BvcnRldXJfYWFlLmNybDAiBggrBgEFBQcBAwQWMBQwCAYGBACORgEBMAgGBgQAjkYBBDAdBgNVHQ4EFgQUO8vG9yPdo2CH7zThOxpkoirLy/IwHwYDVR0jBBgwFoAUrS1vABmDqTgbf4cj78PA932oJUkwDQYJKoZIhvcNAQELBQADggEBAKqCs2JJe0jjmqQUARdsLDAB27S9glO6UHWprnkUG3OoJRRnDewACyo4MTdst2WgB6kAuQ80lMsTGCpRTN4TppbZDvHtcv6QsAV+878m0zdzBfCLp8F9pMxQaQZNFjBD3o0TsGz4plY1KCgHBviSRqwdAT7SqY68XAjMj+e3WhJ0693nEMmurXMpqe2OE1s5Y5BExlxhffImyrhDzry4/V0ZEnAb99DW0zr+WTNZFlkpz9CwZgPWTpuGHagU8/aFCJ2hbrmYZYsPhHMBLbBKfphJ9rrojQmY7SWpvd7ygGIfi9migV7EFMq/v8XyXuwFq1jt7QgturXnb39dgU7MT9A= ++ ++ ++ ++ http://references.modernisation.gouv.fr/sites/default/files/TSL-FR.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ FR ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Directorate General for State Modernisation ++ Direction Générale de la Modernisation de l'Etat (DGME ) ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/FR ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.mingo.hr/public/trgovina/TSL-HR.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ HR ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Ministry of the economy ++ Ministarstvo gospodarstva ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/HR ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.nmhh.hu/tl/pub/HU_TL.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ HU ++ ++ ++ application/pdf ++ ++ ++ ++ National Media and Infocommunications Authority, Hungary ++ Nemzeti Média- és Hírközlési Hatóság ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/HU ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.nmhh.hu/tl/pub/HU_TL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ HU ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ National Media and Infocommunications Authority, Hungary ++ Nemzeti Média- és Hírközlési Hatóság ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/HU ++ ++ ++ ++ ++ ++ ++ ++ ++ MIICwTCCAiqgAwIBAgIJAJXDVBeDkXK3MA0GCSqGSIb3DQEBBQUAMHQxCzAJBgNVBAYTAklFMQ8wDQYDVQQHEwZEdWJsaW4xHjAcBgNVBAoTFURlcGFydG1lbnQgb2YgRmluYW5jZTENMAsGA1UECxMEQ01PRDElMCMGA1UEAxMcRXZlbnQgUHVibGlzaGluZyBJbnRlcm5hbCBDQTAeFw0xMDA3MDUxNDI3MjVaFw0yMDA3MDIxNDI3MjVaMFQxCzAJBgNVBAYTAklFMR4wHAYDVQQKExVEZXBhcnRtZW50IG9mIEZpbmFuY2UxDTALBgNVBAsTBENNT0QxFjAUBgNVBAMTDVRhZGdoIE8nTGVhcnkwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAL2eMyRkdde3Brd1N6gh1inG5j8gRbYQ6T/2BwiUlStHEeP/DmKcWKghQKEs6SBMSY/HGZw3ffrqe8tbzDBDeM0Z/F4xgSgYpcVL2QKTtQx4Wv61TESxNH7w5Jc9K2ZpeZz2bAcT2jrFdvBNcwtZ8hNyRsny2xNI8YuvpaZiLw1LAgMBAAGjezB5MAkGA1UdEwQCMAAwLAYJYIZIAYb4QgENBB8WHU9wZW5TU0wgR2VuZXJhdGVkIENlcnRpZmljYXRlMB0GA1UdDgQWBBTxbALrhi0E0ebV6LpbNTNCvGXorzAfBgNVHSMEGDAWgBRfcPgfLU4sDzxy8r51M+iEDQIcjTANBgkqhkiG9w0BAQUFAAOBgQB4UDYDlveQZFbeN/za2UxQs+RqVZ9u+vT+lG4c+ecxmuFb6vpREjM28WciOAzzJ6hXcXxSZHgYbtVcL6F0JcPBT1HCFGTuHOWlBXzKL4zsuUmMYMPKD+2OojFDmAAvqlsqJT7bWA22EpxRHSf29twbbUuOw04rDAWh6RPDhg7zRg== ++ ++ ++ ++ ++ MIIC5DCCAk2gAwIBAgIJAJXDVBeDkXNiMA0GCSqGSIb3DQEBBQUAMHQxCzAJBgNVBAYTAklFMQ8wDQYDVQQHEwZEdWJsaW4xHjAcBgNVBAoTFURlcGFydG1lbnQgb2YgRmluYW5jZTENMAsGA1UECxMEQ01PRDElMCMGA1UEAxMcRXZlbnQgUHVibGlzaGluZyBJbnRlcm5hbCBDQTAeFw0xNDA2MTYwOTU2MTJaFw0yNDA2MTMwOTU2MTJaMHcxCzAJBgNVBAYTAklFMTQwMgYDVQQKEytEZXBhcnRtZW50IG9mIFB1YmxpYyBFeHBlbmRpdHVyZSBhbmQgUmVmb3JtMRowGAYDVQQLExFHb3Zlcm5tZW50IFJlZm9ybTEWMBQGA1UEAxMNVGFkZ2ggTyBMZWFyeTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0+AtJZLHW+Nkc/Rho8qflL2lEr8OoChQ3nzhiGHSIW/QmpHzzm54mPL6dybLmnpE5/I2lum0c0DohkQKH07Ouz46Lk/AGs7qpRNE14y1WOtbL7JkW5Y7Ktv/gqv8neg77feAUiZNJaQZ2nhIaQi3OyXqwqzEGafzpWsj2BxId2cCAwEAAaN7MHkwCQYDVR0TBAIwADAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBHZW5lcmF0ZWQgQ2VydGlmaWNhdGUwHQYDVR0OBBYEFMVbM3lCFwp+r61i88s1hisafmA+MB8GA1UdIwQYMBaAFF9w+B8tTiwPPHLyvnUz6IQNAhyNMA0GCSqGSIb3DQEBBQUAA4GBAAxyDOqFkdqel1AxOGm04dl87WdBvoew1wxaEp4AhUtk4nAmu7EgmB3scop6Q43hq+dWScvSxWPZAyKUGEmc/qsUnq9NRQGqpB8g9CJKYEC9HHkbNn7b/LbNRdvd49YEfC5qAPgj0SDmQffcahrIGyU2lzZfTW4I00cXn7ogUqu5 ++ ++ ++ ++ ++ MIIHZjCCBk6gAwIBAgIEQnrNujANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJJRTEQMA4GA1UEChMHQW4gUG9zdDEYMBYGA1UECxMPUG9zdC5UcnVzdCBMdGQuMSIwIAYDVQQDExlQb3N0LlRydXN0IE9wZXJhdGlvbmFsIENBMB4XDTE0MDYxODEzMjI0NloXDTE3MDYxODEzMjI0NlowgfQxCzAJBgNVBAYTAklFMQ8wDQYDVQQIDAZEdWJsaW4xQjBABgNVBAoMOURlcGFydG1lbnQgb2YgQ29tbXVuaWNhdGlvbnMgRW5lcmd5IGFuZCBOYXR1cmFsIFJlc291cmNlczEeMBwGA1UECwwVUXVhbGlmaWVkIENlcnRpZmljYXRlMTowOAYDVQQLDDFDb21tdW5pY2F0aW9ucyAoQnVzaW5lc3MgYW5kIFRlY2hub2xvZ3kpIERpdmlzaW9uMR4wHAYDVQQFExU5MDQxMTA3Mi9QVDIxMTA1MjEwNDMxFDASBgNVBAMMC1JvcnkgSGluY2h5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyr4qcfKk4GhcoHYRQaLWtDSMBXUttCPLAJiHE52CIgb3wdDcqrSSDOAMdr/ui8v5+HB6/GwabQ0H8OdoQnLoBTFv56NW4u9dlzmR7A5ubvpQ1vKCLJyn+OxlAPmEsal3vrwVgb+r1MaB5STTI0/2Dj90TgPhVZKURj0i+lvLHvwkq2NfYWXaIi+aP1qfAe1PHvFN78vltviL45gomiq6RudbB9+O49uXfIKp/S4SsPt0VCLUrNhkDA6Oux5eUR8+ccKwH7hV+IrGK2t7Y7yfANL3qzObVKpFYVu8jMSmbmiuouU5bGZcU2OJkV1MEHb7/xD2czluzzWW/uj/Uf+v7wIDAQABo4IDlDCCA5AwggHHBgNVHSAEggG+MIIBujCBmAYGBACLMAEBMIGNMIGKBggrBgEFBQcCAjB+DHxJc3N1ZWQgYXMgYSBRdWFsaWZpZWQgQ2VydGlmaWNhdGUgYWNjb3JkaW5nIHRvIEFubmV4IEkgYW5kIElJIG9mIERpcmVjdGl2ZSAxOTk5LzkzL0VDLCBhcyBpbXBsZW1lbnRlZCBpbiB0aGUgbGF3IG9mIElyZWxhbmQuMIIBGwYJKoZIhvcvAQIBMIIBDDCBxQYIKwYBBQUHAgIwgbgMgbVJc3N1ZWQgc3ViamVjdCB0byBQb3N0LlRydXN0IENQUyB0ZXJtcyBhbmQgY29uZGl0aW9ucyB3aGljaCBsaW1pdCB3YXJyYW50aWVzIGFuZCBsaWFiaWxpdHkgb2YgUG9zdC5UcnVzdC4gQnkgYWNjZXB0aW5nLCB0aGUgcmVseWluZyBwYXJ0eSBhY2tub3dsZWRnZXMgaXQgaGFzIHJlYWQgYW5kIGFjY2VwdGVkIGJvdGguMEIGCCsGAQUFBwIBFjZodHRwOi8vd3d3LnBvc3QudHJ1c3QuaWUvZG93bmxvYWRzL3Bvc3R0cnVzdGNkc2Nwcy5wZGYwPQYIKwYBBQUHAQMEMTAvMAgGBgQAjkYBATAWBgYEAI5GAQIwDBMDRVVSAgICewIBAjALBgYEAI5GAQMCAQowSwYKKoZIhvcvAQEJAQQ9MDsCAQGGNmh0dHA6Ly90aW1lc3RhbXAudHJ1c3QuaWUvdHNzLXdlYmNsaWVudC9SZXF1ZXN0SGFuZGxlcjAMBgNVHRMBAf8EAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSUECjAIBgYEAJE3AwAwdQYDVR0jBG4wbIAITLE1xb0jxdWhWqRYMFYxCzAJBgNVBAYTAklFMRAwDgYDVQQKEwdBbiBQb3N0MRgwFgYDVQQLEw9Qb3N0LlRydXN0IEx0ZC4xGzAZBgNVBAMTElBvc3QuVHJ1c3QgUm9vdCBDQYIEOaaXHzBwBgNVHR8EaTBnMGWgY6BhpF8wXTELMAkGA1UEBhMCSUUxEDAOBgNVBAoMB0FuIFBvc3QxGDAWBgNVBAsMD1Bvc3QuVHJ1c3QgTHRkLjEiMCAGA1UEAwwZUG9zdC5UcnVzdCBPcGVyYXRpb25hbCBDQTAdBgNVHQ4EFgQUMjerH60XfHjiGICDZKxyJj/NsmYwDQYJKoZIhvcNAQELBQADggEBAK0PGS1oiSA3p+HuVCBO+H/qQjHvVmwIY3fz7njma/GU6WztcdzA8DAF9f/lI467rhiptozW6NU74KWf3UOarnki39sMBgAO4AhYYpdQgSqa5y+2zqKtSQKtxPYwck+NTptqH5iHTv1C78f9wNd83+6cBntwLu8aDYF+siR8h4DKltutXik6Sv5rfSr0SfclBWqmmMCMlunpYBido50mudWLwgRk+F3ZzqottRBgm4DcxznghV4+cRR1cNwo0XiqaBvSqZKJ7eNI4PQapeHI7PmXRqTxFIFGVzGYVYmXNqzS1hclag7rbZ+2nR+hRcafVAQs7JfJK6+ofEz7GrpkMyw= ++ ++ ++ ++ http://www.dcenr.gov.ie/NR/rdonlyres/A2D966E8-48E1-4709-BFAA-83FA07F3C7F7/0/HumanReadable_signed_tresignedxml.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ IE ++ ++ ++ application/pdf ++ ++ ++ ++ Department of Communications, Energy and Natural Resources ++ An Roinn Cumarsáide, Fuinnimh agus Acmhainní Nádúrtha ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/IE ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://files.dcenr.gov.ie/rh/Irelandtslsigned.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ IE ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Department of Communications, Energy and Natural Resources ++ An Roinn Cumarsáide, Fuinnimh agus Acmhainní Nádúrtha ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/IE ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.neytendastofa.is/library/Files/TSl/tsl.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ IS ++ ++ ++ application/pdf ++ ++ ++ ++ The Consumer Agency ++ Neytendastofa ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/IS ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.neytendastofa.is/library/Files/TSl/tsl.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ IS ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ The Consumer Agency ++ Neytendastofa ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/IS ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ https://applicazioni.cnipa.gov.it/TSL/IT_TSL_HR.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ IT ++ ++ ++ application/pdf ++ ++ ++ ++ Agenzia per l'Italia Digitale ++ Agenzia per l'Italia Digitale ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/IT ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ https://applicazioni.cnipa.gov.it/TSL/IT_TSL_signed.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ IT ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Agenzia per l'Italia Digitale ++ Agenzia per l'Italia Digitale ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/IT ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.llv.li/files/ak/xml-llv-ak-tsl.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ LI ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Office for Communications ++ Amt für Kommunikation ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/LI ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.rrt.lt/failai/LT-TSL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ LT ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Communications Regulatory Authority of the Republic of Lithuania ++ Lietuvos Respublikos ryšių reguliavimo tarnyba ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/LT ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.portail-qualite.public.lu/fr/publications/confiance-numerique/liste-confiance-nationale/tsl-pdf/TSL-PDF.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ LU ++ ++ ++ application/pdf ++ ++ ++ ++ ILNAS ++ ILNAS ++ ILNAS ++ Institut Luxembourgeois de la Normalisation, de l'Accréditation, de la Sécurité et qualité des produits et services ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/LU ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.portail-qualite.public.lu/fr/publications/confiance-numerique/liste-confiance-nationale/tsl-xml/TSL-XML.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ LU ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ ILNAS ++ ILNAS ++ Institut Luxembourgeois de la Normalisation, de l'Accréditation, de la Sécurité et qualité des produits et services ++ ILNAS ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/LU ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.dvi.gov.lv/en/wp-content/uploads/TSL/tsl-lv.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ LV ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Data State Inspectorate ++ Datu valsts inspekcija ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/LV ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.mca.org.mt/tsl/MT_TSL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ MT ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Malta Communications Authority ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/MT ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ https://www.acm.nl/download/bestand/current-tsl.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ NL ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Authority for Consumers & Markets ++ Autoriteit Consument en Markt ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/NL ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.nkom.no/TSL/NO_TSL.PDF ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ NO ++ ++ ++ application/pdf ++ ++ ++ ++ NASJONAL KOMMUNIKASJONSMYNDIGHET ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/NO ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.nkom.no/TSL/NO_TSL.XML ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ NO ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ NASJONAL KOMMUNIKASJONSMYNDIGHET ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/NO ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIDaTCCAlGgAwIBAgIJAOXz92Z7yWyiMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAlBMMSAwHgYDVQQKExdOYXRpb25hbCBCYW5rIG9mIFBvbGFuZDEcMBoGA1UEAxMTUG9saXNoIFRTTCBPcGVyYXRvcjAeFw0xNTA5MTQxMTMzNDBaFw0xNzA5MTMxMTMzNDBaME0xCzAJBgNVBAYTAlBMMSAwHgYDVQQKExdOYXRpb25hbCBCYW5rIG9mIFBvbGFuZDEcMBoGA1UEAxMTUG9saXNoIFRTTCBPcGVyYXRvcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQzS6rDZWLH4OudgpJxkLQfh/3ZbrDRbFI69ElV1EwD7M8Sza2k7uMRsUQMaK5Ox58y5v7rBMWyVdaTLsnkemo7Coh1S85ai8bU5MUDrRqUUSvMk7IKwbBPA1WcTYkr0i17yEbiUbncz54XEmuYzuHiXjzWA0yCtkn7xL3vDnVLEYEBjmncuXG1AndibC9ZT9qYOT1D7QrxydK4S+3jmuL9saBFThDsrogqVcc4NoUdZiwxhbbKfGsIDXokfUTHURC1SzhG+IXkg/lAvpnx/p0jVNjiEbAWGB1T4u6Pl24xSw6b9cbX/QhaYFewcdJt2qSf+wBfIWxUBabtq1R9nNcCAwEAAaNMMEowCwYDVR0PBAQDAgeAMBEGA1UdJQQKMAgGBgQAkTcDADAJBgNVHRMEAjAAMB0GA1UdDgQWBBT6ZZUcqcsVEsQLnStCkPszCUqoxDANBgkqhkiG9w0BAQsFAAOCAQEAB1CDhQ/cTKp5Wy2Wf/VTI8qM9CsWG4P5XldKF8UxgRnbK9WvXfNShgGOaI/zd0HV22I7kxXNUJkWdNzUHgaBlpSvyuYSWQaYrLcqLzBFnnsl+NuZY/qVhXsHeQX2R7mygvnfueJq4B/37M4wCOC79F/iKuubooX9hJKhq78ii7EAsT7WxVZMo36xUMHGCxc9DSdwQPE5aAQBj7yIgksr5t7FJTy6DyN6GHmWvvbQ3TfgZG06COBrRPbXvhdtQAji5TxRlvvNzLNVBCtzzyQWR8iZIKvp4ILue+ARZnhQ+t0pkPFkG+x+3GYgzClzWwcilufcBpwx1Si20iIGKbnl4A== ++ ++ ++ ++ ++ LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlEYVRDQ0FsR2dBd0lCQWdJSkFPNEZ5RmJjSFJLK01BMEdDU3FHU0liM0RRRUJDd1VBTUUweEN6QUpCZ05WDQpCQVlUQWxCTU1TQXdIZ1lEVlFRS0V4ZE9ZWFJwYjI1aGJDQkNZVzVySUc5bUlGQnZiR0Z1WkRFY01Cb0dBMVVFDQpBeE1UVUc5c2FYTm9JRlJUVENCUGNHVnlZWFJ2Y2pBZUZ3MHhOakF4TWpBd09UQTJNRE5hRncweU1UQXhNVGd3DQpPVEEyTUROYU1FMHhDekFKQmdOVkJBWVRBbEJNTVNBd0hnWURWUVFLRXhkT1lYUnBiMjVoYkNCQ1lXNXJJRzltDQpJRkJ2YkdGdVpERWNNQm9HQTFVRUF4TVRVRzlzYVhOb0lGUlRUQ0JQY0dWeVlYUnZjakNDQVNJd0RRWUpLb1pJDQpodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUtZcFlpSUZoT3J0ZHhNbms4UUpGTFowbkpjZmFGcFFrYnBGDQpkaVJiaXBXbzhLTjcyZGVIS0RQTDVRUk9GZXBqVjI2V25xWmc1SkRSZG9YN0R2QmppaTR0bGxwR1NZUkJBdk82DQpFRXJWMzJTYVRvVm5ydytiZ2xTZWlTaEtPUHNacEVOOEJYQTU5RXhDVXdEZFRTc3NPa2ZXZ2g0NmRUaXdLamo2DQphMVFKVG9OR256TllScVJtOUwzSlBxL05tR2ZQSHZaZ1hWajIyZnRtdkpMYVg1ZktQL0R5dUlQbzYzanZ0Um42DQp1VUtNVjFEMTZZdHBPSFNyTjNwZHUzVzF4QUhndStyL3FSNU95aEx4VWMwMTkyQmZxY1N5dm9GNklhN215OHpUDQp3V1RKT1p6RjhvMnpIL0M4WDlNK2VlRmQ4NE10bVdEM2hqSktXL2VFb2FiUVhhUFFvNDhDQXdFQUFhTk1NRW93DQpDd1lEVlIwUEJBUURBZ2VBTUJFR0ExVWRKUVFLTUFnR0JnUUFrVGNEQURBSkJnTlZIUk1FQWpBQU1CMEdBMVVkDQpEZ1FXQkJUNVRXZjZxODVUYzBldDJSSUQvZGY1eU9nTEV6QU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FRRUFOeTBrDQpVbm5rbjZqRVdXNHlzZUJSMWxTam1KZjRITW9NRUJLL3lxbWZKZTlEamxnQnBoek1Sa09NcXpsWWMwMmZ2UUorDQpTNmgvZERrdTFoaE9YN2Rvckd0bVoxTWwyMVZMYkE4K2I0eUlLSC9EbFFtVWoxNHdiUndyWGRxQVlJZ3ZFR3F1DQpwS3hkSW8zZVJqMlFPTGZML056dzlsVGV2MitGaFJxN2dBZ0MzWnNrL1YvZTVuTnViTS9LSnR3Q3pvSkdBd2tqDQpqTzJxemlhbFJ3N3ZUYW45TmpQY0ZyYVBnbXUvQ0N2Z25odU1jbHArSVQ3SnVyVTRKVk9ybTROQXBzejE2S3ltDQpnNmtjcVlpeXErSXFQalZZRjJ4ckhpblA4Z0I1RHY1eVlEZ2trZVc5WTdWTW9XVGxKRXIyZytURlI1dlB6bHgyDQpnL0RiVjA4SDJZZngvT29MZmc9PQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0KDQo= ++ ++ ++ ++ https://www.nccert.pl/tsl/PL_TSL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ PL ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ National Bank of Poland ++ Narodowy Bank Polski ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/PL ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ https://www.gns.gov.pt/media/1891/TSLPTHR.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ PT ++ ++ ++ application/pdf ++ ++ ++ ++ National Security Cabinet of Portugal ++ Gabinete Nacional de Segurança ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/PT ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ https://www.gns.gov.pt/media/1894/TSLPT.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ PT ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ National Security Cabinet of Portugal ++ Gabinete Nacional de Segurança ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/PT ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.mcsi.ro/Minister/Domenii-de-activitate-ale-MCSI/Tehnologia-Informatiei/Servicii-electronice/Semnatura-electronica/TrustedList-versiunea-pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ RO ++ ++ ++ application/pdf ++ ++ ++ ++ MINISTRY FOR INFORMATION SOCIETY ++ MINISTERUL PENTRU SOCIETATEA INFORMATIONALA ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/RO ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.mcsi.ro/Minister/Domenii-de-activitate-ale-MCSI/Tehnologia-Informatiei/Servicii-electronice/Semnatura-electronica/TrustedList-versiunea-xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ RO ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ MINISTRY FOR INFORMATION SOCIETY ++ MINISTERUL PENTRU SOCIETATEA INFORMATIONALA ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/RO ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.pts.se/upload/Ovrigt/Internet/Branschinformation/Trusted-List-SE-MR.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ SE ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Swedish Post and Telecom Agency (PTS) ++ Post- och telestyrelsen (PTS) ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/SE ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.mizks.gov.si/fileadmin/mizks.gov.si/pageuploads/Storitve/Info_druzba/Overitelji/SI_TL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ SI ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Republic of Slovenia, Ministry of Education, Science and Sport ++ Republika Slovenija, Ministrstvo za izobraževanje, znanost in šport ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/SI ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://ep.nbusr.sk/kca/tsl/tsl_hrf.zip ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ SK ++ ++ ++ application/pdf ++ ++ ++ ++ NATIONAL SECURITY AUTHORITY ++ NÁRODNÝ BEZPEČNOSTNÝ ÚRAD ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/SK ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://ep.nbusr.sk/kca/tsl/tsl.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ SK ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ NATIONAL SECURITY AUTHORITY ++ NÁRODNÝ BEZPEČNOSTNÝ ÚRAD ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/SK ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.tscheme.org/UK_TSL/HR_TSL-UKsigned.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ UK ++ ++ ++ application/pdf ++ ++ ++ ++ tScheme Limited ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/UK ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ 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 ++ ++ ++ ++ http://www.tscheme.org/UK_TSL/TSL-UKsigned.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ UK ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ tScheme Limited ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/UK ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ 2016-04-08T11:15:22Z ++ ++ 2016-09-08T11:15:22Z ++ ++ ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl-mp.xml ++ ++ ++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2016-04-08T10:00:36.390Z1URWKQVwWCb9HhMyozwlaYg1ejw=CN=QuoVadis EU Issuing Certification Authority G2,OU=Issuing Certification Authority,O=QuoVadis Trustlink B.V.,C=NL694395474722160626358886281620874695673047986886text/xml +diff -ruN a/client/TSL.qrc b/client/TSL.qrc +--- a/client/TSL.qrc 1970-01-01 03:00:00.000000000 +0300 ++++ b/client/TSL.qrc 2016-04-27 10:17:48.915014559 +0300 +@@ -0,0 +1 @@ ++tl-mp.xmlEE.xml diff --git a/pkgs/tools/security/qdigidoc/default.nix b/pkgs/tools/security/qdigidoc/default.nix new file mode 100644 index 00000000000..9894b203800 --- /dev/null +++ b/pkgs/tools/security/qdigidoc/default.nix @@ -0,0 +1,40 @@ +{ stdenv, fetchurl, cmake, ccid, qttools, qttranslations, pkgconfig, pcsclite +, hicolor_icon_theme, libdigidocpp, opensc, shared_mime_info, openldap +, gettext, desktop_file_utils, makeWrapper }: + +stdenv.mkDerivation rec { + + version = "3.12.0.1442"; + name = "qdigidoc-${version}"; + + src = fetchurl { + url = "https://installer.id.ee/media/ubuntu/pool/main/q/qdigidoc/qdigidoc_3.12.0.1442.orig.tar.xz"; + sha256 = "1a7nsi28q57ic99hrb6x83qlvpqvzvk6acbfl6ncny2j4yaxa4jl"; + }; + + patches = [ ./certs.patch ]; + + unpackPhase = '' + mkdir src + tar xf $src -C src + cd src + ''; + + postInstall = '' + wrapProgram $out/bin/qdigidocclient \ + --prefix LD_LIBRARY_PATH : ${opensc}/lib/pkcs11/ + ''; + + buildInputs = [ cmake ccid qttools pkgconfig pcsclite qttranslations + hicolor_icon_theme libdigidocpp opensc shared_mime_info + openldap gettext desktop_file_utils makeWrapper + ]; + + meta = with stdenv.lib; { + description = "Qt based UI application for verifying and signing digital signatures"; + homepage = "http://www.id.ee/"; + license = licenses.lgpl2; + platforms = platforms.linux; + maintainers = [ maintainers.jagajaga ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cdb894998f7..47577f6271e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2982,6 +2982,7 @@ in qdigidoc = qt5.callPackage ../tools/security/qdigidoc { } ; esteidfirefoxplugin = callPackage ../applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin { }; + qgifer = callPackage ../applications/video/qgifer { giflib = giflib_4_1; qt = qt4; From 7dcf75bdd4eb85bce2506eb95d338a5da5e9a5e9 Mon Sep 17 00:00:00 2001 From: Tobias Pflug Date: Mon, 25 Apr 2016 16:04:22 +0200 Subject: [PATCH 019/337] libuv: 1.7.5 -> 1.9.0 --- pkgs/development/libraries/libuv/default.nix | 91 ++++---------------- pkgs/top-level/all-packages.nix | 7 +- pkgs/top-level/python-packages.nix | 2 +- 3 files changed, 21 insertions(+), 79 deletions(-) diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix index 48d12321248..e039711e457 100644 --- a/pkgs/development/libraries/libuv/default.nix +++ b/pkgs/development/libraries/libuv/default.nix @@ -2,9 +2,23 @@ , ApplicationServices, CoreServices }: -let - stable = "stable"; - unstable = "unstable"; +stdenv.mkDerivation rec { + version = "1.9.0"; + name = "libuv-${version}"; + + src = fetchFromGitHub { + owner = "libuv"; + repo = "libuv"; + rev = "v${version}"; + sha256 = "0sq8c8n7xixn2xxp35crprvh35ry18i5mcxgwh12lydwv9ks0d4k"; + }; + + buildInputs = [ automake autoconf libtool pkgconfig ] + ++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices CoreServices ]; + + preConfigure = '' + LIBTOOLIZE=libtoolize ./autogen.sh + ''; meta = with lib; { description = "A multi-platform support library with a focus on asynchronous I/O"; @@ -13,73 +27,4 @@ let platforms = with platforms; linux ++ darwin; }; - mkName = stability: version: - if stability == stable - then "libuv-${version}" - else "libuv-${stability}-${version}"; - - mkSrc = version: sha256: fetchFromGitHub { - owner = "libuv"; - repo = "libuv"; - rev = "v${version}"; - inherit sha256; - }; - - # for versions < 0.11.6 - mkWithoutAutotools = stability: version: sha256: stdenv.mkDerivation { - name = mkName stability version; - src = mkSrc version sha256; - buildPhase = lib.optionalString stdenv.isDarwin '' - mkdir extrapath - ln -s /usr/sbin/dtrace extrapath/dtrace - export PATH=$PATH:`pwd`/extrapath - '' + '' - mkdir build - make builddir_name=build - - rm -r build/src - rm build/libuv.a - cp -r include build - - mkdir build/lib - mv build/libuv.* build/lib - - pushd build/lib - lib=$(basename libuv.*) - ext="''${lib##*.}" - mv $lib libuv.10.$ext - ln -s libuv.10.$ext libuv.$ext - popd - ''; - installPhase = '' - cp -r build $out - ''; - inherit meta; - }; - - # for versions > 0.11.6 - mkWithAutotools = stability: version: sha256: stdenv.mkDerivation { - name = mkName stability version; - src = mkSrc version sha256; - buildInputs = [ automake autoconf libtool pkgconfig ] - ++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices CoreServices ]; - preConfigure = '' - LIBTOOLIZE=libtoolize ./autogen.sh - ''; - inherit meta; - }; - - toVersion = with lib; name: - replaceChars ["_"] ["."] (removePrefix "v" name); - -in - - with lib; - - mapAttrs (v: h: mkWithAutotools unstable (toVersion v) h) { - v0_11_29 = "1z07phfwryfy2155p3lxcm2a33h20sfl96lds5dghn157x6csz7m"; - } - // - mapAttrs (v: h: mkWithAutotools stable (toVersion v) h) { - v1_7_5 = "18x6cy2xn31am97vn6jli7kmb2fbp4c8kmv7jm97vggh0x55flsc"; - } +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0851c5fb941..cee180b89d8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8037,12 +8037,9 @@ in then darwin.libunwind else callPackage ../development/libraries/libunwind { }; - libuvVersions = recurseIntoAttrs (callPackage ../development/libraries/libuv { - automake = automake113x; # fails with 14 + libuv = callPackage ../development/libraries/libuv { inherit (darwin.apple_sdk.frameworks) ApplicationServices CoreServices; - }); - - libuv = self.libuvVersions.v1_7_5; + }; libv4l = lowPrio (self.v4l_utils.override { alsaLib = null; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 304c4932d8e..8c04c6feb78 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -22288,7 +22288,7 @@ in modules // { patches = [ ../development/python-modules/pyuv-external-libuv.patch ]; - buildInputs = with self; [ pkgs.libuvVersions.v0_11_29 ]; + buildInputs = with self; [ pkgs.libuv ]; meta = { description = "Python interface for libuv"; From c893105f1f4497225a70961513726f5243a242f7 Mon Sep 17 00:00:00 2001 From: Tobias Pflug Date: Wed, 27 Apr 2016 12:25:22 +0200 Subject: [PATCH 020/337] pyuv: 0.11.5 -> 1.2.0 --- .../python-modules/pyuv-external-libuv.patch | 22 +++++++++---------- pkgs/top-level/python-packages.nix | 4 ++-- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/pkgs/development/python-modules/pyuv-external-libuv.patch b/pkgs/development/python-modules/pyuv-external-libuv.patch index 33539d9b4b2..41e169acd5f 100644 --- a/pkgs/development/python-modules/pyuv-external-libuv.patch +++ b/pkgs/development/python-modules/pyuv-external-libuv.patch @@ -1,27 +1,25 @@ diff --git a/setup.py b/setup.py -index ec0caac..2c1fdb6 100644 +index 5071c3b..4b4a176 100644 --- a/setup.py +++ b/setup.py -@@ -6,7 +6,6 @@ try: +@@ -7,7 +7,6 @@ try: from setuptools import setup, Extension except ImportError: from distutils.core import setup, Extension -from setup_libuv import libuv_build_ext, libuv_sdist - - - __version__ = "0.11.5" -@@ -32,12 +31,11 @@ setup(name = "pyuv", + + + def get_version(): +@@ -35,11 +34,10 @@ setup(name = "pyuv", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4" ], - cmdclass = {'build_ext': libuv_build_ext, - 'sdist' : libuv_sdist}, - ext_modules = [Extension('pyuv', + packages = ['pyuv'], + ext_modules = [Extension('pyuv._cpyuv', sources = ['src/pyuv.c'], -+ libraries = ['uv'], - define_macros=[('MODULE_VERSION', __version__), -- ('LIBUV_REVISION', libuv_build_ext.libuv_revision)] -+ ('LIBUV_REVISION', 'unknown')] ++ libraries = ['uv'] )] ) - + diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8c04c6feb78..e755ff208b1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -22278,12 +22278,12 @@ in modules // { }; pyuv = buildPythonPackage rec { - name = "pyuv-0.11.5"; + name = "pyuv-1.2.0"; disabled = isPyPy; # see https://github.com/saghul/pyuv/issues/49 src = pkgs.fetchurl { url = "https://github.com/saghul/pyuv/archive/${name}.tar.gz"; - sha256 = "c251952cb4e54c92ab0e871decd13cf73d11ca5dba9f92962de51d12e3a310a9"; + sha256 = "19yl1l5l6dq1xr8xcv6dhx1avm350nr4v2358iggcx4ma631rycx"; }; patches = [ ../development/python-modules/pyuv-external-libuv.patch ]; From 57ef6899aa382e0f601610fa37d5cad2a5abdbf5 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Wed, 27 Apr 2016 17:22:37 +0100 Subject: [PATCH 021/337] terraform: 0.6.13 -> 0.6.15 --- pkgs/top-level/go-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 17edad071fe..9910cef2972 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3735,11 +3735,11 @@ let }; terraform = buildFromGitHub { - rev = "v0.6.13"; + rev = "v0.6.15"; owner = "hashicorp"; repo = "terraform"; disabled = isGo14 || isGo15; - sha256 = "1f1xm5pyz1hxqm2k74psanirpydf71pmxixplyc2x2w68hgjzi2l"; + sha256 = "1mf98hagb0yp40g2mbar7aw7hmpq01clnil6y9khvykrb33vy0nb"; buildInputs = [ ]; }; From 8bfb350f4f18d40eb30cfb30ca3e0bd74dfb73ab Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Wed, 27 Apr 2016 18:52:06 +0200 Subject: [PATCH 022/337] xdot: 0.6 -> 0.7, python27 -> python3 --- pkgs/top-level/python-packages.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 447481db7b3..966d3f67d74 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23180,14 +23180,19 @@ in modules // { }; xdot = buildPythonPackage rec { - name = "xdot-0.6"; + name = "xdot-0.7"; src = pkgs.fetchurl { - url = "mirror://pypi/x/xdot/xdot-0.6.tar.gz"; - sha256 = "c71d82bad0fec696af36af788c2a1dbb5d9975bd70bfbdc14bda15b5c7319e6c"; + url = "mirror://pypi/x/xdot/xdot-0.7.tar.gz"; + sha256 = "1q0f3pskb09saw1qkd2s6vmk80rq5zjhq8l93dfr2x6r04r0q46j"; }; - propagatedBuildInputs = with self; [ pygtk pygobject pkgs.graphviz ]; + propagatedBuildInputs = with self; [ pkgs.gobjectIntrospection pygobject3 pkgs.graphviz pkgs.gnome3.gtk ]; + + preFixup = '' + wrapProgram "$out/bin/"* \ + --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" + ''; meta = { description = "xdot.py is an interactive viewer for graphs written in Graphviz's dot"; From 1bf1ba1f8866a7910c9df8dde791a0dffda6fed2 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 27 Apr 2016 19:22:47 +0200 Subject: [PATCH 023/337] siege: fix build after multiple-outputs --- pkgs/tools/networking/siege/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/networking/siege/default.nix b/pkgs/tools/networking/siege/default.nix index 48e2fc5ef78..976d8b3bc06 100644 --- a/pkgs/tools/networking/siege/default.nix +++ b/pkgs/tools/networking/siege/default.nix @@ -10,7 +10,9 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s"; - configureFlags = [ "--with-ssl=${openssl}" ]; + buildInputs = [ openssl ]; + + configureFlags = [ "--with-ssl=${openssl.dev}" ]; meta = with stdenv.lib; { description = "HTTP load tester"; From 9894da95d6abeb4327419a40a4f706e9a79d171c Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Wed, 27 Apr 2016 20:47:14 +0200 Subject: [PATCH 024/337] emby: 3.0.5930 -> 3.0.5932 --- pkgs/servers/emby/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/emby/default.nix b/pkgs/servers/emby/default.nix index 26ac26f67c1..d10d5490fe1 100644 --- a/pkgs/servers/emby/default.nix +++ b/pkgs/servers/emby/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "emby-${version}"; - version = "3.0.5930"; + version = "3.0.5932"; src = fetchurl { url = "https://github.com/MediaBrowser/Emby/releases/download/${version}/Emby.Mono.zip"; - sha256 = "0498v7wng13c9n8sjfaq0b8p933vn7hk5icsranm39bkh3jqgdwf"; + sha256 = "1m6p52q2y0rd8m1488h1cgfq7m6y5njlln73n4lmi0knrmlq3w7r"; }; buildInputs = [ unzip ]; From de0847c7310c88a68ee6a19012a296db9f66b986 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 28 Apr 2016 01:14:17 +0300 Subject: [PATCH 025/337] taskserver service: Really check that it is enabled --- nixos/modules/services/misc/taskserver/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/misc/taskserver/default.nix b/nixos/modules/services/misc/taskserver/default.nix index 8459aafeee7..b7d14e90a2b 100644 --- a/nixos/modules/services/misc/taskserver/default.nix +++ b/nixos/modules/services/misc/taskserver/default.nix @@ -449,7 +449,7 @@ in { }; }; }) - (mkIf needToCreateCA { + (mkIf (cfg.enable && needToCreateCA) { systemd.services.taskserver-ca = { wantedBy = [ "taskserver.service" ]; after = [ "taskserver-init.service" ]; @@ -533,7 +533,7 @@ in { ''; }; }) - (mkIf (cfg.listenHost != "localhost") { + (mkIf (cfg.enable && cfg.listenHost != "localhost") { networking.firewall.allowedTCPPorts = [ cfg.listenPort ]; }) { meta.doc = ./taskserver.xml; } From 87b9c4a6b6e0c382f744438c5fa52fbff97b3e54 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Wed, 27 Apr 2016 20:17:01 -0400 Subject: [PATCH 026/337] zookeeper: replace tabs with spaces --- pkgs/servers/zookeeper/default.nix | 52 +++++++++++++++--------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/pkgs/servers/zookeeper/default.nix b/pkgs/servers/zookeeper/default.nix index 307993a958a..4512bfcfc94 100644 --- a/pkgs/servers/zookeeper/default.nix +++ b/pkgs/servers/zookeeper/default.nix @@ -1,36 +1,36 @@ { stdenv, fetchurl, jre, makeWrapper, bash }: stdenv.mkDerivation rec { - name = "zookeeper-3.4.6"; + name = "zookeeper-3.4.6"; - src = fetchurl { - url = "mirror://apache/zookeeper/${name}/${name}.tar.gz"; - sha256 = "01b3938547cd620dc4c93efe07c0360411f4a66962a70500b163b59014046994"; - }; + src = fetchurl { + url = "mirror://apache/zookeeper/${name}/${name}.tar.gz"; + sha256 = "01b3938547cd620dc4c93efe07c0360411f4a66962a70500b163b59014046994"; + }; - buildInputs = [ makeWrapper jre ]; + buildInputs = [ makeWrapper jre ]; - phases = ["unpackPhase" "installPhase"]; + phases = ["unpackPhase" "installPhase"]; - installPhase = '' - mkdir -p $out - cp -R conf docs lib ${name}.jar $out - mkdir -p $out/bin - cp -R bin/{zkCli,zkCleanup,zkEnv}.sh $out/bin - for i in $out/bin/{zkCli,zkCleanup}.sh; do - wrapProgram $i \ - --set JAVA_HOME "${jre}" \ - --prefix PATH : "${bash}/bin" - done - chmod -x $out/bin/zkEnv.sh - ''; + installPhase = '' + mkdir -p $out + cp -R conf docs lib ${name}.jar $out + mkdir -p $out/bin + cp -R bin/{zkCli,zkCleanup,zkEnv}.sh $out/bin + for i in $out/bin/{zkCli,zkCleanup}.sh; do + wrapProgram $i \ + --set JAVA_HOME "${jre}" \ + --prefix PATH : "${bash}/bin" + done + chmod -x $out/bin/zkEnv.sh + ''; - meta = with stdenv.lib; { - homepage = "http://zookeeper.apache.org"; - description = "Apache Zookeeper"; - license = licenses.asl20; - maintainers = [ maintainers.nathan-gs ]; - platforms = platforms.unix; - }; + meta = with stdenv.lib; { + homepage = "http://zookeeper.apache.org"; + description = "Apache Zookeeper"; + license = licenses.asl20; + maintainers = [ maintainers.nathan-gs ]; + platforms = platforms.unix; + }; } From d5a7032042884439c4e00eaeb2a0e7b2a9180401 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 28 Apr 2016 03:03:14 +0300 Subject: [PATCH 027/337] fsmark: Init at 3.3 --- pkgs/tools/misc/fsmark/default.nix | 28 ++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/tools/misc/fsmark/default.nix diff --git a/pkgs/tools/misc/fsmark/default.nix b/pkgs/tools/misc/fsmark/default.nix new file mode 100644 index 00000000000..0e821ce7f1f --- /dev/null +++ b/pkgs/tools/misc/fsmark/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "fsmark-${version}"; + version = "3.3"; + + src = fetchurl { + url = "mirror://sourceforge/fsmark/${version}/fs_mark-${version}.tar.gz"; + sha256 = "15f8clcz49qsfijdmcz165ysp8v4ybsm57d3dxhhlnq1bp1i9w33"; + }; + + patchPhase = '' + sed -i Makefile -e 's/-static //' + ''; + + installPhase = '' + mkdir -p $out/bin + cp fs_mark $out/bin/ + ''; + + meta = with stdenv.lib; { + description = "Synchronous write workload file system benchmark"; + homepage = https://sourceforge.net/projects/fsmark/; + license = licenses.gpl2; + maintainers = [ maintainers.dezgeg ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6956841b0ca..348d5319c1d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -772,6 +772,8 @@ in fop = callPackage ../tools/typesetting/fop { }; + fsmark = callPackage ../tools/misc/fsmark { }; + fzf = goPackages.fzf.bin // { outputs = [ "bin" ]; }; gencfsm = callPackage ../tools/security/gencfsm { }; From d27caa486b03781768cacd7f17881f31adfe4ff8 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 28 Apr 2016 03:31:21 +0300 Subject: [PATCH 028/337] filebench: Init at 1.4.9.1 --- pkgs/tools/misc/filebench/default.nix | 19 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 21 insertions(+) create mode 100644 pkgs/tools/misc/filebench/default.nix diff --git a/pkgs/tools/misc/filebench/default.nix b/pkgs/tools/misc/filebench/default.nix new file mode 100644 index 00000000000..1e8b5a493f5 --- /dev/null +++ b/pkgs/tools/misc/filebench/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "filebench-${version}"; + version = "1.4.9.1"; + + src = fetchurl { + url = "mirror://sourceforge/filebench/${name}.tar.gz"; + sha256 = "0y06f9mp4xry6j1jamqprzn963l0krqayv14yv66pm51hdh53ld1"; + }; + + meta = with stdenv.lib; { + description = "File system and storage benchmark that can generate both micro and macro workloads"; + homepage = https://sourceforge.net/projects/filebench/; + license = licenses.cddl; + maintainers = [ maintainers.dezgeg ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 348d5319c1d..f23ef2672a2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -770,6 +770,8 @@ in fastJson = callPackage ../development/libraries/fastjson { }; + filebench = callPackage ../tools/misc/filebench { }; + fop = callPackage ../tools/typesetting/fop { }; fsmark = callPackage ../tools/misc/fsmark { }; From e28e3d576362335b5ac7822478b2d4dc6efc4253 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Wed, 27 Apr 2016 20:19:12 -0400 Subject: [PATCH 029/337] zookeeper: include zooInspector.sh ZooInspector is a Swing based GUI for interacting with Zookeeper. --- pkgs/servers/zookeeper/default.nix | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/zookeeper/default.nix b/pkgs/servers/zookeeper/default.nix index 4512bfcfc94..7cf95ca7e9e 100644 --- a/pkgs/servers/zookeeper/default.nix +++ b/pkgs/servers/zookeeper/default.nix @@ -23,14 +23,28 @@ stdenv.mkDerivation rec { --prefix PATH : "${bash}/bin" done chmod -x $out/bin/zkEnv.sh + + mkdir -p $out/share/zooinspector + cp -r contrib/ZooInspector/{${name}-ZooInspector.jar,icons,lib,config} $out/share/zooinspector + + classpath="$out/${name}.jar:$out/share/zooinspector/${name}-ZooInspector.jar" + for jar in $out/lib/*.jar $out/share/zooinspector/lib/*.jar; do + classpath="$classpath:$jar" + done + + cat << EOF > $out/bin/zooInspector.sh + #!${stdenv.shell} + cd $out/share/zooinspector + exec ${jre}/bin/java -cp $classpath org.apache.zookeeper.inspector.ZooInspector + EOF + chmod +x $out/bin/zooInspector.sh ''; meta = with stdenv.lib; { homepage = "http://zookeeper.apache.org"; description = "Apache Zookeeper"; license = licenses.asl20; - maintainers = [ maintainers.nathan-gs ]; + maintainers = with maintainers; [ nathan-gs cstrahan ]; platforms = platforms.unix; }; - } From 66a224c99dc1ffcb784d208a1d30f4660e3dd405 Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Wed, 27 Apr 2016 09:22:45 +0000 Subject: [PATCH 030/337] Fix nlopt build. (cherry picked from commit 6c8fbed541188b04998ffc92ef960b6970f1f04e) --- pkgs/development/libraries/nlopt/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/libraries/nlopt/default.nix b/pkgs/development/libraries/nlopt/default.nix index 080f09dfdf4..ddf47cf31d8 100644 --- a/pkgs/development/libraries/nlopt/default.nix +++ b/pkgs/development/libraries/nlopt/default.nix @@ -16,6 +16,10 @@ stdenv.mkDerivation rec { "M_INSTALL_DIR=$(out)/${octave.sitePath}/m " + "OCT_INSTALL_DIR=$(out)/${octave.sitePath}/oct "); + preConfigure = '' + find octave -name '*.cc' | xargs sed -i 's|Octave_map|octave_map|g' + ''; + meta = { homepage = "http://ab-initio.mit.edu/nlopt/"; description = "Free open-source library for nonlinear optimization"; From a2e1692730537ee5b8cbcabdd47dbc10ad2a7383 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Apr 2016 11:59:13 +0200 Subject: [PATCH 031/337] haskell-split: disable test suite to avoid transient build failures We have frequent build failures of "split" because the QuickCheck testsuite cannot generate enough conclusive test cases, i.e. in https://hydra.nixos.org/build/34857780/nixlog/1/raw Cc: @byorgey --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index ecae4cb8eb6..363ddcbea88 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1010,4 +1010,8 @@ self: super: { # tinc is a new build driver a la Stack that's not yet available from Hackage. tinc = self.callPackage ../tools/haskell/tinc {}; + # Avoid transient build failures because the QuickCheck testsuite cannot + # generate enough conclusive test cases. + split = dontCheck super.split; + } From c84c174eb2440355ab4ad7e0de8889c58f7ef903 Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Fri, 12 Feb 2016 18:11:40 +0200 Subject: [PATCH 032/337] rmilter: socket activation in nixos --- nixos/modules/services/mail/rmilter.nix | 65 +++++++++++++++++++------ 1 file changed, 51 insertions(+), 14 deletions(-) diff --git a/nixos/modules/services/mail/rmilter.nix b/nixos/modules/services/mail/rmilter.nix index a6e2a9fc780..f748e7a172e 100644 --- a/nixos/modules/services/mail/rmilter.nix +++ b/nixos/modules/services/mail/rmilter.nix @@ -7,9 +7,14 @@ let rspamdCfg = config.services.rspamd; cfg = config.services.rmilter; + inetSockets = map (sock: let s = stringSplit ":" sock; in "inet:${last s}:${head s}") cfg.bindInetSockets; + unixSockets = map (sock: "unix:${sock}") cfg.bindUnixSockets; + + allSockets = unixSockets ++ inetSockets; + rmilterConf = '' pidfile = /run/rmilter/rmilter.pid; -bind_socket = ${cfg.bindSocket}; +bind_socket = ${if cfg.socketActivation then "fd:3" else concatStringsSep ", " allSockets}; tempdir = /tmp; '' + (with cfg.rspamd; if enable then '' @@ -68,14 +73,37 @@ in ''; }; - bindSocket = mkOption { - type = types.string; - default = "unix:/run/rmilter/rmilter.sock"; - description = "Socket to listed for MTA requests"; + bindUnixSockets = mkOption { + type = types.listOf types.str; + default = ["/run/rmilter/rmilter.sock"]; + description = '' + Unix domain sockets to listen for MTA requests. + ''; example = '' - "unix:/run/rmilter/rmilter.sock" or - "inet:11990@127.0.0.1" - ''; + [ "/run/rmilter/rmilter.sock"] + ''; + }; + + bindInetSockets = mkOption { + type = types.listOf types.str; + default = []; + description = '' + Inet addresses to listen (in format accepted by systemd.socket) + ''; + example = '' + ["127.0.0.1:11990"] + ''; + }; + + socketActivation = mkOption { + type = types.bool; + default = true; + description = '' + Enable systemd socket activation for rmilter. + (disabling socket activation not recommended + when unix socket used, and follow to wrong + permissions on unix domain socket.) + ''; }; rspamd = { @@ -86,7 +114,7 @@ in servers = mkOption { type = types.listOf types.str; - default = ["r:0.0.0.0:11333"]; + default = ["r:/run/rspamd/rspamd.sock"]; description = '' Spamd socket definitions. Is server name is prefixed with r: it is rspamd server. @@ -129,7 +157,7 @@ in type = types.str; description = "Addon to postfix configuration"; default = '' -smtpd_milters = ${cfg.bindSocket} +smtpd_milters = ${head allSockets} # or for TCP socket # # smtpd_milters = inet:localhost:9900 milter_protocol = 6 @@ -169,17 +197,26 @@ milter_default_action = accept serviceConfig = { ExecStart = "${pkgs.rmilter}/bin/rmilter ${optionalString cfg.debug "-d"} -n -c ${rmilterConfigFile}"; + ExecReload = "/bin/kill -USR1 $MAINPID"; User = cfg.user; Group = cfg.group; PermissionsStartOnly = true; Restart = "always"; + RuntimeDirectory = "rmilter"; + RuntimeDirectoryPermissions="0755"; }; - preStart = '' - ${pkgs.coreutils}/bin/mkdir -p /run/rmilter - ${pkgs.coreutils}/bin/chown ${cfg.user}:${cfg.group} /run/rmilter - ''; + }; + systemd.sockets.rmilter = mkIf cfg.socketActivation { + description = "Rmilter service socket"; + wantedBy = [ "sockets.target" ]; + socketConfig = { + ListenStream = cfg.bindUnixSockets ++ cfg.bindInetSockets; + SocketUser = cfg.user; + SocketGroup = config.ids.gids.adm; + SocketMode = "0660"; + }; }; services.postfix.extraConfig = optionalString cfg.postfix.enable cfg.postfix.configFragment; From 5d26e806451d3f51833e13d3cbbc173370cdcbfa Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Fri, 12 Feb 2016 18:11:56 +0200 Subject: [PATCH 033/337] rspamd: typo --- pkgs/servers/mail/rspamd/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/mail/rspamd/default.nix b/pkgs/servers/mail/rspamd/default.nix index f3156afd97a..f40a28ab351 100644 --- a/pkgs/servers/mail/rspamd/default.nix +++ b/pkgs/servers/mail/rspamd/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, cmake, perl , file, glib, gmime, libevent, luajit, openssl, pcre, pkgconfig, sqlite }: -let libmagic = file; # libmagic provided buy file package ATM +let libmagic = file; # libmagic provided by file package ATM in stdenv.mkDerivation rec { From 5c260399e136631e026c17b9c08315660f9eaefc Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Fri, 25 Mar 2016 16:12:16 +0200 Subject: [PATCH 034/337] rmilter: correct paths to sockets --- nixos/modules/services/mail/rmilter.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/mail/rmilter.nix b/nixos/modules/services/mail/rmilter.nix index f748e7a172e..d1f7cd2e173 100644 --- a/nixos/modules/services/mail/rmilter.nix +++ b/nixos/modules/services/mail/rmilter.nix @@ -75,12 +75,12 @@ in bindUnixSockets = mkOption { type = types.listOf types.str; - default = ["/run/rmilter/rmilter.sock"]; + default = ["/run/rmilter.sock"]; description = '' Unix domain sockets to listen for MTA requests. ''; example = '' - [ "/run/rmilter/rmilter.sock"] + [ "/run/rmilter.sock"] ''; }; @@ -114,7 +114,7 @@ in servers = mkOption { type = types.listOf types.str; - default = ["r:/run/rspamd/rspamd.sock"]; + default = ["r:/run/rspamd.sock"]; description = '' Spamd socket definitions. Is server name is prefixed with r: it is rspamd server. @@ -214,13 +214,13 @@ milter_default_action = accept socketConfig = { ListenStream = cfg.bindUnixSockets ++ cfg.bindInetSockets; SocketUser = cfg.user; - SocketGroup = config.ids.gids.adm; + SocketGroup = cfg.group; SocketMode = "0660"; }; }; services.postfix.extraConfig = optionalString cfg.postfix.enable cfg.postfix.configFragment; - + users.users.postfix.extraGroups = [ cfg.group ]; }; } From 36954ee405ce515895c90fd6543bac2a9bd0bddb Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Fri, 25 Mar 2016 16:12:59 +0200 Subject: [PATCH 035/337] rspamd: configurable bindSocket and bindUISocket --- nixos/modules/services/mail/rspamd.nix | 59 +++++++++++++++++++++++++- 1 file changed, 57 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/mail/rspamd.nix b/nixos/modules/services/mail/rspamd.nix index a083f829324..412b99ccc57 100644 --- a/nixos/modules/services/mail/rspamd.nix +++ b/nixos/modules/services/mail/rspamd.nix @@ -6,6 +6,35 @@ let cfg = config.services.rspamd; + mkBindSockets = socks: concatStringsSep "\n" (map (each: " bind_socket = \"${each}\"") socks); + + rspamdConf = + '' + .include "$CONFDIR/common.conf" + + options { + pidfile = "$RUNDIR/rspamd.pid"; + .include "$CONFDIR/options.inc" + } + + logging { + type = "file"; + filename = "$LOGDIR/rspamd.log"; + .include "$CONFDIR/logging.inc" + } + + worker { + ${mkBindSockets cfg.bindSocket} + .include "$CONFDIR/worker-normal.inc" + } + + worker { + ${mkBindSockets cfg.bindUISocket} + .include "$CONFDIR/worker-controller.inc" + } + ''; + rspamdConfFile = pkgs.writeText "rspamd.conf" rspamdConf; + in { @@ -26,6 +55,32 @@ in description = "Whether to run the rspamd daemon in debug mode."; }; + bindSocket = mkOption { + type = types.listOf types.str; + default = [ + "/run/rspamd.sock mode=0666 owner=${cfg.user}" + ]; + description = '' + List of sockets to listen, in format acceptable by rspamd + ''; + example = '' + bindSocket = [ + "/run/rspamd.sock mode=0666 owner=rspamd" + "*:11333" + ]; + ''; + }; + + bindUISocket = mkOption { + type = types.listOf types.str; + default = [ + "localhost:11334" + ]; + description = '' + List of sockets for web interface, in format acceptable by rspamd + ''; + }; + user = mkOption { type = types.string; default = "rspamd"; @@ -62,7 +117,7 @@ in users.extraGroups = singleton { name = cfg.group; - gid = config.ids.gids.spamd; + gid = config.ids.gids.rspamd; }; systemd.services.rspamd = { @@ -72,7 +127,7 @@ in after = [ "network.target" ]; serviceConfig = { - ExecStart = "${pkgs.rspamd}/bin/rspamd ${optionalString cfg.debug "-d"} --user=${cfg.user} --group=${cfg.group} --pid=/run/rspamd.pid -f"; + ExecStart = "${pkgs.rspamd}/bin/rspamd ${optionalString cfg.debug "-d"} --user=${cfg.user} --group=${cfg.group} --pid=/run/rspamd.pid -c ${rspamdConfFile} -f"; RuntimeDirectory = "/var/lib/rspamd"; PermissionsStartOnly = true; Restart = "always"; From a817d5b543c11ca7fcf836636afdf70b92740f86 Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Mon, 25 Apr 2016 16:21:38 +0300 Subject: [PATCH 036/337] libmemcached: move cyrus_sasl to propagatedBuildInputs Reason: struct/sasl.h from libmemcached include stuff from there /nix/store/d3f91zvai71dyhs83ybzsnjfhxnv7mmh-libmemcached-1.0.18/include/libmemcached-1.0/struct/sasl.h:39:23: fatal error: sasl/sasl.h: No such file or directory --- pkgs/development/libraries/libmemcached/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libmemcached/default.nix b/pkgs/development/libraries/libmemcached/default.nix index 619aa014497..2570c645f26 100644 --- a/pkgs/development/libraries/libmemcached/default.nix +++ b/pkgs/development/libraries/libmemcached/default.nix @@ -19,7 +19,8 @@ stdenv.mkDerivation rec { sha256 = "1nvxwdkxj2a2g39z0g8byxjwnw4pa5xlvsmdk081q63vmfywh7zb"; }); - buildInputs = [ cyrus_sasl libevent ]; + buildInputs = [ libevent ]; + propagatedBuildInputs = [ cyrus_sasl ]; meta = with stdenv.lib; { homepage = http://libmemcached.org; From ebdfc9dac14173ff3f5c49edc636edd84eeaa57d Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Mon, 25 Apr 2016 16:29:36 +0300 Subject: [PATCH 037/337] rmilter: 1.7.3 -> 1.8.2 --- pkgs/servers/mail/rmilter/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/mail/rmilter/default.nix b/pkgs/servers/mail/rmilter/default.nix index 455e543b2da..d5ba98bfbb3 100644 --- a/pkgs/servers/mail/rmilter/default.nix +++ b/pkgs/servers/mail/rmilter/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchFromGitHub, cmake, bison, flex, openssl, pcre, libmilter, opendkim }: +{ stdenv, fetchFromGitHub, cmake, bison, flex, openssl, pcre, libmilter, opendkim, + libmemcached }: let patchedLibmilter = stdenv.lib.overrideDerivation libmilter (_ : { patches = libmilter.patches ++ [ ./fd-passing-libmilter.patch ]; @@ -7,21 +8,21 @@ in stdenv.mkDerivation rec { name = "rmilter-${version}"; - version = "1.7.3"; + version = "1.8.1"; src = fetchFromGitHub { owner = "vstakhov"; repo = "rmilter"; rev = version; - sha256 = "04xalaxq5xgg5ls0f4ayp8yhzdfq5gqjb8qwfyha3mrx4dqrgh7s"; + sha256 = "0cplkc1acgysxn8id9wakd1fx0f76cazscpfqhrxyjbk5fb11ll4"; }; nativeBuildInputs = [ bison cmake flex ]; - buildInputs = [ patchedLibmilter openssl pcre opendkim]; + buildInputs = [ libmemcached patchedLibmilter openssl pcre opendkim]; meta = with stdenv.lib; { homepage = "https://github.com/vstakhov/rmilter"; - license = licenses.bsd2; + license = licenses.asl20; description = '' Daemon to integrate rspamd and milter compatible MTA, for example postfix or sendmail From 05036343dcc42cfcd05563302ef286740f7e6ffc Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Mon, 25 Apr 2016 16:34:10 +0300 Subject: [PATCH 038/337] rspamd: 1.2.0 -> 1.2.5 License changed to apache-2.0 by upstream --- pkgs/servers/mail/rspamd/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/mail/rspamd/default.nix b/pkgs/servers/mail/rspamd/default.nix index f40a28ab351..a9da7953978 100644 --- a/pkgs/servers/mail/rspamd/default.nix +++ b/pkgs/servers/mail/rspamd/default.nix @@ -6,13 +6,13 @@ in stdenv.mkDerivation rec { name = "rspamd-${version}"; - version = "1.2.0"; + version = "1.2.5"; src = fetchFromGitHub { owner = "vstakhov"; repo = "rspamd"; rev = version; - sha256 = "00d9c9b8w6j0ls1w08bfghn4635as779b45vhhlv1f5wfzhxz6a1"; + sha256 = "0slpixcfd74qkm7445lmcry4s1yamayphzzyr7cxjlr9xfxlblqn"; }; nativeBuildInputs = [ cmake pkgconfig perl ]; @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = "https://github.com/vstakhov/rspamd"; - license = licenses.bsd2; + license = licenses.asl20; description = "advanced spam filtering system"; maintainers = with maintainers; [ avnik fpletz ]; }; From 930d243ea490c1cbb5d70b514a70f2d9c989b25f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 28 Apr 2016 10:33:54 +0200 Subject: [PATCH 039/337] firefox: 45.0.2 -> 46.0 Still using GTK+ 2 for now, since apparently building with GTK+ 3 still requires GTK+ 2, increasing the closure size. (#15008) --- .../applications/networking/browsers/firefox/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index 7493350b28f..94017ba3327 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -35,7 +35,7 @@ common = { pname, version, sha512 }: stdenv.mkDerivation rec { alsaLib nspr nss libnotify xorg.pixman yasm mesa xorg.libXScrnSaver xorg.scrnsaverproto pysqlite xorg.libXext xorg.xextproto sqlite unzip makeWrapper - hunspell libevent libstartup_notification libvpx /* cairo */ + hunspell libevent libstartup_notification /* libvpx */ /* cairo */ gstreamer gst_plugins_base icu libpng jemalloc libpulseaudio # only headers are needed ] @@ -50,7 +50,7 @@ common = { pname, version, sha512 }: stdenv.mkDerivation rec { "--with-system-nspr" "--with-system-nss" "--with-system-libevent" - "--with-system-libvpx" + #"--with-system-libvpx" # needs 1.5.0 "--with-system-png" # needs APNG support "--with-system-icu" "--enable-system-ffi" @@ -69,6 +69,7 @@ common = { pname, version, sha512 }: stdenv.mkDerivation rec { "--disable-updater" "--enable-jemalloc" "--disable-gconf" + "--enable-default-toolkit=cairo-gtk2" ] ++ lib.optional enableGTK3 "--enable-default-toolkit=cairo-gtk3" ++ (if debugBuild then [ "--enable-debug" "--enable-profiling" ] @@ -130,8 +131,8 @@ in { firefox-unwrapped = common { pname = "firefox"; - version = "45.0.2"; - sha512 = "8c0b7afb41a1a405fe499299d1a8b1138dac52b9ad67bfc8761b70a26f330581c2aa1d76d67075896ec3a0c3f5367b8b58365ebc8b3a01f801fa37071b3de526"; + version = "46.0"; + sha512 = "f5a652e25fa74e3cb271af04d50cc7b63ca73fde9d2ff350e84b3dda55352bac2b28b567aed12164285d992414ad475da9d2555ab972e5c5d7b8f5226591036b"; }; firefox-esr-unwrapped = common { From 8cc9e6da8ab611037323f111a79e6677f0653621 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 28 Apr 2016 13:45:44 +0200 Subject: [PATCH 040/337] sqlite: 3.11.1 -> 3.12.2 --- pkgs/development/libraries/sqlite/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix index feb5e5d3040..b34e2f648ec 100644 --- a/pkgs/development/libraries/sqlite/default.nix +++ b/pkgs/development/libraries/sqlite/default.nix @@ -3,11 +3,11 @@ assert interactive -> readline != null && ncurses != null; stdenv.mkDerivation { - name = "sqlite-3.11.1"; + name = "sqlite-3.12.2"; src = fetchurl { - url = "http://sqlite.org/2016/sqlite-autoconf-3110100.tar.gz"; - sha1 = "c4b4dcd735a4daf5a2e2bb90f374484c8d4dad29"; + url = "http://sqlite.org/2016/sqlite-autoconf-3120200.tar.gz"; + sha1 = "b43c2e7238e54c50b95fbbd85c48792f4f39af8c"; }; outputs = [ "dev" "out" "bin" ]; From 298d47ba0187d98eb7910ee406d4849e0a6c84fd Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 28 Apr 2016 13:05:48 +0200 Subject: [PATCH 041/337] cassandra: 2.1.13 -> 2.1.14 --- 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 d0f70a554f7..6c09c977d29 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.13"; - sha256 = "09b3vf5jsv70xlfimj30v8l1zw7c5xdgpw5fpmn6jh8n3gigybqh"; + version = "2.1.14"; + sha256 = "168rg8gg1dhcjfjsr1jbfx4zj3zyqn0xi2z1j2c8jn6054486ybg"; in From ae8dce8d164743e234f50170b85fb858b9465022 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 28 Apr 2016 13:26:39 +0200 Subject: [PATCH 042/337] zpaq: 7.11 -> 7.12 Faster extract. Removes -encrypt (combined with -repack). Also, we now correctly follow upstream's versioning and no longer multiply the version number by 100. You may need to update manually. --- pkgs/tools/archivers/zpaq/default.nix | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/pkgs/tools/archivers/zpaq/default.nix b/pkgs/tools/archivers/zpaq/default.nix index ba0a174ed0a..3b647dc5283 100644 --- a/pkgs/tools/archivers/zpaq/default.nix +++ b/pkgs/tools/archivers/zpaq/default.nix @@ -1,20 +1,13 @@ { stdenv, fetchurl, perl, unzip }: -let - s = # Generated upstream information - rec { - baseName="zpaq"; - version="711"; - name="${baseName}-${version}"; - hash="0kva9xn3rhm2xpbbq3yrx3c9y150fw434ayd82fzhr24nsjjaxsf"; - url="http://mattmahoney.net/dc/zpaq711.zip"; - sha256="0kva9xn3rhm2xpbbq3yrx3c9y150fw434ayd82fzhr24nsjjaxsf"; - }; -in -stdenv.mkDerivation { - inherit (s) name version; +stdenv.mkDerivation rec { + name = "zpaq-${version}"; + version = "7.12"; - src = fetchurl { - inherit (s) url sha256; + src = let + mungedVersion = with stdenv.lib; concatStrings (splitString "." version); + in fetchurl { + sha256 = "1lgkxiinam80pqqyvs3x845k6kf0wgw121vz0gr8za4blb756n30"; + url = "http://mattmahoney.net/dc/zpaq${mungedVersion}.zip"; }; sourceRoot = "."; @@ -39,11 +32,10 @@ stdenv.mkDerivation { installFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { - inherit (s) version; description = "Incremental journaling backup utility and archiver"; + homepage = http://mattmahoney.net/dc/zpaq.html; license = licenses.gpl3Plus ; maintainers = with maintainers; [ raskin nckx ]; platforms = platforms.linux; - homepage = "http://mattmahoney.net/dc/zpaq.html"; }; } From ad3a4cf7d4fbc6c732b3e47a45845ec9ee7ece14 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 28 Apr 2016 13:29:01 +0200 Subject: [PATCH 043/337] zpaq: remove unused .upstream file --- pkgs/tools/archivers/zpaq/default.upstream | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 pkgs/tools/archivers/zpaq/default.upstream diff --git a/pkgs/tools/archivers/zpaq/default.upstream b/pkgs/tools/archivers/zpaq/default.upstream deleted file mode 100644 index 2d62f834647..00000000000 --- a/pkgs/tools/archivers/zpaq/default.upstream +++ /dev/null @@ -1,3 +0,0 @@ -url http://mattmahoney.net/dc/zpaq.html -version_link "/zpaq[0-9]+[.]zip" -version "[^0-9]*([0-9]+)[^0-9]*" '\1' From dcde0265a8c369361ff7be9a28f158b2d4bdadb8 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 28 Apr 2016 13:59:13 +0200 Subject: [PATCH 044/337] fatrace: 0.11 -> 0.12 --- pkgs/os-specific/linux/fatrace/default.nix | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pkgs/os-specific/linux/fatrace/default.nix b/pkgs/os-specific/linux/fatrace/default.nix index 5a34eee85e4..09da891a175 100644 --- a/pkgs/os-specific/linux/fatrace/default.nix +++ b/pkgs/os-specific/linux/fatrace/default.nix @@ -2,22 +2,13 @@ stdenv.mkDerivation rec { name = "fatrace-${version}"; - version = "0.11"; + version = "0.12"; src = fetchurl { url = "http://launchpad.net/fatrace/trunk/${version}/+download/${name}.tar.bz2"; - sha256 = "1f77v222nlfbf8fv7d28cnpm7x8xz0mhxavgz19c2jc51pjlv84s"; + sha256 = "0szn86rbbvmjcw192vjhhgc3v99s5lm2kg93gk1yzm6ay831grsh"; }; - patchFlags = "-p0"; - patches = [ - (fetchpatch { - sha256 = "0gym1zg42vb4czpbkz4shnc7z3lskn1ny6dpx10ykwf145xyf9m2"; - name = "fatrace-fix-crash-when-using-p-option.patch"; - url = "http://bazaar.launchpad.net/~pitti/fatrace/trunk/diff/67?context=3"; - }) - ]; - buildInputs = [ python3 which ]; postPatch = '' From 5e2bb0b31c892fed5024eaf7e93faf470a6ceb38 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 28 Apr 2016 16:42:16 +0300 Subject: [PATCH 045/337] pulseaudio: select correct outputs Original fixes by ttuegel and peterhoeg. --- nixos/modules/config/pulseaudio.nix | 12 ++++++------ nixos/modules/services/x11/desktop-managers/kde4.nix | 2 +- nixos/modules/services/x11/desktop-managers/kde5.nix | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/nixos/modules/config/pulseaudio.nix b/nixos/modules/config/pulseaudio.nix index f2db428a444..a964e04531c 100644 --- a/nixos/modules/config/pulseaudio.nix +++ b/nixos/modules/config/pulseaudio.nix @@ -98,9 +98,9 @@ in { package = mkOption { type = types.package; - default = pulseaudioLight.out; - defaultText = "pkgs.pulseaudioLight.out"; - example = literalExample "pkgs.pulseaudioFull.out"; + default = pulseaudioLight; + defaultText = "pkgs.pulseaudioLight"; + example = literalExample "pkgs.pulseaudioFull"; description = '' The PulseAudio derivation to use. This can be used to enable features (such as JACK support, Bluetooth) via the @@ -130,7 +130,7 @@ in { source = clientConf; }; - hardware.pulseaudio.configFile = mkDefault "${cfg.package.out}/etc/pulse/default.pa"; + hardware.pulseaudio.configFile = mkDefault "${getBin cfg.package}/etc/pulse/default.pa"; } (mkIf cfg.enable { @@ -158,7 +158,7 @@ in { wantedBy = [ "default.target" ]; serviceConfig = { Type = "notify"; - ExecStart = "${cfg.package.out}/bin/pulseaudio --daemonize=no"; + ExecStart = "${getBin cfg.package}/bin/pulseaudio --daemonize=no"; Restart = "on-failure"; }; }; @@ -195,7 +195,7 @@ in { environment.PULSE_RUNTIME_PATH = stateDir; serviceConfig = { Type = "notify"; - ExecStart = "${cfg.package.out}/bin/pulseaudio --daemonize=no --log-level=${cfg.daemon.logLevel} --system -n --file=${cfg.configFile}"; + ExecStart = "${getBin cfg.package}/bin/pulseaudio --daemonize=no --log-level=${cfg.daemon.logLevel} --system -n --file=${cfg.configFile}"; Restart = "on-failure"; }; }; diff --git a/nixos/modules/services/x11/desktop-managers/kde4.nix b/nixos/modules/services/x11/desktop-managers/kde4.nix index 80e408be492..79b4413a6e7 100644 --- a/nixos/modules/services/x11/desktop-managers/kde4.nix +++ b/nixos/modules/services/x11/desktop-managers/kde4.nix @@ -111,7 +111,7 @@ in # Load PulseAudio module for routing support. # See http://colin.guthr.ie/2009/10/so-how-does-the-kde-pulseaudio-support-work-anyway/ ${optionalString config.hardware.pulseaudio.enable '' - ${config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" + ${getBin config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" ''} # Start KDE. diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 70dc1ac2a26..584a0d4012d 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -59,7 +59,7 @@ in # Load PulseAudio module for routing support. # See http://colin.guthr.ie/2009/10/so-how-does-the-kde-pulseaudio-support-work-anyway/ ${optionalString config.hardware.pulseaudio.enable '' - ${config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" + ${getBin config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" ''} exec "${kde5.startkde}" From 98a7f819d9ad0f8799b14232c4b979fb604aa53e Mon Sep 17 00:00:00 2001 From: obadz Date: Fri, 15 Apr 2016 23:22:41 +0100 Subject: [PATCH 046/337] qt4: add a toplevel entry for the version skype uses Otherwise, it won't get built by hydra abbradar: use `self` as needed for overrides. --- pkgs/top-level/all-packages.nix | 6 +++--- pkgs/top-level/release.nix | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index adfd300d3fa..1254917f08e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8567,6 +8567,8 @@ in qt4 = self.kde4.qt4; + qt4_clang = lowPrio (self.qt4.override { stdenv = clangStdenv; }); + qt48 = callPackage ../development/libraries/qt-4.x/4.8 { # GNOME dependencies are not used unless gtkStyle == true mesa = mesa_noglu; @@ -13811,9 +13813,7 @@ in siproxd = callPackage ../applications/networking/siproxd { }; skype = callPackage_i686 ../applications/networking/instant-messengers/skype { - qt4 = pkgsi686Linux.qt4.override { - stdenv = pkgsi686Linux.clangStdenv; - }; + qt4 = pkgsi686Linux.qt4_clang; }; skype4pidgin = callPackage ../applications/networking/instant-messengers/pidgin-plugins/skype4pidgin { }; diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index dcdd27bfe50..763e891173c 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -182,6 +182,7 @@ let pythonFull = linux; sbcl = linux; qt3 = linux; + qt4_clang = ["i686-linux"]; quake3demo = linux; reiserfsprogs = linux; rubber = allBut cygwin; From c4440c9c744744198f423dfa69cf4d19399ced4c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 28 Apr 2016 17:06:09 +0300 Subject: [PATCH 047/337] Revert "pulseaudio: select correct outputs" This reverts commit 5e2bb0b31c892fed5024eaf7e93faf470a6ceb38. --- nixos/modules/config/pulseaudio.nix | 12 ++++++------ nixos/modules/services/x11/desktop-managers/kde4.nix | 2 +- nixos/modules/services/x11/desktop-managers/kde5.nix | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/nixos/modules/config/pulseaudio.nix b/nixos/modules/config/pulseaudio.nix index a964e04531c..f2db428a444 100644 --- a/nixos/modules/config/pulseaudio.nix +++ b/nixos/modules/config/pulseaudio.nix @@ -98,9 +98,9 @@ in { package = mkOption { type = types.package; - default = pulseaudioLight; - defaultText = "pkgs.pulseaudioLight"; - example = literalExample "pkgs.pulseaudioFull"; + default = pulseaudioLight.out; + defaultText = "pkgs.pulseaudioLight.out"; + example = literalExample "pkgs.pulseaudioFull.out"; description = '' The PulseAudio derivation to use. This can be used to enable features (such as JACK support, Bluetooth) via the @@ -130,7 +130,7 @@ in { source = clientConf; }; - hardware.pulseaudio.configFile = mkDefault "${getBin cfg.package}/etc/pulse/default.pa"; + hardware.pulseaudio.configFile = mkDefault "${cfg.package.out}/etc/pulse/default.pa"; } (mkIf cfg.enable { @@ -158,7 +158,7 @@ in { wantedBy = [ "default.target" ]; serviceConfig = { Type = "notify"; - ExecStart = "${getBin cfg.package}/bin/pulseaudio --daemonize=no"; + ExecStart = "${cfg.package.out}/bin/pulseaudio --daemonize=no"; Restart = "on-failure"; }; }; @@ -195,7 +195,7 @@ in { environment.PULSE_RUNTIME_PATH = stateDir; serviceConfig = { Type = "notify"; - ExecStart = "${getBin cfg.package}/bin/pulseaudio --daemonize=no --log-level=${cfg.daemon.logLevel} --system -n --file=${cfg.configFile}"; + ExecStart = "${cfg.package.out}/bin/pulseaudio --daemonize=no --log-level=${cfg.daemon.logLevel} --system -n --file=${cfg.configFile}"; Restart = "on-failure"; }; }; diff --git a/nixos/modules/services/x11/desktop-managers/kde4.nix b/nixos/modules/services/x11/desktop-managers/kde4.nix index 79b4413a6e7..80e408be492 100644 --- a/nixos/modules/services/x11/desktop-managers/kde4.nix +++ b/nixos/modules/services/x11/desktop-managers/kde4.nix @@ -111,7 +111,7 @@ in # Load PulseAudio module for routing support. # See http://colin.guthr.ie/2009/10/so-how-does-the-kde-pulseaudio-support-work-anyway/ ${optionalString config.hardware.pulseaudio.enable '' - ${getBin config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" + ${config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" ''} # Start KDE. diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 584a0d4012d..70dc1ac2a26 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -59,7 +59,7 @@ in # Load PulseAudio module for routing support. # See http://colin.guthr.ie/2009/10/so-how-does-the-kde-pulseaudio-support-work-anyway/ ${optionalString config.hardware.pulseaudio.enable '' - ${getBin config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" + ${config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" ''} exec "${kde5.startkde}" From 2e320a58b3f8749396148e9c663e74f0c5569dde Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Thu, 28 Apr 2016 15:21:40 +0200 Subject: [PATCH 048/337] diffoscope: 49 -> 52 --- pkgs/tools/misc/diffoscope/default.nix | 11 +++----- pkgs/tools/misc/diffoscope/ignore_links.patch | 25 +++++++++++++++++++ 2 files changed, 29 insertions(+), 7 deletions(-) create mode 100644 pkgs/tools/misc/diffoscope/ignore_links.patch diff --git a/pkgs/tools/misc/diffoscope/default.nix b/pkgs/tools/misc/diffoscope/default.nix index e54e83ef492..b916b91d5d2 100644 --- a/pkgs/tools/misc/diffoscope/default.nix +++ b/pkgs/tools/misc/diffoscope/default.nix @@ -6,22 +6,19 @@ pythonPackages.buildPythonApplication rec { name = "diffoscope-${version}"; - version = "49"; + version = "52"; namePrefix = ""; src = fetchgit { url = "git://anonscm.debian.org/reproducible/diffoscope.git"; rev = "refs/tags/${version}"; - sha256 = "0kh96h95rp7bk8rgc1z18jwv89dyp1n36bawqyqxhwwklmrgxr66"; + sha256 = "1a22abvjs8f8c4anrcfhn02xw7m2gl701b9csxy06c5ymib0npxd"; }; patches = - [ # Ignore different link counts and inode change times. - (fetchpatch { - url = https://github.com/edolstra/diffoscope/commit/367f77bba8df0dbc89e63c9f66f05736adf5ec59.patch; - sha256 = "0mnp7icdrjn02dr6f5dwqvvr848jzgkv3cg69a24234y9gxd30ww"; - }) + [ # Ignore different link counts. + ./ignore_links.patch ]; postPatch = '' diff --git a/pkgs/tools/misc/diffoscope/ignore_links.patch b/pkgs/tools/misc/diffoscope/ignore_links.patch new file mode 100644 index 00000000000..4e5046390fa --- /dev/null +++ b/pkgs/tools/misc/diffoscope/ignore_links.patch @@ -0,0 +1,25 @@ +From: Eelco Dolstra + +Nix deduplicates by hard-linking identical files, so it's normal for +the the number of links to a file to differ. +--- +diff --git a/diffoscope/comparators/directory.py b/diffoscope/comparators/directory.py +index 7d1cd75..bd91eb0 100644 +--- a/diffoscope/comparators/directory.py ++++ b/diffoscope/comparators/directory.py +@@ -47,6 +47,7 @@ class Stat(Command): + FILE_RE = re.compile(r'^\s*File:.*$') + DEVICE_RE = re.compile(r'Device: [0-9a-f]+h/[0-9]+d') + INODE_RE = re.compile(r'Inode: [0-9]+') ++ LINKS_RE = re.compile(r'Links: [0-9]+') + ACCESS_TIME_RE = re.compile(r'^Access: [0-9]{4}-[0-9]{2}-[0-9]{2}.*$') + CHANGE_TIME_RE = re.compile(r'^Change: [0-9]{4}-[0-9]{2}-[0-9]{2}.*$') + +@@ -55,6 +56,7 @@ class Stat(Command): + line = Stat.FILE_RE.sub('', line) + line = Stat.DEVICE_RE.sub('', line) + line = Stat.INODE_RE.sub('', line) ++ line = Stat.LINKS_RE.sub('', line) + line = Stat.ACCESS_TIME_RE.sub('', line) + line = Stat.CHANGE_TIME_RE.sub('', line) + return line.encode('utf-8') From 4f4037df6735a3dc7fc6afa325945bf04028f8a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 28 Apr 2016 11:59:21 -0300 Subject: [PATCH 049/337] albert: 0.8.7.2 -> 0.8.8 --- pkgs/applications/misc/albert/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/albert/default.nix b/pkgs/applications/misc/albert/default.nix index 5e6931ce78e..9a1bedd8927 100644 --- a/pkgs/applications/misc/albert/default.nix +++ b/pkgs/applications/misc/albert/default.nix @@ -2,16 +2,20 @@ stdenv.mkDerivation rec { name = "albert-${version}"; - version = "0.8.7.2"; + version = "0.8.8"; src = fetchFromGitHub { owner = "manuelschneid3r"; repo = "albert"; rev = "v${version}"; - sha256 = "04k6cawil6kqkmsilq5mpjy8lwgk0g08s0v23d5a83calpq3ljpc"; + sha256 = "1mqxy5xbvgzykg2vvr2d1p9kr2viga1pqxslkg9y1x05kdhr2zal"; }; - buildInputs = [ cmake qtbase qtsvg qtx11extras muparser makeQtWrapper ]; + nativeBuildInputs = [ cmake makeQtWrapper ]; + + buildInputs = [ qtbase qtsvg qtx11extras muparser ]; + + enableParallelBuilding = true; fixupPhase = '' wrapQtProgram $out/bin/albert From f690ccb26feef6ce17b14247ed83db88d86319d6 Mon Sep 17 00:00:00 2001 From: danbst Date: Thu, 28 Apr 2016 14:43:30 +0000 Subject: [PATCH 050/337] siege: 3.0.8 -> 4.0.1 --- pkgs/tools/networking/siege/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/networking/siege/default.nix b/pkgs/tools/networking/siege/default.nix index 976d8b3bc06..c4d68ee399a 100644 --- a/pkgs/tools/networking/siege/default.nix +++ b/pkgs/tools/networking/siege/default.nix @@ -1,18 +1,21 @@ -{ stdenv, fetchurl, openssl }: +{ stdenv, fetchurl, openssl, zlib }: stdenv.mkDerivation rec { - name = "siege-3.0.8"; + name = "siege-4.0.1"; src = fetchurl { url = "http://download.joedog.org/siege/${name}.tar.gz"; - sha256 = "15xj0cl64mzf89i0jknqg37rkrcaqmgs4755l74b4nmp4bky7ddq"; + sha256 = "0dr8k64s7zlhy3w8n1br0h6xd06p09p9809l9rp13isf10jp5pgx"; }; NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s"; - buildInputs = [ openssl ]; + buildInputs = [ openssl zlib ]; - configureFlags = [ "--with-ssl=${openssl.dev}" ]; + configureFlags = [ + "--with-ssl=${openssl.dev}" + "--with-zlib=${zlib.dev}" + ]; meta = with stdenv.lib; { description = "HTTP load tester"; From 63d016b3359355b8a75da1d9f27ea3a6d134c2e0 Mon Sep 17 00:00:00 2001 From: Simon Vandel Sillesen Date: Thu, 28 Apr 2016 18:09:55 +0200 Subject: [PATCH 051/337] qbittorrent: 3.3.3 -> 3.3.4 --- pkgs/applications/networking/p2p/qbittorrent/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix index 31931aa75d9..d0e938c1b30 100644 --- a/pkgs/applications/networking/p2p/qbittorrent/default.nix +++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix @@ -10,11 +10,11 @@ assert guiSupport -> (dbus_libs != null); with stdenv.lib; stdenv.mkDerivation rec { name = "qbittorrent-${version}"; - version = "3.3.3"; + version = "3.3.4"; src = fetchurl { url = "mirror://sourceforge/qbittorrent/${name}.tar.xz"; - sha256 = "0lyv230vqwb77isjqm6fwwgv8hdap88zir9yrccj0qxj7zf8p3cw"; + sha256 = "1f4impsjck8anl39pwypsck7j6xw0dl18qd0b4xi23r45jvx9l60"; }; nativeBuildInputs = [ pkgconfig which ]; From f5038319560320abbdd0e802b3aa131f20ec4ba8 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Thu, 28 Apr 2016 18:09:41 +0200 Subject: [PATCH 052/337] herbstluftwm: 0.6.2 -> 0.7.0. --- pkgs/applications/window-managers/herbstluftwm/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/herbstluftwm/default.nix b/pkgs/applications/window-managers/herbstluftwm/default.nix index 8b6422df828..024c9e5c796 100644 --- a/pkgs/applications/window-managers/herbstluftwm/default.nix +++ b/pkgs/applications/window-managers/herbstluftwm/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, glib, libX11, libXext, libXinerama }: stdenv.mkDerivation rec { - name = "herbstluftwm-0.6.2"; + name = "herbstluftwm-0.7.0"; src = fetchurl { url = "http://herbstluftwm.org/tarballs/${name}.tar.gz"; - sha256 = "1b7h2zi0i9j17k1z62qw5zq7j9i8gv33pmcxnfiilzzfg8wmr7x8"; + sha256 = "09xfs213vg1dpird61wik5bqb9yf8kh63ssy18ihf54inwqgqbvy"; }; patchPhase = '' @@ -22,5 +22,6 @@ stdenv.mkDerivation rec { homepage = "http://herbstluftwm.org/"; license = stdenv.lib.licenses.bsd2; platforms = stdenv.lib.platforms.linux; + maintainers = with stdenv.lib.maintainers; [ the-kenny ]; }; } From 0452b58f0fac57b50291de9b541e47388ccea7e1 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 28 Apr 2016 18:36:09 +0200 Subject: [PATCH 053/337] gobject-introspection: fix on darwin --- .../gobject-introspection/darwin-fixups.patch | 26 ------------------- .../gobject-introspection/default.nix | 3 --- 2 files changed, 29 deletions(-) delete mode 100644 pkgs/development/libraries/gobject-introspection/darwin-fixups.patch diff --git a/pkgs/development/libraries/gobject-introspection/darwin-fixups.patch b/pkgs/development/libraries/gobject-introspection/darwin-fixups.patch deleted file mode 100644 index 02443d56afa..00000000000 --- a/pkgs/development/libraries/gobject-introspection/darwin-fixups.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff -ur gobject-introspection-1.46.0-orig/giscanner/ccompiler.py gobject-introspection-1.46.0/giscanner/ccompiler.py ---- gobject-introspection-1.46.0-orig/giscanner/ccompiler.py 2016-02-01 12:25:41.000000000 -0500 -+++ gobject-introspection-1.46.0/giscanner/ccompiler.py 2016-02-01 15:50:36.000000000 -0500 -@@ -128,11 +128,7 @@ - self.compiler.add_runtime_library_dir('.') - - # https://bugzilla.gnome.org/show_bug.cgi?id=625195 -- args.append('-Wl,-rpath=.') -- -- # Ensure libraries are always linked as we are going to use ldd to work -- # out their names later -- args.append('-Wl,--no-as-needed') -+ args.append('-Wl,-rpath,.') - - for library in libraries: - self.compiler.add_library(library) -@@ -140,7 +136,7 @@ - for library_path in libpaths: - args.append('-L' + library_path) - if os.path.isabs(library_path): -- args.append('-Wl,-rpath=' + library_path) -+ args.append('-Wl,-rpath,' + library_path) - - else: - # libtool case: assemble linker command arguments, like we did before -Only in gobject-introspection-1.46.0/giscanner: ccompiler.py~ diff --git a/pkgs/development/libraries/gobject-introspection/default.nix b/pkgs/development/libraries/gobject-introspection/default.nix index 55abb21845b..0b48ef076b1 100644 --- a/pkgs/development/libraries/gobject-introspection/default.nix +++ b/pkgs/development/libraries/gobject-introspection/default.nix @@ -40,9 +40,6 @@ stdenv.mkDerivation rec { patches = stdenv.lib.singleton (substituteAll { src = ./absolute_shlib_path.patch; inherit nixStoreDir; - }) ++ optional stdenv.isDarwin (substituteAll { - src = ./darwin-fixups.patch; - inherit nixStoreDir; }); meta = with stdenv.lib; { From bdaf6503366190b33651b36466934d7639d978b2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Apr 2016 11:27:06 +0200 Subject: [PATCH 054/337] ghc: update 8.0.x version to rc4 --- pkgs/development/compilers/ghc/8.0.1.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/ghc/8.0.1.nix b/pkgs/development/compilers/ghc/8.0.1.nix index 404e7e5cc28..656dedc922d 100644 --- a/pkgs/development/compilers/ghc/8.0.1.nix +++ b/pkgs/development/compilers/ghc/8.0.1.nix @@ -7,12 +7,12 @@ let in stdenv.mkDerivation rec { - version = "8.0.0.20160411"; + version = "8.0.0.20160421"; name = "ghc-${version}"; src = fetchurl { - url = "https://downloads.haskell.org/~ghc/8.0.1-rc3/${name}-src.tar.xz"; - sha256 = "0cgk0li3pwag65xcrjci8l840aphklymjfmsrq0qpdi8bpsmi97d"; + url = "https://downloads.haskell.org/~ghc/8.0.1-rc4/${name}-src.tar.xz"; + sha256 = "183p1ilk8rlndi1vmg2vmlx00s18q3j31kin85qpbvicsxb8j1j1"; }; patches = [ From 4a0cbae0702eed8ea8d9d3141f022ff4db71db58 Mon Sep 17 00:00:00 2001 From: Yochai Meir Date: Thu, 28 Apr 2016 20:31:14 +0300 Subject: [PATCH 055/337] eclipse: fix build error --- pkgs/applications/editors/eclipse/build-eclipse.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/eclipse/build-eclipse.nix b/pkgs/applications/editors/eclipse/build-eclipse.nix index 074a622667f..e6828e6adad 100644 --- a/pkgs/applications/editors/eclipse/build-eclipse.nix +++ b/pkgs/applications/editors/eclipse/build-eclipse.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { tar xfvz $src -C $out # Patch binaries. - interpreter=$(echo ${stdenv.glibc}/lib/ld-linux*.so.2) + interpreter=$(echo ${stdenv.glibc.out}/lib/ld-linux*.so.2) libCairo=$out/eclipse/libcairo-swt.so patchelf --set-interpreter $interpreter $out/eclipse/eclipse [ -f $libCairo ] && patchelf --set-rpath ${freetype}/lib:${fontconfig}/lib:${libX11}/lib:${libXrender}/lib:${zlib}/lib $libCairo @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { makeWrapper $out/eclipse/eclipse $out/bin/eclipse \ --prefix PATH : ${jdk}/bin \ - --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib${stdenv.lib.optionalString (webkitgtk2 != null) ":${webkitgtk2}/lib"} \ + --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk.out}/lib:${libXtst}/lib${stdenv.lib.optionalString (webkitgtk2 != null) ":${webkitgtk2}/lib"} \ --add-flags "-configuration \$HOME/.eclipse/''${productId}_$productVersion/configuration" # Create desktop item. From 72764178704119d451f3aee5f9d9b861d8e2ebb1 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 28 Apr 2016 20:46:34 +0300 Subject: [PATCH 056/337] kernel config: Enable BINFMT_MISC This is enabled in x86 builds but lacking on ARM. --- pkgs/os-specific/linux/kernel/common-config.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index 6ba1234673b..485cdd76f6a 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -496,6 +496,9 @@ with stdenv.lib; BINFMT_SCRIPT y ''} + # For systemd-binfmt + BINFMT_MISC? y + # Enable the 9P cache to speed up NixOS VM tests. 9P_FSCACHE? y 9P_FS_POSIX_ACL? y From 89ce5d4b96264176ec542e090fc33d90d445d0e3 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 28 Apr 2016 20:48:33 +0300 Subject: [PATCH 057/337] ddclient: Fix build after multiple outputs merge --- pkgs/tools/networking/ddclient/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/networking/ddclient/default.nix b/pkgs/tools/networking/ddclient/default.nix index 53a0f4c3e6d..333292d9fab 100644 --- a/pkgs/tools/networking/ddclient/default.nix +++ b/pkgs/tools/networking/ddclient/default.nix @@ -9,6 +9,8 @@ buildPerlPackage rec { sha256 = "1j8zdn7fy7i0bjk3jf0hxnbnshc2yf054vxq64imxdpfd7n5zgfy"; }; + outputs = [ "out" ]; + buildInputs = [ perlPackages.IOSocketSSL perlPackages.DigestSHA1 ]; patches = [ ./ddclient-line-buffer-stdout.patch ]; From 650e9b25bdef9074cb01036c401b8713462fc2d3 Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Fri, 29 Apr 2016 02:47:48 +0800 Subject: [PATCH 058/337] ltwheelconf: init at 0.2.7 --- .../applications/misc/ltwheelconf/default.nix | 29 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/applications/misc/ltwheelconf/default.nix diff --git a/pkgs/applications/misc/ltwheelconf/default.nix b/pkgs/applications/misc/ltwheelconf/default.nix new file mode 100644 index 00000000000..5450f5f2fc8 --- /dev/null +++ b/pkgs/applications/misc/ltwheelconf/default.nix @@ -0,0 +1,29 @@ +{ stdenv, libusb1, pkgconfig, fetchFromGitHub }: + +stdenv.mkDerivation rec { + pname = "ltwheelconf"; + version = "0.2.7"; + name = "${pname}-${version}"; + + src = fetchFromGitHub { + owner = "thk"; + repo = "ltwheelconf"; + rev = "df55451f059d593b0259431662612ab5c2bef859"; + sha256 = "1fsz7k73yln987gcx1jvb5irxfbp1x2c457a60a8yap27nkp5y2w"; + }; + + buildInputs = [ libusb1 pkgconfig ]; + + installPhase = '' + mkdir -p $out/bin + cp ltwheelconf $out/bin + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/thk/LTWheelConf; + description = "Logitech wheels configuration tool"; + license = licenses.gpl3; + maintainers = [ maintainers.ebzzry ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 76a657cf1d5..342f0ce9a5e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2132,6 +2132,8 @@ in lua = lua5_2_compat; }; + ltwheelconf = callPackage ../applications/misc/ltwheelconf { }; + kippo = callPackage ../servers/kippo { }; kzipmix = callPackage_i686 ../tools/compression/kzipmix { }; From 49b947635fead9f7da703e2ee75667c1273eb34c Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Wed, 30 Mar 2016 20:46:31 +0200 Subject: [PATCH 059/337] graylog: init at 2.0.0 --- pkgs/tools/misc/graylog/default.nix | 27 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/tools/misc/graylog/default.nix diff --git a/pkgs/tools/misc/graylog/default.nix b/pkgs/tools/misc/graylog/default.nix new file mode 100644 index 00000000000..a3952f7903b --- /dev/null +++ b/pkgs/tools/misc/graylog/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + version = "2.0.0"; + name = "graylog-${version}"; + + src = fetchurl { + url = "https://packages.graylog2.org/releases/graylog/graylog-${version}.tgz"; + sha256 = "0qn2rf2aarfr34387fiv34rmav20c66b4zs9bkm8gpvj0laxrqh2"; + }; + + dontBuild = true; + dontStrip = true; + + installPhase = '' + mkdir -p $out + cp -r {graylog.jar,lib,bin,plugin,data} $out + ''; + + meta = with stdenv.lib; { + description = "Open source log management solution"; + homepage = https://www.graylog.org/; + license = licenses.gpl3; + platforms = platforms.unix; + maintainers = [ maintainers.fadenb ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1254917f08e..f7a7211de3a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1751,6 +1751,8 @@ in grails = callPackage ../development/web/grails { jdk = null; }; + graylog = callPackage ../tools/misc/graylog { }; + gprof2dot = callPackage ../development/tools/profiling/gprof2dot { # Using pypy provides significant performance improvements (~2x) pythonPackages = pypyPackages; From e48580c0831420bd0446c1db3d174bb618cc998f Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Wed, 30 Mar 2016 20:49:16 +0200 Subject: [PATCH 060/337] graylog service: Initial graylog service --- nixos/modules/misc/ids.nix | 1 + nixos/modules/module-list.nix | 1 + nixos/modules/services/logging/graylog.nix | 161 +++++++++++++++++++++ 3 files changed, 163 insertions(+) create mode 100644 nixos/modules/services/logging/graylog.nix diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index 684ca132bc7..7e40c136667 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -264,6 +264,7 @@ taskd = 240; factorio = 241; emby = 242; + graylog = 243; # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index ec14fd2e363..b92361f628b 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -183,6 +183,7 @@ ./services/hardware/thermald.nix ./services/logging/awstats.nix ./services/logging/fluentd.nix + ./services/logging/graylog.nix ./services/logging/klogd.nix ./services/logging/logcheck.nix ./services/logging/logrotate.nix diff --git a/nixos/modules/services/logging/graylog.nix b/nixos/modules/services/logging/graylog.nix new file mode 100644 index 00000000000..a7785decd19 --- /dev/null +++ b/nixos/modules/services/logging/graylog.nix @@ -0,0 +1,161 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.graylog; + configBool = b: if b then "true" else "false"; + + confFile = pkgs.writeText "graylog.conf" '' + is_master = ${configBool cfg.isMaster} + node_id_file = ${cfg.nodeIdFile} + password_secret = ${cfg.passwordSecret} + root_username = ${cfg.rootUsername} + root_password_sha2 = ${cfg.rootPasswordSha2} + elasticsearch_cluster_name = ${cfg.elasticsearchClusterName} + elasticsearch_discovery_zen_ping_multicast_enabled = ${configBool cfg.elasticsearchDiscoveryZenPingMulticastEnabled} + elasticsearch_discovery_zen_ping_unicast_hosts = ${cfg.elasticsearchDiscoveryZenPingUnicastHosts} + message_journal_dir = ${cfg.messageJournalDir} + mongodb_uri = ${cfg.mongodbUri} + + ${cfg.extraConfig} + ''; +in + +{ + ###### interface + + options = { + + services.graylog = { + + enable = mkEnableOption "Graylog"; + + package = mkOption { + type = types.package; + default = pkgs.graylog; + defaultText = "pkgs.graylog"; + example = literalExample "pkgs.graylog"; + description = "Graylog package to use."; + }; + + user = mkOption { + type = types.str; + default = "graylog"; + example = literalExample "graylog"; + description = "User account under which graylog runs"; + }; + + isMaster = mkOption { + type = types.bool; + default = true; + description = "Whether this is the master instance of your Graylog cluster"; + }; + + nodeIdFile = mkOption { + type = types.str; + default = "/var/lib/graylog/server/node-id"; + description = "Path of the file containing the graylog node-id"; + }; + + passwordSecret = mkOption { + type = types.str; + description = '' + You MUST set a secret to secure/pepper the stored user passwords here. Use at least 64 characters. + Generate one by using for example: pwgen -N 1 -s 96 + ''; + }; + + rootUsername = mkOption { + type = types.str; + default = "admin"; + description = "Name of the default administrator user"; + }; + + rootPasswordSha2 = mkOption { + type = types.str; + example = "e3c652f0ba0b4801205814f8b6bc49672c4c74e25b497770bb89b22cdeb4e952"; + description = '' + You MUST specify a hash password for the root user (which you only need to initially set up the + system and in case you lose connectivity to your authentication backend) + This password cannot be changed using the API or via the web interface. If you need to change it, + modify it here. + Create one by using for example: echo -n yourpassword | shasum -a 256 + and use the resulting hash value as string for the option + ''; + }; + + elasticsearchClusterName = mkOption { + type = types.str; + example = "graylog"; + description = "This must be the same as for your Elasticsearch cluster"; + }; + + elasticsearchDiscoveryZenPingMulticastEnabled = mkOption { + type = types.bool; + default = false; + description = "Whether to use elasticsearch multicast discovery"; + }; + + elasticsearchDiscoveryZenPingUnicastHosts = mkOption { + type = types.str; + default = "127.0.0.1:9300"; + description = "Tells Graylogs Elasticsearch client how to find other cluster members. See Elasticsearch documentation for details"; + }; + + messageJournalDir = mkOption { + type = types.str; + default = "/var/lib/graylog/data/journal"; + description = "The directory which will be used to store the message journal. The directory must be exclusively used by Graylog and must not contain any other files than the ones created by Graylog itself"; + }; + + mongodbUri = mkOption { + type = types.str; + default = "mongodb://localhost/graylog"; + description = "MongoDB connection string. See http://docs.mongodb.org/manual/reference/connection-string/ for details"; + }; + + extraConfig = mkOption { + type = types.str; + default = ""; + description = "Any other configuration options you might want to add"; + }; + + }; + }; + + + ###### implementation + + config = mkIf cfg.enable { + + users.extraUsers = mkIf (cfg.user == "graylog") { + graylog = { + uid = config.ids.uids.graylog; + description = "Graylog server daemon user"; + }; + }; + + systemd.services.graylog = with pkgs; { + description = "Graylog Server"; + wantedBy = [ "multi-user.target" ]; + environment = { + JAVA_HOME = jre; + GRAYLOG_CONF = "${confFile}"; + }; + path = [ pkgs.openjdk8 pkgs.which pkgs.procps ]; + preStart = '' + mkdir -p /var/lib/graylog -m 755 + chown -R ${cfg.user} /var/lib/graylog + + mkdir -p ${cfg.messageJournalDir} -m 755 + chown -R ${cfg.user} ${cfg.messageJournalDir} + ''; + serviceConfig = { + User="${cfg.user}"; + PermissionsStartOnly=true; + ExecStart = "${cfg.package}/bin/graylogctl run"; + }; + }; + }; +} From 38ea8c6c30ac7be2a89e38395e2dc2c80563e9ec Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 28 Apr 2016 18:15:36 +0200 Subject: [PATCH 061/337] torbrowser: 5.5.4 -> 5.5.5 --- pkgs/tools/security/tor/torbrowser.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index c320e7e58b6..849c6f8b85a 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -17,13 +17,13 @@ let in stdenv.mkDerivation rec { name = "tor-browser-${version}"; - version = "5.5.4"; + version = "5.5.5"; src = fetchurl { url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${if stdenv.is64bit then "64" else "32"}-${version}_en-US.tar.xz"; sha256 = if stdenv.is64bit then - "0sjx2r7z7s3x1ygs9xak1phng13jcf4d5pcfyfrfsrd8kb1yn8xa" else - "0w9wk9hk57hyhhx7l4sr2x64ki9882fr6py2can1slr7kbb4mhpb"; + "0k6v41j880fb4zdxk1v13kmizdaz5rwvi5lskdbdi68iml4p53gj" else + "04mqjmnxwa75yi8gmdwadkzrzikgxn08bkvr50zdm7id9fj4nkza"; }; desktopItem = makeDesktopItem { From 4741627bcf60e9b16cd767a8d3ded6bcbf3691b2 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 28 Apr 2016 19:04:23 +0200 Subject: [PATCH 062/337] torbrowser: fix argument handling in wrapper With $@ unquoted, the wrapper would always just pass "" to firefox --- pkgs/tools/security/tor/torbrowser.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index 849c6f8b85a..910e6d1603a 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -65,7 +65,7 @@ in stdenv.mkDerivation rec { ~/Data/Browser/profile.default/preferences/extension-overrides.js fi export LD_LIBRARY_PATH=${ldLibraryPath}:$out/share/tor-browser/Browser/TorBrowser/Tor - $out/share/tor-browser/Browser/firefox -no-remote -profile ~/Data/Browser/profile.default "$@" + $out/share/tor-browser/Browser/firefox -no-remote -profile ~/Data/Browser/profile.default "\$@" EOF chmod +x $out/bin/tor-browser From cdd636967913b5a2bb5ef64640f4e61e1d8dbce8 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 28 Apr 2016 19:21:42 +0200 Subject: [PATCH 063/337] torbrowser: add myself to maintainers --- pkgs/tools/security/tor/torbrowser.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index 910e6d1603a..26def44672d 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -82,6 +82,6 @@ in stdenv.mkDerivation rec { description = "Tor Browser Bundle"; homepage = https://www.torproject.org/; platforms = platforms.linux; - maintainers = with maintainers; [ offline matejc doublec thoughtpolice ]; + maintainers = with maintainers; [ offline matejc doublec thoughtpolice joachifm ]; }; } From 0798ebbfc59dc1c438f9e9e7f639f02b0f9014c3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 28 Apr 2016 23:48:36 +0200 Subject: [PATCH 064/337] geolite-legacy: 2016-04-25 -> 2016-04-28 --- pkgs/data/misc/geolite-legacy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index 051c7de107d..022ee995cb5 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,7 +8,7 @@ let in stdenv.mkDerivation rec { name = "geolite-legacy-${version}"; - version = "2016-04-25"; + version = "2016-04-28"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { "12k4nmfblm9c7kj4v7cyl6sgfgdfv2jdx4fl7nxfzpk1km7yc5na"; srcGeoLiteCity = fetchDB "GeoLiteCity.dat.xz" "GeoIPCity.dat.xz" - "1l6pnlapc9ky3k6wznlhi013i7r3i68x3b5bmkgbvnxadjjdwszw"; + "190c5bq63rzkvvfrgiwgd5j0rk9qdq6vx16w28kraq8pwz0dcb2f"; srcGeoLiteCityv6 = fetchDB "GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz" "11igx6r0fypih5i3f0mrcv044pivnl45mq6pkq81i81cv28hfcn8"; From 6dac18a8be264b52577f2ac4fc9c1e04ccb7e39f Mon Sep 17 00:00:00 2001 From: Nathan Moos Date: Thu, 28 Apr 2016 16:53:00 -0400 Subject: [PATCH 065/337] imatix_gsl: init at 4.1 --- lib/maintainers.nix | 1 + pkgs/development/tools/imatix_gsl/default.nix | 30 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 33 insertions(+) create mode 100644 pkgs/development/tools/imatix_gsl/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index ae38b7acf6a..2bf60c585fc 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -236,6 +236,7 @@ mirdhyn = "Merlin Gaillard "; modulistic = "Pablo Costa "; mog = "Matthew O'Gorman "; + moosingin3space = "Nathan Moos "; moretea = "Maarten Hoogendoorn "; mornfall = "Petr Ročkai "; MostAwesomeDude = "Corbin Simpson "; diff --git a/pkgs/development/tools/imatix_gsl/default.nix b/pkgs/development/tools/imatix_gsl/default.nix new file mode 100644 index 00000000000..0def514dec5 --- /dev/null +++ b/pkgs/development/tools/imatix_gsl/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchFromGitHub, pcre } : + +stdenv.mkDerivation rec { + name = "imatix_gsl"; + version = "4.1"; + src = fetchFromGitHub { + owner = "imatix"; + repo = "gsl"; + rev = "72192d0d9de17de08d9379602d6482b4e5d402d0"; + sha256 = "1apy11avgqc27xlczyjh15y10qjdyqsqab1wrl2067qgpdiy58w7"; + }; + + buildInputs = [ pcre ]; + + preBuild = '' + cd src + ''; + + installFlags = "DESTDIR=$(out)"; + + meta = with stdenv.lib; { + license = licenses.gpl3Plus; + homepage = "https://github.com/imatix/gsl"; + description = '' + A universal code generator + ''; + platforms = platforms.unix; + maintainer = [ maintainers.moosingin3space ]; + }; +} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1254917f08e..278da1c0638 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16677,4 +16677,6 @@ in golden-cheetah = qt5.callPackage ../applications/misc/golden-cheetah {}; tomb = callPackage ../os-specific/linux/tomb {}; + + imatix_gsl = callPackage ../development/tools/imatix_gsl {}; } From 0da43bdc1d52de7d5febf3761736c41b1e47edf2 Mon Sep 17 00:00:00 2001 From: Brad Ediger Date: Thu, 28 Apr 2016 17:30:08 -0500 Subject: [PATCH 066/337] spotify: 1.0.27 -> 1.0.28 --- pkgs/applications/audio/spotify/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index 0875ca939ee..d6db4403d77 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -5,7 +5,7 @@ assert stdenv.system == "x86_64-linux"; let - version = "1.0.27.71.g0a26e3b2-9"; + version = "1.0.28.89.gf959d4ce-37"; deps = [ alsaLib @@ -50,7 +50,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_${version}_amd64.deb"; - sha256 = "1rs08cvn0y1lzazlmzj4sn2iyacadwi6j70n5c7rvfvvs4p61p42"; + sha256 = "06v6fmjn0zi1riqhbmwkrq4m1q1vs95p348i8c12hqvsrp0g2qy5"; }; buildInputs = [ dpkg makeWrapper ]; From 25290a9f15b081a24a5f515792373bbc41bd982a Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Thu, 28 Apr 2016 23:54:05 +0000 Subject: [PATCH 067/337] vivaldi: 1.0 -> 1.1 --- .../networking/browsers/vivaldi/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/browsers/vivaldi/default.nix b/pkgs/applications/networking/browsers/vivaldi/default.nix index 7c3c167cf32..6028bb1fe07 100644 --- a/pkgs/applications/networking/browsers/vivaldi/default.nix +++ b/pkgs/applications/networking/browsers/vivaldi/default.nix @@ -10,23 +10,23 @@ }: let - archUrl = name: arch: "https://vivaldi.com/download/stable/${name}_${arch}.deb"; + archUrl = name: arch: "https://downloads.vivaldi.com/stable/${name}_${arch}.deb"; in stdenv.mkDerivation rec { - version = "1.0"; - debversion = "stable_1.0.435.40-1"; + version = "1.1"; + debversion = "stable_1.1.453.47-1"; product = "vivaldi"; name = "${product}-${version}"; src = if stdenv.system == "x86_64-linux" then fetchurl { url = archUrl "vivaldi-${debversion}" "amd64"; - sha256 = "12c051a40258a95f9594eed2f73fa5f591482ac2a41d5cf643811b1ea2a1efbf"; + sha256 = "09kadsi4ydjciq092i6linapqzjdzx915zqmz7vfq6w1yp9mqbwq"; } else if stdenv.system == "i686-linux" then fetchurl { url = archUrl "vivaldi-${debversion}" "i386"; - sha256 = "6e0b84fba38211bab9a71bc10e97398fca77c0acd82791923c1d432b20846f0f"; + sha256 = "0b5410phnkpg6sz0j345vdn0r6n89rm865bchqw8p4kx7pmy78z3"; } else throw "Vivaldi is not supported on ${stdenv.system} (only i686-linux and x86_64 linux are supported)"; @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { libXi libXft libXcursor libXfixes libXScrnSaver libXcomposite libXdamage libXtst libXrandr atk alsaLib dbus_libs cups gtk gdk_pixbuf libexif ffmpeg libudev freetype fontconfig libXrender libuuid expat glib nss nspr - gstreamer libxml2 gst_plugins_base pango cairo gnome3.gconf + gstreamer libxml2 gst_plugins_base pango cairo gnome3.gconf patchelf ]; From c4949476761215e5e736e77e054535ab49a0f983 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Thu, 28 Apr 2016 23:59:52 +0000 Subject: [PATCH 068/337] linux_testing: 4.6-rc4 -> 4.6-rc5 --- pkgs/os-specific/linux/kernel/linux-testing.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index fb1bf73ad0e..df30119b38d 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.6-rc4"; - modDirVersion = "4.6.0-rc4"; + version = "4.6-rc5"; + modDirVersion = "4.6.0-rc5"; extraMeta.branch = "4.6"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "1c6y6ry8nll8mab0xwwkmpwzp2k4rbp7jl3f4ihi7g2kv2678cbp"; + sha256 = "1795yq1bliyvfzb2a8rkldxfcjxq5frspr74cp5v0g37bamdrwvd"; }; features.iwlwifi = true; From 5bd88a3e41b14df4f1e80359d47dc0be080d509a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 28 Apr 2016 21:22:46 -0300 Subject: [PATCH 069/337] grepmail: set outputs to out only --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 89706545031..7a608ccd8ed 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5551,6 +5551,7 @@ let self = _self // overrides; _self = with self; { }; buildInputs = [ FileSlurp URI ]; propagatedBuildInputs = [ DateManip DigestMD5 MailMboxMessageParser TimeDate ]; + outputs = [ "out" ]; meta = { homepage = https://github.com/coppit/grepmail; description = "Search mailboxes for mail matching a regular expression"; From cf8261135121cc4080d0fcc5024baba4df5e7235 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 26 Apr 2016 23:28:39 +0200 Subject: [PATCH 070/337] pycairo: enable for python35 The patch was taken from FreeBSD, it is also used on debian. see: https://svnweb.freebsd.org/ports/head/graphics/py3-cairo/files/pycairo-1.10.0-waf-py3_5.patch?revision=401900&view=markup --- pkgs/development/python-modules/pycairo/default.nix | 5 ++++- .../development/python-modules/pycairo/waf-py3_5.patch | 10 ++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/python-modules/pycairo/waf-py3_5.patch diff --git a/pkgs/development/python-modules/pycairo/default.nix b/pkgs/development/python-modules/pycairo/default.nix index 84dfdd32a10..433eb9d6b2a 100644 --- a/pkgs/development/python-modules/pycairo/default.nix +++ b/pkgs/development/python-modules/pycairo/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, fetchpatch, python, pkgconfig, cairo, xlibsWrapper, isPyPy, isPy35 }: -if (isPyPy || isPy35) then throw "pycairo not supported for interpreter ${python.executable}" else stdenv.mkDerivation rec { +if (isPyPy) then throw "pycairo not supported for interpreter ${python.executable}" else stdenv.mkDerivation rec { version = "1.10.0"; name = "${python.libPrefix}-pycairo-${version}"; src = if python.is_py3k or false @@ -23,6 +23,8 @@ if (isPyPy || isPy35) then throw "pycairo not supported for interpreter ${python sha256 = "0xfl1i9dips2nykyg91f5h5r3xpk2hp1js1gq5z0hwjr0in55id4"; }; + patch_waf-py3_5 = ./waf-py3_5.patch; + buildInputs = [ python pkgconfig cairo xlibsWrapper ]; configurePhase = '' @@ -30,6 +32,7 @@ if (isPyPy || isPy35) then throw "pycairo not supported for interpreter ${python cd $(${python.executable} waf unpack) pwd patch -p1 < ${patch_waf} + ${stdenv.lib.optionalString isPy35 "patch -p1 < ${patch_waf-py3_5}"} ) ${python.executable} waf configure --prefix=$out diff --git a/pkgs/development/python-modules/pycairo/waf-py3_5.patch b/pkgs/development/python-modules/pycairo/waf-py3_5.patch new file mode 100644 index 00000000000..dcfdbea2fbd --- /dev/null +++ b/pkgs/development/python-modules/pycairo/waf-py3_5.patch @@ -0,0 +1,10 @@ +--- a/waflib/Build.py ++++ b/waflib/Build.py +@@ -151,6 +151,7 @@ class BuildContext(Context.Context): + f.close() + self.init_dirs() + def store(self): ++ return + data={} + for x in SAVED_ATTRS: + data[x]=getattr(self,x) From 1142b402a84b9eab3309d60c00739ae73d42673e Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Fri, 29 Apr 2016 01:05:41 +0000 Subject: [PATCH 071/337] vivaldi: Clean up --- .../networking/browsers/vivaldi/default.nix | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/pkgs/applications/networking/browsers/vivaldi/default.nix b/pkgs/applications/networking/browsers/vivaldi/default.nix index 6028bb1fe07..2c6ba3f8929 100644 --- a/pkgs/applications/networking/browsers/vivaldi/default.nix +++ b/pkgs/applications/networking/browsers/vivaldi/default.nix @@ -10,25 +10,25 @@ }: let - archUrl = name: arch: "https://downloads.vivaldi.com/stable/${name}_${arch}.deb"; -in -stdenv.mkDerivation rec { - version = "1.1"; - debversion = "stable_1.1.453.47-1"; + version = "1.1"; + build = "453.47-1"; + fullVersion = "stable_${version}.${build}"; + + info = if stdenv.is64bit then { + arch = "amd64"; + sha256 = "09kadsi4ydjciq092i6linapqzjdzx915zqmz7vfq6w1yp9mqbwq"; + } else { + arch = "i386"; + sha256 = "0b5410phnkpg6sz0j345vdn0r6n89rm865bchqw8p4kx7pmy78z3"; + }; +in stdenv.mkDerivation rec { product = "vivaldi"; name = "${product}-${version}"; - src = if stdenv.system == "x86_64-linux" - then fetchurl { - url = archUrl "vivaldi-${debversion}" "amd64"; - sha256 = "09kadsi4ydjciq092i6linapqzjdzx915zqmz7vfq6w1yp9mqbwq"; - } - else if stdenv.system == "i686-linux" - then fetchurl { - url = archUrl "vivaldi-${debversion}" "i386"; - sha256 = "0b5410phnkpg6sz0j345vdn0r6n89rm865bchqw8p4kx7pmy78z3"; - } - else throw "Vivaldi is not supported on ${stdenv.system} (only i686-linux and x86_64 linux are supported)"; + src = fetchurl { + inherit (info) sha256; + url = "https://downloads.vivaldi.com/stable/${product}-${fullVersion}_${info.arch}.deb"; + }; unpackPhase = '' ar vx ${src} @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { ]; libPath = stdenv.lib.makeLibraryPath buildInputs - + stdenv.lib.optionalString (stdenv.system == "x86_64-linux") + + stdenv.lib.optionalString (stdenv.is64bit) (":" + stdenv.lib.makeSearchPathOutputs "lib64" ["lib"] buildInputs); buildPhase = '' @@ -71,7 +71,7 @@ stdenv.mkDerivation rec { description = "A Browser for our Friends, powerful and personal"; homepage = "https://vivaldi.com"; license = licenses.unfree; - maintainers = with maintainers; [ otwieracz ]; + maintainers = with maintainers; [ otwieracz nequissimus ]; platforms = platforms.linux; }; } From 934a460fd2fdd7667fa2928275aa7e0cbcab5feb Mon Sep 17 00:00:00 2001 From: Rhys Date: Fri, 29 Apr 2016 09:00:38 +1000 Subject: [PATCH 072/337] v8: Build 3.16.14 on ARM --- pkgs/development/libraries/v8/3.16.14.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/v8/3.16.14.nix b/pkgs/development/libraries/v8/3.16.14.nix index c79357cd907..d9addab3030 100644 --- a/pkgs/development/libraries/v8/3.16.14.nix +++ b/pkgs/development/libraries/v8/3.16.14.nix @@ -3,7 +3,10 @@ assert readline != null; let - arch = if stdenv.is64bit then "x64" else "ia32"; + arch = if stdenv.isArm + then (if stdenv.is64bit then "arm64" else "arm") + else (if stdenv.is64bit then "x64" else "ia32"); + armHardFloat = stdenv.isArm && (stdenv.platform.gcc.float or null) == "hard"; in stdenv.mkDerivation rec { @@ -34,6 +37,7 @@ stdenv.mkDerivation rec { -Dconsole=readline \ -Dcomponent=shared_library \ -Dv8_target_arch=${arch} \ + ${lib.optionalString armHardFloat "-Dv8_use_arm_eabi_hardfloat=true"} \ --depth=. -Ibuild/standalone.gypi \ build/all.gyp ''; From fbbf910e230d016aa9eb5acdfd6efe1200d4bd69 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Fri, 29 Apr 2016 02:29:02 +0000 Subject: [PATCH 073/337] rpm: add lua support and a few propagatedBuildInputs It turns out that a surprising number of common packages use lua scripts in RPM files, and not having lua can lead to obscure failures. The propagatedBuildInputs stuff makes the librpm stuff more useful, since some of its headers didn't work without extra buildInputs before. --- pkgs/tools/package-management/rpm/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/package-management/rpm/default.nix b/pkgs/tools/package-management/rpm/default.nix index 24346fb0eb7..ab5574b07f1 100644 --- a/pkgs/tools/package-management/rpm/default.nix +++ b/pkgs/tools/package-management/rpm/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, libarchive, nspr, nss, popt, db, xz, python }: +{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, libarchive, nspr, nss, popt, db, xz, python, lua, pkgconfig }: stdenv.mkDerivation rec { name = "rpm-4.12.0"; @@ -8,7 +8,10 @@ stdenv.mkDerivation rec { sha256 = "18hk47hc755nslvb7xkq4jb095z7va0nlcyxdpxayc4lmb8mq3bp"; }; - buildInputs = [ cpio zlib bzip2 file libarchive nspr nss popt db xz python ]; + buildInputs = [ cpio zlib bzip2 file libarchive nspr nss db xz python lua pkgconfig ]; + + # rpm/rpmlib.h includes popt.h, and then the pkg-config file mentions these as linkage requirements + propagatedBuildInputs = [ popt nss db bzip2 libarchive ]; # Note: we don't add elfutils to buildInputs, since it provides a # bad `ld' and other stuff. @@ -21,7 +24,7 @@ stdenv.mkDerivation rec { substituteInPlace configure --replace 'python''${PYTHON_VERSION}' ${python.executable} ''; - configureFlags = "--with-external-db --without-lua --enable-python"; + configureFlags = "--with-external-db --with-lua --enable-python"; meta = with stdenv.lib; { homepage = http://www.rpm.org/; From 7dd3a92c19f4c4170580bdac44b8b1eea376e17e Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Fri, 29 Apr 2016 02:33:14 +0000 Subject: [PATCH 074/337] libsolv: init at 0.6.20 --- pkgs/development/libraries/libsolv/default.nix | 17 +++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 19 insertions(+) create mode 100644 pkgs/development/libraries/libsolv/default.nix diff --git a/pkgs/development/libraries/libsolv/default.nix b/pkgs/development/libraries/libsolv/default.nix new file mode 100644 index 00000000000..a69403ded07 --- /dev/null +++ b/pkgs/development/libraries/libsolv/default.nix @@ -0,0 +1,17 @@ +{ stdenv, fetchFromGitHub, cmake, zlib, expat, rpm, db }: + +stdenv.mkDerivation rec { + rev = "0.6.20"; + name = "libsolv-${rev}"; + + src = fetchFromGitHub { + inherit rev; + owner = "openSUSE"; + repo = "libsolv"; + sha256 = "1gammarbnjbbkw2vlgcj9ynp1kgi5nns6xcl6ab8b5i4zgq91v2p"; + }; + + cmakeFlags = "-DENABLE_RPMMD=true -DENABLE_RPMDB=true -DENABLE_PUBKEY=true -DENABLE_RPMDB_BYRPMHEADER=true"; + + buildInputs = [ cmake zlib expat rpm db ]; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 659b02935f4..35769de5873 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7734,6 +7734,8 @@ in libsieve = callPackage ../development/libraries/libsieve { }; + libsolv = callPackage ../development/libraries/libsolv { }; + libspectre = callPackage ../development/libraries/libspectre { }; libgsf = callPackage ../development/libraries/libgsf { }; From 730d488a124e7011ccb63f7847fe373a8eefac51 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 29 Apr 2016 02:25:28 +0200 Subject: [PATCH 075/337] claws-mail: rename from (and alias to) clawsMail --- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 40083d8bf4f..f49b2d88436 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -30,6 +30,7 @@ doNotDisplayTwice rec { bundler_HEAD = bundler; # added 2015-11-15 cheetahTemplate = pythonPackages.cheetah; # 2015-06-15 clangAnalyzer = clang-analyzer; # added 2015-02-20 + clawsMail = claws-mail; # added 2016-04-29 conkerorWrapper = conkeror; # added 2015-01 cool-old-term = cool-retro-term; # added 2015-01-31 cupsBjnp = cups-bjnp; # added 2016-01-02 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 35769de5873..72e1f0200fa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11892,7 +11892,7 @@ in cinelerra = callPackage ../applications/video/cinelerra { }; - clawsMail = callPackage ../applications/networking/mailreaders/claws-mail { + claws-mail = callPackage ../applications/networking/mailreaders/claws-mail { inherit (gnome3) gsettings_desktop_schemas; enableNetworkManager = config.networking.networkmanager.enable or false; }; From 75b01594c81508380881fb7bdfe2d349effdd7c0 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 29 Apr 2016 04:36:42 +0200 Subject: [PATCH 076/337] sylpheed: 3.4.1 -> 3.5.0 --- .../networking/mailreaders/sylpheed/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/sylpheed/default.nix b/pkgs/applications/networking/mailreaders/sylpheed/default.nix index ac7846836ff..65c1001ae78 100644 --- a/pkgs/applications/networking/mailreaders/sylpheed/default.nix +++ b/pkgs/applications/networking/mailreaders/sylpheed/default.nix @@ -11,14 +11,13 @@ with stdenv.lib; assert sslSupport -> openssl != null; assert gpgSupport -> gpgme != null; -let version = "3.4.1"; in - -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "sylpheed-${version}"; + version = "3.5.0"; src = fetchurl { - url = "http://sylpheed.sraoss.jp/sylpheed/v3.4/sylpheed-${version}.tar.bz2"; - sha256 = "11wpifvn8a0p4dqmvi7r61imqkgm6rjjp3h057c344vny37livbx"; + url = "http://sylpheed.sraoss.jp/sylpheed/v3.5/${name}.tar.bz2"; + sha256 = "0p50cr9h8b7cv1ayxhqxpj3kv0b7k9dga7lmmfb1lvyagg8n42sa"; }; buildInputs = From bd8a1258bf11a60cf29e7d269b01649d87c0d0c0 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Fri, 29 Apr 2016 02:40:08 +0000 Subject: [PATCH 077/337] createrepo_c: init at 0.10.0 --- .../createrepo_c/default.nix | 27 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/tools/package-management/createrepo_c/default.nix diff --git a/pkgs/tools/package-management/createrepo_c/default.nix b/pkgs/tools/package-management/createrepo_c/default.nix new file mode 100644 index 00000000000..b884540f8d4 --- /dev/null +++ b/pkgs/tools/package-management/createrepo_c/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchFromGitHub, cmake, pkgconfig, bzip2, expat, glib, curl, libxml2, python, rpm, openssl, sqlite, file, xz, pcre, bashCompletion }: + +stdenv.mkDerivation rec { + rev = "0.10.0"; + name = "createrepo_c-${rev}"; + + src = fetchFromGitHub { + inherit rev; + owner = "rpm-software-management"; + repo = "createrepo_c"; + sha256 = "1sqzdkj9vigkvxsjlih1i0gylv53na2yic5if9w1s2sgxhqqz5zv"; + }; + + # FIXME: ugh, there has to be a better way to do this... + prePatch = '' + substituteInPlace CMakeLists.txt \ + --replace 'execute_process(COMMAND ''${PKG_CONFIG_EXECUTABLE} --variable=completionsdir bash-completion OUTPUT_VARIABLE BASHCOMP_DIR OUTPUT_STRIP_TRAILING_WHITESPACE)' \ + "set (BASHCOMP_DIR "$out/share/bash-completion/completions")" + + substituteInPlace src/python/CMakeLists.txt \ + --replace 'EXECUTE_PROCESS(COMMAND ''${PYTHON_EXECUTABLE} -c "from sys import stdout; from distutils import sysconfig; stdout.write(sysconfig.get_python_lib(True))" OUTPUT_VARIABLE PYTHON_INSTALL_DIR)' \ + "set (PYTHON_INSTALL_DIR "$out/${python.sitePackages}")" + ''; + + buildInputs = [ cmake pkgconfig bzip2 expat glib curl libxml2 python rpm openssl sqlite file xz pcre bashCompletion ]; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 72e1f0200fa..d904496b81c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1159,6 +1159,8 @@ in crackxls = callPackage ../tools/security/crackxls { }; + createrepo_c = callPackage ../tools/package-management/createrepo_c { }; + cromfs = callPackage ../tools/archivers/cromfs { }; cron = callPackage ../tools/system/cron { }; From fcf37351bdcc33c297eac352262666d5b347bdc6 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Fri, 29 Apr 2016 02:46:16 +0000 Subject: [PATCH 078/337] librepo: init at 1.7.18 --- .../package-management/librepo/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/tools/package-management/librepo/default.nix diff --git a/pkgs/tools/package-management/librepo/default.nix b/pkgs/tools/package-management/librepo/default.nix new file mode 100644 index 00000000000..21fc9fe97f5 --- /dev/null +++ b/pkgs/tools/package-management/librepo/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, cmake, python, pkgconfig, expat, glib, pcre, openssl, curl, check, attr, gpgme }: + +stdenv.mkDerivation rec { + version = "1.7.18"; + name = "librepo-${version}"; + + src = fetchFromGitHub { + owner = "rpm-software-management"; + repo = "librepo"; + rev = name; + sha256 = "05iqx2kvfqsskb2r3n5p8f91i4gd4pbw6nh30pn532mgab64cvxk"; + }; + + patchPhase = '' + substituteInPlace librepo/python/python2/CMakeLists.txt \ + --replace ' ''${PYTHON_INSTALL_DIR}' " $out/lib/python2.7/site-packages" + ''; + + buildInputs = [ cmake python pkgconfig expat glib pcre openssl curl check attr gpgme ]; + + # librepo/fastestmirror.h includes curl/curl.h, and pkg-config specfile refers to others in here + propagatedBuildInputs = [ curl gpgme expat ]; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d904496b81c..674d5839251 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7726,6 +7726,8 @@ in librelp = callPackage ../development/libraries/librelp { }; + librepo = callPackage ../tools/package-management/librepo { }; + libresample = callPackage ../development/libraries/libresample {}; librevenge = callPackage ../development/libraries/librevenge {}; From d70752cce9b0df5f2a9d4a1afb376e89869b1e7f Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Fri, 29 Apr 2016 03:06:02 +0000 Subject: [PATCH 079/337] libhif: init at 87e4cb24 The latest released version is too old for my needs, so I'm picking a git commit that works. I'll update it when they release a new one. --- .../package-management/libhif/default.nix | 29 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/tools/package-management/libhif/default.nix diff --git a/pkgs/tools/package-management/libhif/default.nix b/pkgs/tools/package-management/libhif/default.nix new file mode 100644 index 00000000000..895165a1c1f --- /dev/null +++ b/pkgs/tools/package-management/libhif/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchFromGitHub, cmake, pkgconfig, autoconf, automake, libtool, expat, python, sphinx, gobjectIntrospection, librepo, check, rpm, libsolv, pcre, curl, gtk_doc, zlib, xz, elfutils }: + +stdenv.mkDerivation rec { + rev = "87e4cb247f5982fd48636691a955cc566d3110a3"; + name = "libhif-${stdenv.lib.strings.substring 0 7 rev}"; + + src = fetchFromGitHub { + inherit rev; + owner = "rpm-software-management"; + repo = "libhif"; + sha256 = "1g8hrqjawzwcx1gjcnv9sxg5i8l13dab3rr3i641k5vi76vv8miq"; + }; + + postPatch = '' + for file in python/hawkey/CMakeLists.txt python/hawkey/tests/module/CMakeLists.txt; do + substituteInPlace $file --replace ' ''${PYTHON_INSTALL_DIR}' " $out/${python.sitePackages}" + done + + # Until https://github.com/rpm-software-management/libhif/issues/43 is implemented, let's not force users to have this path + substituteInPlace libhif/hif-keyring.c \ + --replace '"/etc/pki/rpm-gpg"' 'getenv("LIBHIF_RPM_GPG_PATH_OVERRIDE") ? getenv("LIBHIF_RPM_GPG_PATH_OVERRIDE") : "/etc/pki/rpm-gpg"' + ''; + + buildInputs = [ cmake pkgconfig pcre expat python sphinx gobjectIntrospection gtk_doc librepo check rpm curl ]; + + # ibhif/hif-packagedelta.h includes solv/pool.h + propagatedBuildInputs = [ libsolv ]; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 674d5839251..768da42ca7e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7650,6 +7650,8 @@ in libharu = callPackage ../development/libraries/libharu { }; + libhif = callPackage ../tools/package-management/libhif { sphinx = python27Packages.sphinx; }; + libHX = callPackage ../development/libraries/libHX { }; libibmad = callPackage ../development/libraries/libibmad { }; From a6ce78130b12f6aa05be00fc01dccf82c536e886 Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Fri, 29 Apr 2016 11:12:34 +0800 Subject: [PATCH 080/337] consoletools: copy utils to bin --- pkgs/os-specific/linux/consoletools/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/consoletools/default.nix b/pkgs/os-specific/linux/consoletools/default.nix index 0a799775551..b9f1ee90fe9 100644 --- a/pkgs/os-specific/linux/consoletools/default.nix +++ b/pkgs/os-specific/linux/consoletools/default.nix @@ -10,14 +10,17 @@ stdenv.mkDerivation rec { }; buildInputs = [ SDL ]; + makeFlags = [ "DESTDIR=$(out)"]; + installFlags = ''PREFIX=""''; + meta = with stdenv.lib; { homepage = https://sourceforge.net/projects/linuxconsole/; description = "A set of tools for joysticks and serial peripherals"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ pSub ]; + maintainers = with maintainers; [ pSub ebzzry ]; longDescription = '' The included tools are: From 203fee061858133a46daee2812806d1b6c8d7db5 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Fri, 29 Apr 2016 03:20:04 +0000 Subject: [PATCH 081/337] rpm-ostree: init at 2016.1 --- pkgs/tools/misc/rpm-ostree/default.nix | 41 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 43 insertions(+) create mode 100644 pkgs/tools/misc/rpm-ostree/default.nix diff --git a/pkgs/tools/misc/rpm-ostree/default.nix b/pkgs/tools/misc/rpm-ostree/default.nix new file mode 100644 index 00000000000..372b0a7f270 --- /dev/null +++ b/pkgs/tools/misc/rpm-ostree/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchFromGitHub, ostree, rpm, which, autoconf, automake, libtool, pkgconfig, + libcap, glib, libgsystem, json_glib, libarchive, libhif, librepo, gtk_doc, elfutils, + libxslt, docbook_xsl, docbook_xml_dtd_42, acl }: + +let + libglnx-src = fetchFromGitHub { + owner = "GNOME"; + repo = "libglnx"; + rev = "08ae6639e522e9b11765245fbecdbbe474ccde98"; + sha256 = "1k7fbivi2mwb2x5bqqbqc3nbnfjjw1l911hs914197hyqpy21dab"; + }; +in stdenv.mkDerivation rec { + rev = "v2016.1"; + name = "rpm-ostree"; + + src = fetchFromGitHub { + inherit rev; + owner = "projectatomic"; + repo = "rpm-ostree"; + sha256 = "19jvnmy9zinx0j5nvy3h5abfv9d988kvyza09gljx16gll8qkbbf"; + }; + + NIX_CFLAGS_LINK = "-L${elfutils}/lib"; + + buildInputs = [ + which autoconf automake pkgconfig libtool libcap ostree rpm glib libgsystem + json_glib libarchive libhif librepo gtk_doc libxslt docbook_xsl docbook_xml_dtd_42 + # FIXME: get rid of this once libarchive properly propagates this + acl + ]; + + prePatch = '' + rmdir libglnx + cp --no-preserve=mode -r ${libglnx-src} libglnx + ''; + + preConfigure = '' + env NOCONFIGURE=1 ./autogen.sh + ''; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 768da42ca7e..0c2b6cd9570 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3121,6 +3121,8 @@ in rpm = callPackage ../tools/package-management/rpm { }; + rpm-ostree = callPackage ../tools/misc/rpm-ostree { }; + rpmextract = callPackage ../tools/archivers/rpmextract { }; rrdtool = callPackage ../tools/misc/rrdtool { }; From 5de3cfe21039153757236d9569543e674cfaa6b6 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 28 Apr 2016 21:37:16 +0000 Subject: [PATCH 082/337] smplayer: fix build after qmakeHook --- pkgs/applications/video/smplayer/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/smplayer/default.nix b/pkgs/applications/video/smplayer/default.nix index 0aa92c9af71..15b178fc8e6 100644 --- a/pkgs/applications/video/smplayer/default.nix +++ b/pkgs/applications/video/smplayer/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qtscript }: +{ stdenv, fetchurl, qmakeHook, qtscript }: stdenv.mkDerivation rec { name = "smplayer-16.1.0"; @@ -10,7 +10,9 @@ stdenv.mkDerivation rec { patches = [ ./basegui.cpp.patch ]; - buildInputs = [ qtscript ]; + buildInputs = [ qmakeHook qtscript ]; + + dontUseQmakeConfigure = true; preConfigure = '' makeFlags="PREFIX=$out" From ce7181f9a8fcfaca0fd8ac45e98f5ff377a9a3d9 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 28 Apr 2016 21:38:16 +0000 Subject: [PATCH 083/337] smtube: fix build after qmakeHook --- pkgs/applications/video/smtube/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/smtube/default.nix b/pkgs/applications/video/smtube/default.nix index 68c0d7f5812..729c90d052c 100644 --- a/pkgs/applications/video/smtube/default.nix +++ b/pkgs/applications/video/smtube/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qtscript, qtwebkit }: +{ stdenv, fetchurl, qmakeHook, qtscript, qtwebkit }: stdenv.mkDerivation rec { version = "16.1.0"; @@ -13,7 +13,9 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" ]; - buildInputs = [ qtscript qtwebkit ]; + dontUseQmakeConfigure = true; + + buildInputs = [ qmakeHook qtscript qtwebkit ]; meta = with stdenv.lib; { description = "Play and download Youtube videos"; From ecfc523d32b6969fbb0c5641fb2d155812e2b9f8 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 29 Apr 2016 10:28:35 +0200 Subject: [PATCH 084/337] Update EC2 AMIs to 16.03.659.011ea84 This includes the binutils mass rebuild. --- nixos/modules/virtualisation/ec2-amis.nix | 72 +++++++++++------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/nixos/modules/virtualisation/ec2-amis.nix b/nixos/modules/virtualisation/ec2-amis.nix index e0aad5e42f2..5257aaf6202 100644 --- a/nixos/modules/virtualisation/ec2-amis.nix +++ b/nixos/modules/virtualisation/ec2-amis.nix @@ -90,40 +90,40 @@ "15.09".us-west-2.pv-ebs = "ami-005fb160"; "15.09".us-west-2.pv-s3 = "ami-cd55bbad"; - "16.03".ap-northeast-1.hvm-ebs = "ami-885040e6"; - "16.03".ap-northeast-1.hvm-s3 = "ami-d15a4abf"; - "16.03".ap-northeast-1.pv-ebs = "ami-7f455511"; - "16.03".ap-northeast-1.pv-s3 = "ami-6d7d6d03"; - "16.03".ap-southeast-1.hvm-ebs = "ami-478a5f24"; - "16.03".ap-southeast-1.hvm-s3 = "ami-b2885dd1"; - "16.03".ap-southeast-1.pv-ebs = "ami-55b46136"; - "16.03".ap-southeast-1.pv-s3 = "ami-92b762f1"; - "16.03".ap-southeast-2.hvm-ebs = "ami-26b09345"; - "16.03".ap-southeast-2.hvm-s3 = "ami-52ac8f31"; - "16.03".ap-southeast-2.pv-ebs = "ami-1fb3907c"; - "16.03".ap-southeast-2.pv-s3 = "ami-49b1922a"; - "16.03".eu-central-1.hvm-ebs = "ami-2bd63744"; - "16.03".eu-central-1.hvm-s3 = "ami-82d435ed"; - "16.03".eu-central-1.pv-ebs = "ami-b729c8d8"; - "16.03".eu-central-1.pv-s3 = "ami-a12dccce"; - "16.03".eu-west-1.hvm-ebs = "ami-87c242f4"; - "16.03".eu-west-1.hvm-s3 = "ami-b6c343c5"; - "16.03".eu-west-1.pv-ebs = "ami-6bc94918"; - "16.03".eu-west-1.pv-s3 = "ami-00cb4b73"; - "16.03".sa-east-1.hvm-ebs = "ami-845cd3e8"; - "16.03".sa-east-1.hvm-s3 = "ami-8142cded"; - "16.03".sa-east-1.pv-ebs = "ami-1643cc7a"; - "16.03".sa-east-1.pv-s3 = "ami-1646c97a"; - "16.03".us-east-1.hvm-ebs = "ami-2cc4d046"; - "16.03".us-east-1.hvm-s3 = "ami-9bc9ddf1"; - "16.03".us-east-1.pv-ebs = "ami-7df4e017"; - "16.03".us-east-1.pv-s3 = "ami-90f2e6fa"; - "16.03".us-west-1.hvm-ebs = "ami-d8116db8"; - "16.03".us-west-1.hvm-s3 = "ami-a7166ac7"; - "16.03".us-west-1.pv-ebs = "ami-e90c7089"; - "16.03".us-west-1.pv-s3 = "ami-5b0c703b"; - "16.03".us-west-2.hvm-ebs = "ami-b339ccd3"; - "16.03".us-west-2.hvm-s3 = "ami-2c3bce4c"; - "16.03".us-west-2.pv-ebs = "ami-0625d066"; - "16.03".us-west-2.pv-s3 = "ami-7414e114"; + "16.03".ap-northeast-1.hvm-ebs = "ami-b6edf5d8"; + "16.03".ap-northeast-1.hvm-s3 = "ami-b1e3fbdf"; + "16.03".ap-northeast-1.pv-ebs = "ami-6190880f"; + "16.03".ap-northeast-1.pv-s3 = "ami-908d95fe"; + "16.03".ap-southeast-1.hvm-ebs = "ami-35b16656"; + "16.03".ap-southeast-1.hvm-s3 = "ami-41be6922"; + "16.03".ap-southeast-1.pv-ebs = "ami-4cb96e2f"; + "16.03".ap-southeast-1.pv-s3 = "ami-3bb96e58"; + "16.03".ap-southeast-2.hvm-ebs = "ami-debc91bd"; + "16.03".ap-southeast-2.hvm-s3 = "ami-55bc9136"; + "16.03".ap-southeast-2.pv-ebs = "ami-b38ba6d0"; + "16.03".ap-southeast-2.pv-s3 = "ami-9e8ba6fd"; + "16.03".eu-central-1.hvm-ebs = "ami-7c967413"; + "16.03".eu-central-1.hvm-s3 = "ami-b29072dd"; + "16.03".eu-central-1.pv-ebs = "ami-7a947615"; + "16.03".eu-central-1.pv-s3 = "ami-729b791d"; + "16.03".eu-west-1.hvm-ebs = "ami-ff27a98c"; + "16.03".eu-west-1.hvm-s3 = "ami-6c21af1f"; + "16.03".eu-west-1.pv-ebs = "ami-a33cb2d0"; + "16.03".eu-west-1.pv-s3 = "ami-ec38b69f"; + "16.03".sa-east-1.hvm-ebs = "ami-5bef6637"; + "16.03".sa-east-1.hvm-s3 = "ami-55f87139"; + "16.03".sa-east-1.pv-ebs = "ami-76e56c1a"; + "16.03".sa-east-1.pv-s3 = "ami-e1f8718d"; + "16.03".us-east-1.hvm-ebs = "ami-4bfd1926"; + "16.03".us-east-1.hvm-s3 = "ami-60c5210d"; + "16.03".us-east-1.pv-ebs = "ami-c0c92dad"; + "16.03".us-east-1.pv-s3 = "ami-f9d63294"; + "16.03".us-west-1.hvm-ebs = "ami-13aad473"; + "16.03".us-west-1.hvm-s3 = "ami-e1a8d681"; + "16.03".us-west-1.pv-ebs = "ami-c0a6d8a0"; + "16.03".us-west-1.pv-s3 = "ami-6aa9d70a"; + "16.03".us-west-2.hvm-ebs = "ami-265dad46"; + "16.03".us-west-2.hvm-s3 = "ami-cd40b0ad"; + "16.03".us-west-2.pv-ebs = "ami-7b4aba1b"; + "16.03".us-west-2.pv-s3 = "ami-0849b968"; } From 83c0aca062369aa43d5e692f22ff22e8d2e787a1 Mon Sep 17 00:00:00 2001 From: Nahum Shalman Date: Fri, 8 Apr 2016 13:53:27 +0000 Subject: [PATCH 085/337] installer: simple PXE bootable NixOS installer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Nix store squashfs is stored inside the initrd instead of separately (cherry picked from commit 976fd407796877b538c470d3a5253ad3e1f7bc68) Signed-off-by: Domen Kožar --- .../installer/netboot/netboot-base.nix | 20 ++++ .../installer/netboot/netboot-minimal.nix | 10 ++ nixos/modules/installer/netboot/netboot.nix | 91 +++++++++++++++++++ nixos/release.nix | 14 +++ nixos/tests/boot.nix | 40 +++++++- 5 files changed, 173 insertions(+), 2 deletions(-) create mode 100644 nixos/modules/installer/netboot/netboot-base.nix create mode 100644 nixos/modules/installer/netboot/netboot-minimal.nix create mode 100644 nixos/modules/installer/netboot/netboot.nix diff --git a/nixos/modules/installer/netboot/netboot-base.nix b/nixos/modules/installer/netboot/netboot-base.nix new file mode 100644 index 00000000000..b12eaccf870 --- /dev/null +++ b/nixos/modules/installer/netboot/netboot-base.nix @@ -0,0 +1,20 @@ +# This module contains the basic configuration for building netboot +# images + +{ config, lib, pkgs, ... }: + +with lib; + +{ + imports = + [ ./netboot.nix + + # Profiles of this basic netboot media + ../../profiles/all-hardware.nix + ../../profiles/base.nix + ../../profiles/installation-device.nix + ]; + + # Allow the user to log in as root without a password. + users.extraUsers.root.initialHashedPassword = ""; +} diff --git a/nixos/modules/installer/netboot/netboot-minimal.nix b/nixos/modules/installer/netboot/netboot-minimal.nix new file mode 100644 index 00000000000..8ad6234edc7 --- /dev/null +++ b/nixos/modules/installer/netboot/netboot-minimal.nix @@ -0,0 +1,10 @@ +# This module defines a small netboot environment. + +{ config, lib, ... }: + +{ + imports = + [ ./netboot-base.nix + ../../profiles/minimal.nix + ]; +} diff --git a/nixos/modules/installer/netboot/netboot.nix b/nixos/modules/installer/netboot/netboot.nix new file mode 100644 index 00000000000..366591a8114 --- /dev/null +++ b/nixos/modules/installer/netboot/netboot.nix @@ -0,0 +1,91 @@ +# This module creates netboot media containing the given NixOS +# configuration. + +{ config, lib, pkgs, ... }: + +with lib; + +{ + options = { + + netboot.storeContents = mkOption { + example = literalExample "[ pkgs.stdenv ]"; + description = '' + This option lists additional derivations to be included in the + Nix store in the generated netboot image. + ''; + }; + + }; + + config = { + + boot.loader.grub.version = 2; + + # Don't build the GRUB menu builder script, since we don't need it + # here and it causes a cyclic dependency. + boot.loader.grub.enable = false; + + boot.initrd.postMountCommands = '' + mkdir -p /mnt-root/nix/store + mount -t squashfs /nix-store.squashfs /mnt-root/nix/store + ''; + + # !!! Hack - attributes expected by other modules. + system.boot.loader.kernelFile = "bzImage"; + environment.systemPackages = [ pkgs.grub2 pkgs.grub2_efi pkgs.syslinux ]; + + boot.consoleLogLevel = mkDefault 7; + + fileSystems."/" = + { fsType = "tmpfs"; + options = [ "mode=0755" ]; + }; + + boot.initrd.availableKernelModules = [ "squashfs" ]; + + boot.initrd.kernelModules = [ "loop" ]; + + # Closures to be copied to the Nix store, namely the init + # script and the top-level system configuration directory. + netboot.storeContents = + [ config.system.build.toplevel ]; + + # Create the squashfs image that contains the Nix store. + system.build.squashfsStore = import ../../../lib/make-squashfs.nix { + inherit (pkgs) stdenv squashfsTools perl pathsFromGraph; + storeContents = config.netboot.storeContents; + }; + + + # Create the initrd + system.build.netbootRamdisk = pkgs.makeInitrd { + inherit (config.boot.initrd) compressor; + prepend = [ "${config.system.build.initialRamdisk}/initrd" ]; + + contents = + [ { object = config.system.build.squashfsStore; + symlink = "/nix-store.squashfs"; + } + ]; + }; + + system.build.netbootIpxeScript = pkgs.writeTextDir "netboot.ipxe" "#!ipxe\nkernel bzImage init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams}\ninitrd initrd\nboot"; + + boot.loader.timeout = 10; + + boot.postBootCommands = + '' + # After booting, register the contents of the Nix store + # in the Nix database in the tmpfs. + ${config.nix.package}/bin/nix-store --load-db < /nix/store/nix-path-registration + + # nixos-rebuild also requires a "system" profile and an + # /etc/NIXOS tag. + touch /etc/NIXOS + ${config.nix.package}/bin/nix-env -p /nix/var/nix/profiles/system --set /run/current-system + ''; + + }; + +} diff --git a/nixos/release.nix b/nixos/release.nix index d78c1bb1c15..fa4a9860150 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -104,6 +104,20 @@ in rec { initialRamdisk = buildFromConfig ({ pkgs, ... }: { }) (config: config.system.build.initialRamdisk); + netboot = let build = (import lib/eval-config.nix { + system = "x86_64-linux"; + modules = [ + ./modules/installer/netboot/netboot-minimal.nix + versionModule + ]; + }).config.system.build; + in + pkgs.symlinkJoin "netboot" [ + build.netbootRamdisk + build.kernel + build.netbootIpxeScript + ]; + iso_minimal = forAllSystems (system: makeIso { module = ./modules/installer/cd-dvd/installation-cd-minimal.nix; type = "minimal"; diff --git a/nixos/tests/boot.nix b/nixos/tests/boot.nix index 905d1645882..a138ba4bcf0 100644 --- a/nixos/tests/boot.nix +++ b/nixos/tests/boot.nix @@ -44,5 +44,41 @@ in { usb => glob("${iso}/iso/*.iso"), bios => '${pkgs.OVMF}/FV/OVMF.fd' ''; - } - + netboot = let + config = (import ../lib/eval-config.nix { + inherit system; + modules = + [ ../modules/installer/netboot/netboot.nix + ../modules/testing/test-instrumentation.nix + { key = "serial"; } + ]; + }).config; + ipxeScriptDir = pkgs.writeTextFile { + name = "ipxeScriptDir"; + text = '' + #!ipxe + dhcp + kernel bzImage init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} console=ttyS0 + initrd initrd + boot + ''; + destination = "/boot.ipxe"; + }; + ipxeBootDir = pkgs.symlinkJoin "ipxeBootDir" [ + config.system.build.netbootRamdisk + config.system.build.kernel + ipxeScriptDir + ]; + in + makeTest { + name = "boot-netboot"; + nodes = { }; + testScript = + '' + my $machine = createMachine({ qemuFlags => '-boot order=n -net nic,model=e1000 -net user,tftp=${ipxeBootDir}/,bootfile=boot.ipxe -m 2000M' }); + $machine->start; + $machine->waitForUnit("multi-user.target"); + $machine->shutdown; + ''; + }; +} \ No newline at end of file From 90d7041ce4d270bbcf0efefd1d1e42c097c1335d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 29 Apr 2016 10:41:13 +0100 Subject: [PATCH 086/337] PXE boot: add manual section and note in changelog --- .../manual/installation/installing-pxe.xml | 48 +++++++++++++++++++ nixos/doc/manual/installation/installing.xml | 1 + .../manual/release-notes/release-notes.xml | 1 + nixos/doc/manual/release-notes/rl-1609.xml | 48 +++++++++++++++++++ 4 files changed, 98 insertions(+) create mode 100644 nixos/doc/manual/installation/installing-pxe.xml create mode 100644 nixos/doc/manual/release-notes/rl-1609.xml diff --git a/nixos/doc/manual/installation/installing-pxe.xml b/nixos/doc/manual/installation/installing-pxe.xml new file mode 100644 index 00000000000..7b7597c9162 --- /dev/null +++ b/nixos/doc/manual/installation/installing-pxe.xml @@ -0,0 +1,48 @@ +
    + +Booting from the <quote>netboot</quote> media (PXE) + + Advanced users may wish to install NixOS using an existing PXE or + iPXE setup. + + + These instructions assume that you have an existing PXE or iPXE + infrastructure and simply want to add the NixOS installer as another + option. To build the necessary files from a recent version of + nixpkgs, you can run: + + +nix-build -A netboot nixos/release.nix + + + This will create a result directory containing: * + bzImage – the Linux kernel * + initrd – the initrd file * + netboot.ipxe – an example ipxe script + demonstrating the appropriate kernel command line arguments for this + image + + + If you’re using plain PXE, configure your boot loader to use the + bzImage and initrd files and + have it provide the same kernel command line arguments found in + netboot.ipxe. + + + If you’re using iPXE, depending on how your HTTP/FTP/etc. server is + configured you may be able to use netboot.ipxe + unmodified, or you may need to update the paths to the files to + match your server’s directory layout + + + In the future we may begin making these files available as build + products from hydra at which point we will update this documentation + with instructions on how to obtain them either for placing on a + dedicated TFTP server or to boot them directly over the internet. + + +
    diff --git a/nixos/doc/manual/installation/installing.xml b/nixos/doc/manual/installation/installing.xml index 4a0b3fee7c1..3e53062c3e8 100644 --- a/nixos/doc/manual/installation/installing.xml +++ b/nixos/doc/manual/installation/installing.xml @@ -270,5 +270,6 @@ $ reboot + diff --git a/nixos/doc/manual/release-notes/release-notes.xml b/nixos/doc/manual/release-notes/release-notes.xml index 2beaab00800..31a7ae04a4f 100644 --- a/nixos/doc/manual/release-notes/release-notes.xml +++ b/nixos/doc/manual/release-notes/release-notes.xml @@ -9,6 +9,7 @@ This section lists the release notes for each stable version of NixOS and current unstable revision. + diff --git a/nixos/doc/manual/release-notes/rl-1609.xml b/nixos/doc/manual/release-notes/rl-1609.xml new file mode 100644 index 00000000000..22dea802924 --- /dev/null +++ b/nixos/doc/manual/release-notes/rl-1609.xml @@ -0,0 +1,48 @@ +
    + +Release 16.09 (“Flounder”, 2016/09/??) + +In addition to numerous new and upgraded packages, this release +has the following highlights: + + + + + PXE "netboot" media has landed in . + See for documentation. + + + + +The following new services were added since the last release: + + + (this will get automatically generated at release time) + + + +When upgrading from a previous release, please be aware of the +following incompatible changes: + + + + todo + + + + +Other notable improvements: + + + + todo + + + + + +
    From 03912a2761d614c5941578745568f8853e0b2d31 Mon Sep 17 00:00:00 2001 From: artuuge Date: Fri, 29 Apr 2016 12:16:30 +0200 Subject: [PATCH 087/337] epson-escpr: 1.6.4 -> 1.6.5 --- pkgs/misc/drivers/epson-escpr/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/misc/drivers/epson-escpr/default.nix b/pkgs/misc/drivers/epson-escpr/default.nix index faf13d4bcc3..2f126a9cfe4 100644 --- a/pkgs/misc/drivers/epson-escpr/default.nix +++ b/pkgs/misc/drivers/epson-escpr/default.nix @@ -1,15 +1,15 @@ { stdenv, fetchurl, cups }: let - version = "1.6.4"; + version = "1.6.5"; in stdenv.mkDerivation { name = "epson-escpr-${version}"; src = fetchurl { - url = "https://download3.ebz.epson.net/dsc/f/03/00/04/37/97/88177bc0dc7025905eae4a0da1e841408f82e33c/epson-inkjet-printer-escpr-1.6.4-1lsb3.2.tar.gz"; - sha256 = "76c66461a30be82b9cc37d663147a72f488fe060ef54578120602bb87a3f7754"; + url = "https://download3.ebz.epson.net/dsc/f/03/00/04/54/27/b73564748bfde7b7ce625e20d4a3257d447bec79/epson-inkjet-printer-escpr-1.6.5-1lsb3.2.tar.gz"; + sha256 = "1cd9e0506bf181e1476bd8305f1c6b8dbc4354eab9415d0d5529850856129e4c"; }; patches = [ ./cups-filter-ppd-dirs.patch ]; @@ -17,7 +17,7 @@ in buildInputs = [ cups ]; meta = with stdenv.lib; { - homepage = https://github.com/artuuge/NixOS-files/; + homepage = "http://download.ebz.epson.net/dsc/search/01/search/"; description = "ESC/P-R Driver (generic driver)"; longDescription = '' Epson Inkjet Printer Driver (ESC/P-R) for Linux and the From 47c068c7a3cfeb4e91c3dd881d80fb914b99eca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Fri, 29 Apr 2016 06:31:15 -0300 Subject: [PATCH 088/337] eclipse-plugins-cup: 1.0.0.201412081321 -> 1.0.0.201604221613 --- pkgs/applications/editors/eclipse/plugins.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 87603f20b89..fe8580f09d0 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -214,21 +214,22 @@ rec { cup = buildEclipsePluginBase rec { name = "cup-${version}"; - version = "1.0.0.201412081321"; + version = "1.1.0.201604221613"; + version_ = "1.0.0.201604221613"; srcFeature = fetchurl { url = "http://www2.in.tum.de/projects/cup/eclipse/features/CupEclipsePluginFeature_${version}.jar"; - sha256 = "353513445f77ed144687bafc20ab85dc31f2f95ffdc47f102ab773ab0b7afb8b"; + sha256 = "13nnsf0cqg02z3af6xg45rhcgiffsibxbx6h1zahjv7igvqgkyna"; }; srcPlugin1 = fetchurl { - url = "http://www2.in.tum.de/projects/cup/eclipse/plugins/CupReferencedLibraries_${version}.jar"; - sha256 = "082b5ed8730ad065efaac6ea2812dae15669ae74a49778911125b171bea41187"; + url = "http://www2.in.tum.de/projects/cup/eclipse/plugins/CupReferencedLibraries_${version_}.jar"; + sha256 = "0kif8kivrysprva1pxzajm88gi967qf7idhb6ga2xpvsdcris91j"; }; srcPlugin2 = fetchurl { url = "http://www2.in.tum.de/projects/cup/eclipse/plugins/de.tum.in.www2.CupPlugin_${version}.jar"; - sha256 = "6b67937fa11944b0330173a9d8564a19eccd705e76b96291d80077a1d7344939"; + sha256 = "022phbrsny3gb8npb6sxyqqxacx138q5bd7dq3gqxh3kprx5chbl"; }; srcs = [ srcFeature srcPlugin1 srcPlugin2 ]; From 8a3b70791c4b643822eb5feb3f9e23ec5e56b863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 29 Apr 2016 11:50:27 +0100 Subject: [PATCH 089/337] vmTools.diskImages: add ubuntu 16.04 --- pkgs/build-support/vm/default.nix | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix index 2d33a197346..50c18360b8a 100644 --- a/pkgs/build-support/vm/default.nix +++ b/pkgs/build-support/vm/default.nix @@ -1688,6 +1688,40 @@ rec { packages = commonDebPackages ++ [ "diffutils" "libc-bin" ]; }; + ubuntu1604i386 = { + name = "ubuntu-16.04-xenial-i386"; + fullName = "Ubuntu 16.04 Xenial (i386)"; + packagesLists = + [ (fetchurl { + url = mirror://ubuntu/dists/xenial/main/binary-i386/Packages.xz; + sha256 = "13r75sp4slqy8w32y5dnr7pp7p3cfvavyr1g7gwnlkyrq4zx4ahy"; + }) + (fetchurl { + url = mirror://ubuntu/dists/xenial/universe/binary-i386/Packages.xz; + sha256 = "14fid1rqm3sc0wlygcvn0yx5aljf51c2jpd4x0zxij4019316hsh"; + }) + ]; + urlPrefix = mirror://ubuntu; + packages = commonDebPackages ++ [ "diffutils" "libc-bin" ]; + }; + + ubuntu1604x86_64 = { + name = "ubuntu-16.04-xenial-amd64"; + fullName = "Ubuntu 16.04 Xenial (amd64)"; + packagesList = + [ (fetchurl { + url = mirror://ubuntu/dists/xenial/main/binary-amd64/Packages.xz; + sha256 = "110qnkhjkkwm316fbig3aivm2595ydz6zskc4ld5cr8ngcrqm1bn"; + }) + (fetchurl { + url = mirror://ubuntu/dists/xenial/universe/binary-amd64/Packages.xz; + sha256 = "0mm7gj491yi6q4v0n4qkbsm94s59bvqir6fk60j73w7y4la8rg68"; + }) + ]; + urlPrefix = mirror://ubuntu; + packages = commonDebPackages ++ [ "diffutils" "libc-bin" ]; + }; + debian40i386 = { name = "debian-4.0r9-etch-i386"; fullName = "Debian 4.0r9 Etch (i386)"; From 7d7380b0110d21ff208a06fe7c930783f90c6944 Mon Sep 17 00:00:00 2001 From: Philipp Hausmann Date: Fri, 29 Apr 2016 12:01:13 +0200 Subject: [PATCH 090/337] elasticsearch: Install elastic search modules properly, fixes groovy script support. --- nixos/modules/services/search/elasticsearch.nix | 1 + pkgs/servers/search/elasticsearch/2.x.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/search/elasticsearch.nix b/nixos/modules/services/search/elasticsearch.nix index c51a42b8e9c..17ac8fe7e24 100644 --- a/nixos/modules/services/search/elasticsearch.nix +++ b/nixos/modules/services/search/elasticsearch.nix @@ -145,6 +145,7 @@ in { # Install plugins ln -sfT ${esPlugins}/plugins ${cfg.dataDir}/plugins ln -sfT ${cfg.package}/lib ${cfg.dataDir}/lib + ln -sfT ${cfg.package}/modules ${cfg.dataDir}/modules if [ "$(id -u)" = 0 ]; then chown -R elasticsearch ${cfg.dataDir}; fi ''; postStart = mkBefore '' diff --git a/pkgs/servers/search/elasticsearch/2.x.nix b/pkgs/servers/search/elasticsearch/2.x.nix index 33a05267395..9495106ea00 100644 --- a/pkgs/servers/search/elasticsearch/2.x.nix +++ b/pkgs/servers/search/elasticsearch/2.x.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out - cp -R bin config lib $out + cp -R bin config lib modules $out # don't want to have binary with name plugin mv $out/bin/plugin $out/bin/elasticsearch-plugin From 82dd20a14d19659ee5ae678c6a6def41aa00d2e6 Mon Sep 17 00:00:00 2001 From: Clemens Fruhwirth Date: Sun, 24 Apr 2016 14:29:33 +0200 Subject: [PATCH 091/337] open-isns: init at 0.95 --- pkgs/os-specific/linux/open-isns/default.nix | 25 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/os-specific/linux/open-isns/default.nix diff --git a/pkgs/os-specific/linux/open-isns/default.nix b/pkgs/os-specific/linux/open-isns/default.nix new file mode 100644 index 00000000000..2ef08cd13ce --- /dev/null +++ b/pkgs/os-specific/linux/open-isns/default.nix @@ -0,0 +1,25 @@ +{ stdenv, openssl, fetchFromGitHub }: +stdenv.mkDerivation rec { + name = "open-isns-${version}"; + version = "0.95"; + + src = fetchFromGitHub { + owner = "gonzoleeman"; + repo = "open-isns"; + rev = "v${version}"; + sha256 = "1c2x3yf9806gbjsw4xi805rfhyxk353a3whqvpccz8dwas6jajwh"; + }; + + propagatedBuildInputs = [ openssl ]; + outputs = ["out" "lib" ]; + outputInclude = "lib"; + + installFlags = "etcdir=$(out)/etc vardir=$(out)/var/lib/isns"; + installTargets = "install install_hdrs install_lib"; + + meta = { + description = "iSNS server and client for Linux"; + license = stdenv.lib.licenses.lgpl21; + homepage = https://github.com/gonzoleeman/open-isns; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f4de0702e2b..662db7a2065 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10420,6 +10420,8 @@ in openiscsi = callPackage ../os-specific/linux/open-iscsi { }; + openisns = callPackage ../os-specific/linux/open-isns { }; + tgt = callPackage ../tools/networking/tgt { }; # -- Linux kernel expressions ------------------------------------------------ From e091d27944406668c6c366d429daa7bfd67f6a23 Mon Sep 17 00:00:00 2001 From: Clemens Fruhwirth Date: Sun, 24 Apr 2016 14:37:38 +0200 Subject: [PATCH 092/337] open-iscsi: from 2.0.873 to a git snapshot The last release was in May 2012 with many fixes hitting git since then. Also open-iscsi has broken out the open-isns part as extra library, so we have that as new dependency. --- pkgs/os-specific/linux/open-iscsi/default.nix | 24 +++++++++---------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/pkgs/os-specific/linux/open-iscsi/default.nix b/pkgs/os-specific/linux/open-iscsi/default.nix index d004328a10b..6d1b11fe888 100644 --- a/pkgs/os-specific/linux/open-iscsi/default.nix +++ b/pkgs/os-specific/linux/open-iscsi/default.nix @@ -1,18 +1,16 @@ -{ stdenv, fetchurl, nukeReferences }: -let - pname = "open-iscsi-2.0-873"; -in stdenv.mkDerivation { - name = pname; +{ stdenv, fetchFromGitHub, nukeReferences, automake, autoconf, libtool, gettext, utillinux, openisns, openssl }: +stdenv.mkDerivation rec { + name = "open-iscsi-${version}"; + version = "2.0-873-${stdenv.lib.substring 0 7 src.rev}"; outputs = [ "out" "iscsistart" ]; - buildInputs = [ nukeReferences ]; + buildInputs = [ nukeReferences automake autoconf libtool gettext utillinux openisns.lib openssl ]; - src = fetchurl { - urls = [ - "http://www.open-iscsi.org/bits/${pname}.tar.gz" - "http://pkgs.fedoraproject.org/repo/pkgs/iscsi-initiator-utils/${pname}.tar.gz/8b8316d7c9469149a6cc6234478347f7/${pname}.tar.gz" - ]; - sha256 = "1nbwmj48xzy45h52917jbvyqpsfg9zm49nm8941mc5x4gpwz5nbx"; + src = fetchFromGitHub { + owner = "open-iscsi"; + repo = "open-iscsi"; + rev = "4c1f2d90ef1c73e33d9f1e4ae9c206ffe015a8f9"; + sha256 = "0h030zk4zih3l8z5662b3kcifdxlakbwwkz1afb7yf0cicds7va8"; }; DESTDIR = "$(out)"; @@ -30,7 +28,7 @@ in stdenv.mkDerivation { meta = with stdenv.lib; { description = "A high performance, transport independent, multi-platform implementation of RFC3720"; license = licenses.gpl2Plus; - homepage = http://www.open-iscsi.org; + homepage = http://www.open-iscsi.com; platforms = platforms.linux; }; } From 32d6f7c114b3c0eb63620ff3c459107777f40bf1 Mon Sep 17 00:00:00 2001 From: Clemens Fruhwirth Date: Sun, 24 Apr 2016 14:52:13 +0200 Subject: [PATCH 093/337] open-iscsi: Use kmod so that iscsiadm loads the tcp transport modules. --- pkgs/os-specific/linux/open-iscsi/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/open-iscsi/default.nix b/pkgs/os-specific/linux/open-iscsi/default.nix index 6d1b11fe888..96ff1e52cdd 100644 --- a/pkgs/os-specific/linux/open-iscsi/default.nix +++ b/pkgs/os-specific/linux/open-iscsi/default.nix @@ -1,10 +1,10 @@ -{ stdenv, fetchFromGitHub, nukeReferences, automake, autoconf, libtool, gettext, utillinux, openisns, openssl }: +{ stdenv, fetchFromGitHub, nukeReferences, automake, autoconf, libtool, gettext, utillinux, openisns, openssl, kmod }: stdenv.mkDerivation rec { name = "open-iscsi-${version}"; version = "2.0-873-${stdenv.lib.substring 0 7 src.rev}"; outputs = [ "out" "iscsistart" ]; - buildInputs = [ nukeReferences automake autoconf libtool gettext utillinux openisns.lib openssl ]; + buildInputs = [ nukeReferences automake autoconf libtool gettext utillinux openisns.lib openssl kmod ]; src = fetchFromGitHub { owner = "open-iscsi"; @@ -15,6 +15,9 @@ stdenv.mkDerivation rec { DESTDIR = "$(out)"; + NIX_LDFLAGS = "-lkmod"; + NIX_CFLAGS_COMPILE = "-DUSE_KMOD"; + preConfigure = '' sed -i 's|/usr/|/|' Makefile ''; From 0e3cd9851c79288a3efa6c577a535eb59efcd4ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Fri, 29 Apr 2016 09:43:01 -0300 Subject: [PATCH 094/337] menu-cache: 0.7.0 -> 1.0.1 --- pkgs/development/libraries/menu-cache/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/menu-cache/default.nix b/pkgs/development/libraries/menu-cache/default.nix index 3131b6b2918..b6d187e7a0e 100644 --- a/pkgs/development/libraries/menu-cache/default.nix +++ b/pkgs/development/libraries/menu-cache/default.nix @@ -1,15 +1,17 @@ { stdenv, fetchurl, glib, pkgconfig, libfm-extra }: -let name = "menu-cache-0.7.0"; +let name = "menu-cache-1.0.1"; in stdenv.mkDerivation { inherit name; src = fetchurl { url = "mirror://sourceforge/lxde/${name}.tar.xz"; - sha256 = "0wwkk4jrcl2sp11bspabplchh4ipi1zyn39j3skyzgbm8k40gkhk"; + sha256 = "0ngxvwfj9drabqi3lyzgpi0d0za6431sy2ijb010filrj54jdiqa"; }; - buildInputs = [ glib pkgconfig libfm-extra ]; + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ glib libfm-extra ]; meta = with stdenv.lib; { homepage = "http://blog.lxde.org/?tag=menu-cache"; From 9ea3a37767a3ae471eb331031c03377c0313e7e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Fri, 29 Apr 2016 10:14:36 -0300 Subject: [PATCH 095/337] compton-git: 2015-04-20 -> 2015-09-21 --- pkgs/applications/window-managers/compton/git.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/window-managers/compton/git.nix b/pkgs/applications/window-managers/compton/git.nix index b715b3a4cf3..f4907f881af 100644 --- a/pkgs/applications/window-managers/compton/git.nix +++ b/pkgs/applications/window-managers/compton/git.nix @@ -4,20 +4,24 @@ libXrandr, libXrender }: stdenv.mkDerivation { - name = "compton-git-2015-04-20"; + name = "compton-git-2015-09-21"; src = fetchFromGitHub { owner = "chjj"; repo = "compton"; - rev = "b1889c1245e6f47eedfae6063100d5a16f584e2b"; - sha256 = "0brnbidxi7wg08yiwgnijzcyqv5lnkd74xzfymvb0i7pgy465vaf"; + rev = "2343e4bbd298b35ea5c190c52abd2b0cb9f79a18"; + sha256 = "1pb0ic47sfd796crwk47cya2ahbxsm6ygi6sh4fwd734kwz37h4z"; }; - buildInputs = [ + nativeBuildInputs = [ asciidoc - dbus docbook_xml_dtd_45 docbook_xml_xslt + pkgconfig + ]; + + buildInputs = [ + dbus libXcomposite libXdamage libXext @@ -31,7 +35,6 @@ stdenv.mkDerivation { libxslt mesa pcre - pkgconfig ]; installFlags = "PREFIX=$(out)"; From f95ba43e8b108993b709bb4ef396890c0fba35e3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 29 Apr 2016 15:37:04 +0200 Subject: [PATCH 096/337] geolite-legacy: 2016-04-28 -> 2016-04-29 --- pkgs/data/misc/geolite-legacy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index 022ee995cb5..17ede3f2be9 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,7 +8,7 @@ let in stdenv.mkDerivation rec { name = "geolite-legacy-${version}"; - version = "2016-04-28"; + version = "2016-04-29"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { "190c5bq63rzkvvfrgiwgd5j0rk9qdq6vx16w28kraq8pwz0dcb2f"; srcGeoLiteCityv6 = fetchDB "GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz" - "11igx6r0fypih5i3f0mrcv044pivnl45mq6pkq81i81cv28hfcn8"; + "1sr2yapsfmdpl4zpf8i5rl3k65dgbq7bb1615g6wf60yw9ngh76x"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" "1b7w8sdazxq5sv3nz1s28420374vf4wn6h2zasbg68kc2cxwdh2w"; From 61c8af996f7c9f1d604de8f4b7a013d2ad608d00 Mon Sep 17 00:00:00 2001 From: Roman Naumann Date: Thu, 17 Mar 2016 19:05:11 +0100 Subject: [PATCH 097/337] rake: init at 11.1.1 --- .../tools/build-managers/rake/Gemfile | 2 ++ .../tools/build-managers/rake/Gemfile.lock | 13 +++++++++++++ .../tools/build-managers/rake/default.nix | 17 +++++++++++++++++ .../tools/build-managers/rake/gemset.nix | 9 +++++++++ pkgs/top-level/all-packages.nix | 2 ++ 5 files changed, 43 insertions(+) create mode 100644 pkgs/development/tools/build-managers/rake/Gemfile create mode 100644 pkgs/development/tools/build-managers/rake/Gemfile.lock create mode 100644 pkgs/development/tools/build-managers/rake/default.nix create mode 100644 pkgs/development/tools/build-managers/rake/gemset.nix diff --git a/pkgs/development/tools/build-managers/rake/Gemfile b/pkgs/development/tools/build-managers/rake/Gemfile new file mode 100644 index 00000000000..bd1ff6faa65 --- /dev/null +++ b/pkgs/development/tools/build-managers/rake/Gemfile @@ -0,0 +1,2 @@ +source 'https://rubygems.org' +gem 'rake' diff --git a/pkgs/development/tools/build-managers/rake/Gemfile.lock b/pkgs/development/tools/build-managers/rake/Gemfile.lock new file mode 100644 index 00000000000..cbea90ab1a9 --- /dev/null +++ b/pkgs/development/tools/build-managers/rake/Gemfile.lock @@ -0,0 +1,13 @@ +GEM + remote: https://rubygems.org/ + specs: + rake (11.1.1) + +PLATFORMS + ruby + +DEPENDENCIES + rake + +BUNDLED WITH + 1.10.5 diff --git a/pkgs/development/tools/build-managers/rake/default.nix b/pkgs/development/tools/build-managers/rake/default.nix new file mode 100644 index 00000000000..3cf85b5fcb5 --- /dev/null +++ b/pkgs/development/tools/build-managers/rake/default.nix @@ -0,0 +1,17 @@ +{ lib, bundlerEnv, ruby }: + +bundlerEnv { + name = "rake-11.1.1"; + + inherit ruby; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + + meta = with lib; { + description = "A software task management and build automation tool"; + homepage = https://github.com/ruby/rake; + license = with licenses; mit; + platforms = platforms.unix; + }; +} diff --git a/pkgs/development/tools/build-managers/rake/gemset.nix b/pkgs/development/tools/build-managers/rake/gemset.nix new file mode 100644 index 00000000000..efea7a79dbb --- /dev/null +++ b/pkgs/development/tools/build-managers/rake/gemset.nix @@ -0,0 +1,9 @@ +{ + "rake" = { + version = "11.1.1"; + source = { + type = "gem"; + sha256 = "0h8wcic2xh3lv7yvs05pqnfqb80jyl488f7136lgxmajb0s1rqhg"; + }; + }; +} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 48219c0929f..272272381b6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9994,6 +9994,8 @@ in inherit (darwin.apple_sdk.frameworks) AppKit Carbon Cocoa; }; + rake = callPackage ../development/tools/build-managers/rake { }; + redis = callPackage ../servers/nosql/redis { }; redstore = callPackage ../servers/http/redstore { }; From fd94ec4984d737b995eda88dbc87cb26b24c73ce Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 29 Apr 2016 16:29:54 +0200 Subject: [PATCH 098/337] geolite-legacy: fix --- pkgs/data/misc/geolite-legacy/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index 17ede3f2be9..9a07429d4e1 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { "12k4nmfblm9c7kj4v7cyl6sgfgdfv2jdx4fl7nxfzpk1km7yc5na"; srcGeoLiteCity = fetchDB "GeoLiteCity.dat.xz" "GeoIPCity.dat.xz" - "190c5bq63rzkvvfrgiwgd5j0rk9qdq6vx16w28kraq8pwz0dcb2f"; + "04bi7zmmm7v9gl9vhxh0fvqfhmg9ja1lan4ff0njx7qs7lz3ak88"; srcGeoLiteCityv6 = fetchDB "GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz" "1sr2yapsfmdpl4zpf8i5rl3k65dgbq7bb1615g6wf60yw9ngh76x"; From 85aece2f8e0a2b9a410d7ae57b61c763c03c764b Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 28 Apr 2016 23:29:29 +0200 Subject: [PATCH 099/337] torbrowser: use makeLibraryPath instead of buildEnv Also remove redundant buildInputs --- pkgs/tools/security/tor/torbrowser.nix | 37 ++++++++++---------------- pkgs/top-level/all-packages.nix | 4 ++- 2 files changed, 17 insertions(+), 24 deletions(-) diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index 26def44672d..126c7940849 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -1,21 +1,16 @@ -{ stdenv, fetchurl, buildEnv, makeDesktopItem -, xorg, alsaLib, dbus, dbus_glib, glib, gtk, atk, pango, freetype, fontconfig -, gdk_pixbuf, cairo, zlib}: +{ stdenv, fetchurl, makeDesktopItem +, libXrender, libX11, libXext, libXt, alsaLib, dbus, dbus_glib, glib, gtk +, atk, pango, freetype, fontconfig, gdk_pixbuf, cairo, zlib +}: + let - # isolated tor environment - torEnv = buildEnv { - name = "tor-env"; - paths = [ - stdenv.cc.cc zlib glib alsaLib dbus dbus_glib gtk atk pango freetype - fontconfig gdk_pixbuf cairo xorg.libXrender xorg.libX11 xorg.libXext - xorg.libXt - ]; - extraOutputsToInstall = [ "lib" "out" ]; - }; + libPath = stdenv.lib.makeLibraryPath [ + stdenv.cc.cc zlib glib alsaLib dbus dbus_glib gtk atk pango freetype + fontconfig gdk_pixbuf cairo libXrender libX11 libXext libXt + ]; +in - ldLibraryPath = ''${torEnv}/lib${stdenv.lib.optionalString stdenv.is64bit ":${torEnv}/lib64"}''; - -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "tor-browser-${version}"; version = "5.5.5"; @@ -43,12 +38,10 @@ in stdenv.mkDerivation rec { doCheck = true; checkPhase = '' - # Just do a simple test if all libraries get loaded by running help on - # firefox and tor echo "Checking firefox..." - LD_LIBRARY_PATH=${ldLibraryPath} Browser/firefox --help 1> /dev/null + LD_LIBRARY_PATH=${libPath} Browser/firefox --help 1> /dev/null echo "Checking tor..." - LD_LIBRARY_PATH=${torEnv}/lib:Browser/TorBrowser/Tor Browser/TorBrowser/Tor/tor --help 1> /dev/null + LD_LIBRARY_PATH=${libPath}:Browser/TorBrowser/Tor Browser/TorBrowser/Tor/tor --help 1> /dev/null ''; installPhase = '' @@ -64,7 +57,7 @@ in stdenv.mkDerivation rec { echo "pref(\"extensions.torlauncher.tordatadir_path\", \"\$HOME/Data/Tor/\");" >> \ ~/Data/Browser/profile.default/preferences/extension-overrides.js fi - export LD_LIBRARY_PATH=${ldLibraryPath}:$out/share/tor-browser/Browser/TorBrowser/Tor + export LD_LIBRARY_PATH=${libPath}:$out/share/tor-browser/Browser/TorBrowser/Tor $out/share/tor-browser/Browser/firefox -no-remote -profile ~/Data/Browser/profile.default "\$@" EOF chmod +x $out/bin/tor-browser @@ -76,8 +69,6 @@ in stdenv.mkDerivation rec { cp Browser/browser/icons/mozicon128.png $out/share/pixmaps/torbrowser.png ''; - buildInputs = [ stdenv ]; - meta = with stdenv.lib; { description = "Tor Browser Bundle"; homepage = https://www.torproject.org/; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7b737c2aed2..e168d517103 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3462,7 +3462,9 @@ in torbutton = callPackage ../tools/security/torbutton { }; - torbrowser = callPackage ../tools/security/tor/torbrowser.nix { }; + torbrowser = callPackage ../tools/security/tor/torbrowser.nix { + inherit (xorg) libXrender libX11 libXext libXt; + }; touchegg = callPackage ../tools/inputmethods/touchegg { }; From 540104dd5ec4cf95dd86f0692aa6b66616000ba2 Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Fri, 29 Apr 2016 13:23:36 -0300 Subject: [PATCH 100/337] dotnetPackages.MaxMindDb: init at 1.1.0.0 --- pkgs/top-level/dotnet-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix index ea1840aefed..4eb34546094 100644 --- a/pkgs/top-level/dotnet-packages.nix +++ b/pkgs/top-level/dotnet-packages.nix @@ -102,6 +102,13 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { outputFiles = [ "lib/*" ]; }; + MaxMindDb = fetchNuGet { + baseName = "MaxMind.Db"; + version = "1.1.0.0"; + sha256 = "0lixl76f7k3ldiqzg94zh13gn82w5mm5dx72y97fcqvp8g6nj3ds"; + outputFiles = [ "lib/*" ]; + }; + NUnitRunners = fetchNuGet { baseName = "NUnit.Runners"; version = "2.6.4"; From a1fd742491341ae3090c88ae4130b89001c6f9ae Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Fri, 29 Apr 2016 13:24:26 -0300 Subject: [PATCH 101/337] dotnetPackages.MaxMindGeoIP2: init at 2.3.1 --- pkgs/top-level/dotnet-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix index 4eb34546094..2c49b49fbd7 100644 --- a/pkgs/top-level/dotnet-packages.nix +++ b/pkgs/top-level/dotnet-packages.nix @@ -109,6 +109,13 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { outputFiles = [ "lib/*" ]; }; + MaxMindGeoIP2 = fetchNuGet { + baseName = "MaxMind.GeoIP2"; + version = "2.3.1"; + sha256 = "1s44dvjnmj1aimbrgkmpj6h5dn1w6acgqjch1axc76yz6hwknqgf"; + outputFiles = [ "lib/*" ]; + }; + NUnitRunners = fetchNuGet { baseName = "NUnit.Runners"; version = "2.6.4"; From b61a6dd70a8824ffabbacd36dd8fccb84f64f2b8 Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Fri, 29 Apr 2016 13:24:51 -0300 Subject: [PATCH 102/337] dotnetPackages.SharpZipLib: init at 0.86.0 --- pkgs/top-level/dotnet-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix index 2c49b49fbd7..dafd2a722c9 100644 --- a/pkgs/top-level/dotnet-packages.nix +++ b/pkgs/top-level/dotnet-packages.nix @@ -116,6 +116,13 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { outputFiles = [ "lib/*" ]; }; + SharpZipLib = fetchNuGet { + baseName = "SharpZipLib"; + version = "0.86.0"; + sha256 = "01w2038gckfnq31pncrlgm7d0c939pwr1x4jj5450vcqpd4c41jr"; + outputFiles = [ "lib/*" ]; + }; + NUnitRunners = fetchNuGet { baseName = "NUnit.Runners"; version = "2.6.4"; From 65ce3f91c3b4cc7bce9e5cc11a1036ed61a323e0 Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Fri, 29 Apr 2016 13:25:12 -0300 Subject: [PATCH 103/337] dotnetPackages.SmartIrc4net: init at 0.4.5.1 --- pkgs/top-level/dotnet-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix index dafd2a722c9..828073c8120 100644 --- a/pkgs/top-level/dotnet-packages.nix +++ b/pkgs/top-level/dotnet-packages.nix @@ -123,6 +123,13 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { outputFiles = [ "lib/*" ]; }; + SmartIrc4net = fetchNuGet { + baseName = "SmartIrc4net"; + version = "0.4.5.1"; + sha256 = "1k6zc6xsqfzj7nc9479d32akj6d37jq6i1qirmz1i66p52zb5hm1"; + outputFiles = [ "lib/*" ]; + }; + NUnitRunners = fetchNuGet { baseName = "NUnit.Runners"; version = "2.6.4"; From 87993420caeb24a35c012e227663650eb1a33d9b Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Fri, 29 Apr 2016 13:25:39 -0300 Subject: [PATCH 104/337] dotnetPackages.FuzzyLogicLibrary: init at 1.2.0 --- pkgs/top-level/dotnet-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix index 828073c8120..e1b3bc74f23 100644 --- a/pkgs/top-level/dotnet-packages.nix +++ b/pkgs/top-level/dotnet-packages.nix @@ -130,6 +130,13 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { outputFiles = [ "lib/*" ]; }; + FuzzyLogicLibrary = fetchNuGet { + baseName = "FuzzyLogicLibrary"; + version = "1.2.0"; + sha256 = "0x518i8d3rw9n51xwawa4sywvqd722adj7kpcgcm63r66s950r5l"; + outputFiles = [ "bin/*" ]; + }; + NUnitRunners = fetchNuGet { baseName = "NUnit.Runners"; version = "2.6.4"; From 5c58471ff46d0784651b1e47c3f9e0e935df139c Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Fri, 29 Apr 2016 13:26:00 -0300 Subject: [PATCH 105/337] dotnetPackages.MonoNat: init at 1.2.21 --- pkgs/top-level/dotnet-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix index e1b3bc74f23..1003065699a 100644 --- a/pkgs/top-level/dotnet-packages.nix +++ b/pkgs/top-level/dotnet-packages.nix @@ -137,6 +137,13 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { outputFiles = [ "bin/*" ]; }; + MonoNat = fetchNuGet { + baseName = "Mono.Nat"; + version = "1.2.21"; + sha256 = "011xhmjrx6w5h110fcp40l95k3qj1gkzz3axgbfy0s8haf5hsf7s"; + outputFiles = [ "lib/*" ]; + }; + NUnitRunners = fetchNuGet { baseName = "NUnit.Runners"; version = "2.6.4"; From c3f54960c6983f7c590a00a1acedea4b80b9673a Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 29 Apr 2016 18:42:09 +0200 Subject: [PATCH 106/337] torbrowser: wrapper improvements This brings the wrapper closer to the upstream wrapper. Briefly, - exec to prevent the shell from hanging around - do not connect to session manager - set WM_CLASS to "Tor Browser" - use fonts.conf from the torbrowser bundle --- pkgs/tools/security/tor/torbrowser.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index 126c7940849..11988d9435f 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -50,15 +50,17 @@ stdenv.mkDerivation rec { cp -R * $out/share/tor-browser cat > "$out/bin/tor-browser" << EOF - #!${stdenv.shell} + #! ${stdenv.shell} + unset SESSION_MANAGER export HOME="\$HOME/.torbrowser4" if [ ! -d \$HOME ]; then mkdir -p \$HOME && cp -R $out/share/tor-browser/Browser/TorBrowser/Data \$HOME/ && chmod -R +w \$HOME echo "pref(\"extensions.torlauncher.tordatadir_path\", \"\$HOME/Data/Tor/\");" >> \ ~/Data/Browser/profile.default/preferences/extension-overrides.js fi + export FONTCONFIG_PATH=\$HOME/Data/fontconfig export LD_LIBRARY_PATH=${libPath}:$out/share/tor-browser/Browser/TorBrowser/Tor - $out/share/tor-browser/Browser/firefox -no-remote -profile ~/Data/Browser/profile.default "\$@" + exec $out/share/tor-browser/Browser/firefox --class "Tor Browser" -no-remote -profile ~/Data/Browser/profile.default "\$@" EOF chmod +x $out/bin/tor-browser From f5b3827e0e5ca91dea1f62eb748acfb454c429f1 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Fri, 29 Apr 2016 18:47:31 +0200 Subject: [PATCH 107/337] eclipse-plugin-testng: 6.9.11.201603260617 -> 6.9.11.201604020423 --- pkgs/applications/editors/eclipse/plugins.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index fe8580f09d0..13c2795ea55 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -378,16 +378,16 @@ rec { testng = buildEclipsePlugin rec { name = "testng-${version}"; - version = "6.9.11.201603260617"; + version = "6.9.11.201604020423"; srcFeature = fetchurl { url = "http://beust.com/eclipse-old/eclipse_${version}/features/org.testng.eclipse_${version}.jar"; - sha256 = "0cd7d3bdp6f081vrampsv53z55g1mjn04w9ngz3h8dr0h6jnxz3y"; + sha256 = "1cp7f6f0525wqwjj4pyrp0q0ii7zcd5gwd5acaq9jjb13xgw8vav"; }; srcPlugin = fetchurl { url = "http://beust.com/eclipse-old/eclipse_${version}/plugins/org.testng.eclipse_${version}.jar"; - sha256 = "10kdwnydmsvngn8ahijxrv50aps6wa4ckbf7p24mxbwlnmpqfj03"; + sha256 = "04m07cdfw0isp27ykx6dbrlcdw33rxww7vnavanygxxnlpyvyas3"; }; meta = with stdenv.lib; { From 0fcf7076739309b3ec6efe50f514627162a2ad5a Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 29 Apr 2016 19:26:43 +0200 Subject: [PATCH 108/337] YouComplteMe: FIX: ycm_core.so: undefined symbol: clang_parseTranslationUnit2FullArgv https://github.com/Valloric/YouCompleteMe/issues/2125 --- pkgs/misc/vim-plugins/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 5b32a1b49ea..0d754294cec 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -1,6 +1,6 @@ # TODO check that no license information gets lost { fetchurl, bash, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip -, which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages, zip +, which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages_38, zip , vim_configurable, vimPlugins, xkb_switch, git , Cocoa ? null }: @@ -938,17 +938,17 @@ rec { }; youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "youcompleteme-2016-04-10"; + name = "youcompleteme-2016-04-28"; src = fetchgit { url = "git://github.com/valloric/youcompleteme"; - rev = "f67033c990ff5d37ef91ba02da94f6d7409e1c5a"; - sha256 = "0hwpbj5hr9d26xdcjfxbssyrsl4926c8g999jzpah0sls1r3y2f0"; + rev = "cb5756943fdd3ba062f101a5aba34acdd34d1356"; + sha256 = "1fg85mf4x48g6jpn9idjp0k2nz1i34lrx1bxbvp0189ph1xfq7jj"; }; dependencies = []; buildInputs = [ python go cmake - (if stdenv.isDarwin then llvmPackages.clang else llvmPackages.clang-unwrapped) - llvmPackages.llvm + (if stdenv.isDarwin then llvmPackages_38.clang else llvmPackages_38.clang-unwrapped) + llvmPackages_38.llvm ] ++ stdenv.lib.optional stdenv.isDarwin Cocoa; buildPhase = '' From 928cf63a9214e4ceb802d9126c8b824d374dea8f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 29 Apr 2016 20:46:36 +0200 Subject: [PATCH 109/337] netboot -> netboot.x86_64-linux For consistency, and in case we ever want to support another architecture. --- nixos/release.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/release.nix b/nixos/release.nix index fa4a9860150..ab4e1aaf7d4 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -103,8 +103,7 @@ in rec { # Build the initial ramdisk so Hydra can keep track of its size over time. initialRamdisk = buildFromConfig ({ pkgs, ... }: { }) (config: config.system.build.initialRamdisk); - - netboot = let build = (import lib/eval-config.nix { + netboot.x86_64-linux = let build = (import lib/eval-config.nix { system = "x86_64-linux"; modules = [ ./modules/installer/netboot/netboot-minimal.nix From 07ecef52b71be937fe70fd6b63bba699c40808f5 Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Fri, 29 Apr 2016 14:19:53 -0300 Subject: [PATCH 110/337] dotnetPackages.SharpFont: init at 3.0.1 --- pkgs/top-level/dotnet-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix index 1003065699a..d882721f10d 100644 --- a/pkgs/top-level/dotnet-packages.nix +++ b/pkgs/top-level/dotnet-packages.nix @@ -123,6 +123,13 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { outputFiles = [ "lib/*" ]; }; + SharpFont = fetchNuGet { + baseName = "SharpFont"; + version = "3.0.1"; + sha256 = "1g639i8mbxc6qm0xqsf4mc0shv8nwdaidllka2xxwyksbq54skhs"; + outputFiles = [ "lib/*" "config/*" ]; + }; + SmartIrc4net = fetchNuGet { baseName = "SmartIrc4net"; version = "0.4.5.1"; From 6e68a6cf8116e714ea8db09f36c93d85585e20e3 Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Fri, 29 Apr 2016 14:38:32 -0300 Subject: [PATCH 111/337] dotnetPackages.StyleCopMSBuild: init at 4.7.49.0 --- pkgs/top-level/dotnet-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix index d882721f10d..6005c29cdf8 100644 --- a/pkgs/top-level/dotnet-packages.nix +++ b/pkgs/top-level/dotnet-packages.nix @@ -123,6 +123,13 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { outputFiles = [ "lib/*" ]; }; + StyleCopMSBuild = fetchNuGet { + baseName = "StyleCop.MSBuild"; + version = "4.7.49.0"; + sha256 = "0rpfyvcggm881ynvgr17kbx5hvj7ivlms0bmskmb2zyjlpddx036"; + outputFiles = [ "tools/*" ]; + }; + SharpFont = fetchNuGet { baseName = "SharpFont"; version = "3.0.1"; From ffe7da184e5910a86f430c1582fea9feb1afd88c Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Fri, 29 Apr 2016 15:34:35 -0300 Subject: [PATCH 112/337] dotnetPackages.StyleCopPlusMSBuild: init at 4.7.49.5 --- pkgs/top-level/dotnet-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix index 6005c29cdf8..8d30fc19024 100644 --- a/pkgs/top-level/dotnet-packages.nix +++ b/pkgs/top-level/dotnet-packages.nix @@ -130,6 +130,13 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { outputFiles = [ "tools/*" ]; }; + StyleCopPlusMSBuild = fetchNuGet { + baseName = "StyleCopPlus.MSBuild"; + version = "4.7.49.5"; + sha256 = "1hv4lfxw72aql8siyqc4n954vzdz8p6jx9f2wrgzz0jy1k98x2mr"; + outputFiles = [ "tools/*" ]; + }; + SharpFont = fetchNuGet { baseName = "SharpFont"; version = "3.0.1"; From 50970f4ccfd62c2086b026eb493d97edf6e957e0 Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Fri, 29 Apr 2016 15:34:54 -0300 Subject: [PATCH 113/337] dotnetPackages.RestSharp: init at 105.2.3 --- pkgs/top-level/dotnet-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix index 8d30fc19024..38dc513ff83 100644 --- a/pkgs/top-level/dotnet-packages.nix +++ b/pkgs/top-level/dotnet-packages.nix @@ -137,6 +137,13 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { outputFiles = [ "tools/*" ]; }; + RestSharp = fetchNuGet { + baseName = "RestSharp"; + version = "105.2.3"; + sha256 = "1br48124ppz80x92m84sfyil1gn23hxg2ml9i9hsd0lp86vlaa1m"; + outputFiles = [ "lib/*" ]; + }; + SharpFont = fetchNuGet { baseName = "SharpFont"; version = "3.0.1"; From 1541e1ca6bf765f882a17e52a82513d2ed4fb5db Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 29 Apr 2016 19:38:48 +0200 Subject: [PATCH 114/337] sdparm: 1.09 -> 1.10 --- pkgs/os-specific/linux/sdparm/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/sdparm/default.nix b/pkgs/os-specific/linux/sdparm/default.nix index fab13a125c4..fb6cc4d9eac 100644 --- a/pkgs/os-specific/linux/sdparm/default.nix +++ b/pkgs/os-specific/linux/sdparm/default.nix @@ -1,11 +1,12 @@ {stdenv, fetchurl}: -stdenv.mkDerivation { - name = "sdparm-1.09"; +stdenv.mkDerivation rec { + name = "sdparm-${version}"; + version = "1.10"; src = fetchurl { - url = http://sg.danny.cz/sg/p/sdparm-1.09.tar.xz; - sha256 = "0jakqyjwi72zqjzss04bally0xl0lc4710mx8da08vpmir1hfphg"; + url = "http://sg.danny.cz/sg/p/${name}.tar.xz"; + sha256 = "1jjq3lzgfy4r76rc26q02lv4wm5cb4dx5nh913h489zjrr4f3jbx"; }; meta = with stdenv.lib; { From 2415254a52dc9edf798ce2a7d08bffd3305ec55b Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 29 Apr 2016 19:41:41 +0200 Subject: [PATCH 115/337] git-hub: 0.9.0 -> 0.10 --- .../version-management/git-and-tools/git-hub/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git-hub/default.nix b/pkgs/applications/version-management/git-and-tools/git-hub/default.nix index b1626f687d4..579cb363702 100644 --- a/pkgs/applications/version-management/git-and-tools/git-hub/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-hub/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "git-hub-${version}"; - version = "0.9.0"; + version = "0.10"; src = fetchFromGitHub { - sha256 = "0c4kq4a906lr8nzway7qh0560n2ydvidh9rlffh44902rd48kp0h"; + sha256 = "0zy1g6zzv6cw8ffj8ffm28qa922fys2826n5813p8icqypi04y0k"; rev = "v${version}"; repo = "git-hub"; - owner = "sociomantic"; + owner = "sociomantic-tsunami"; }; buildInputs = [ python ]; From d51a55366efc925d4fbd0bbd3e829cae516766e4 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 29 Apr 2016 19:56:00 +0200 Subject: [PATCH 116/337] stress-ng: 0.05.00 -> 0.05.25 --- pkgs/tools/system/stress-ng/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix index a973d143fa9..17384da9881 100644 --- a/pkgs/tools/system/stress-ng/default.nix +++ b/pkgs/tools/system/stress-ng/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "stress-ng-${version}"; - version = "0.05.00"; + version = "0.05.25"; src = fetchurl { - sha256 = "0ppri86z6fj48nm5l0x1r8mh7mwaf7bvhmi10jz6a8w7apnc181w"; + sha256 = "13c94g06aswlhbv0cpsdrzym9jmbabkdm949j3h935gfdl1625v5"; url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz"; }; From 88f9f8b9ce085a72bdb71bed2da61156c2963bf8 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 29 Apr 2016 20:51:41 +0200 Subject: [PATCH 117/337] packagekit: 1.0.8 -> 1.1.0 --- pkgs/tools/package-management/packagekit/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/package-management/packagekit/default.nix b/pkgs/tools/package-management/packagekit/default.nix index ae8e1b252c4..bc57dd7c80f 100644 --- a/pkgs/tools/package-management/packagekit/default.nix +++ b/pkgs/tools/package-management/packagekit/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "packagekit-${version}"; - version = "1.0.8"; + version = "1.1.0"; src = fetchurl { - sha256 = "1vaxn4kwdwx6p03n88k4pnbd2l6lb0cbxpcs88kjack1jml17c3l"; + sha256 = "0sn38b80c6jx9d9r329ji9bg4m4gj6gnl04rv8fkmincj61qf7ag"; url = "http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${version}.tar.xz"; }; @@ -20,7 +20,6 @@ stdenv.mkDerivation rec { "--disable-connman" "--disable-systemd" "--disable-bash-completion" - "--disable-browser-plugin" "--disable-gstreamer-plugin" "--disable-gtk-module" "--disable-command-not-found" From fe9c463622f45745cfb1532e17e203cf8dffb4b0 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 29 Apr 2016 21:31:45 +0200 Subject: [PATCH 118/337] lemon: 1.0 -> 1.69 --- pkgs/development/tools/parsing/lemon/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/parsing/lemon/default.nix b/pkgs/development/tools/parsing/lemon/default.nix index 46aaa830512..480ee5b88f6 100644 --- a/pkgs/development/tools/parsing/lemon/default.nix +++ b/pkgs/development/tools/parsing/lemon/default.nix @@ -4,20 +4,20 @@ let srcs = { lemon = fetchurl { - sha256 = "1grm95m2cnc61zim332g7z8nchmcy91ljf50k13lm421v0ygyyv6"; - url = "http://www.sqlite.org/src/raw/tool/lemon.c?name=039f813b520b9395740c52f9cbf36c90b5d8df03"; + sha256 = "1c5pk2hz7j9hix5mpc38rwnm8dnlr2jqswf4lan6v78ccbyqzkjx"; + url = "http://www.sqlite.org/src/raw/tool/lemon.c?name=680980c7935bfa1edec20c804c9e5ba4b1dd96f5"; name = "lemon.c"; }; lempar = fetchurl { - sha256 = "09nki0cwc5zrm365g6plhjxz3byhl9w117ab3yvrpds43ks1j85z"; - url = "http://www.sqlite.org/src/raw/tool/lempar.c?name=3617143ddb9b176c3605defe6a9c798793280120"; + sha256 = "1ba13a6yh9j2cs1aw2fh4dxqvgf399gxq1gpp4sh8q0f2w6qiw3i"; + url = "http://www.sqlite.org/src/raw/tool/lempar.c?name=01ca97f87610d1dac6d8cd96ab109ab1130e76dc"; name = "lempar.c"; }; }; in stdenv.mkDerivation rec { name = "lemon-${version}"; - version = "1.0"; + version = "1.69"; phases = [ "buildPhase" "installPhase" ]; From aa8bc97dd666209c2f2d8f793d33806e28394fc6 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 29 Apr 2016 21:40:41 +0200 Subject: [PATCH 119/337] git-hub -> gitAndTools.git-hub (with alias) --- pkgs/applications/version-management/git-and-tools/default.nix | 2 ++ pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 -- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix index e193701ff95..8aae86b5536 100644 --- a/pkgs/applications/version-management/git-and-tools/default.nix +++ b/pkgs/applications/version-management/git-and-tools/default.nix @@ -51,6 +51,8 @@ rec { git-extras = callPackage ./git-extras { }; + git-hub = callPackage ./git-hub { }; + git-imerge = callPackage ./git-imerge { }; git-radar = callPackage ./git-radar { }; diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index f49b2d88436..266313c81e1 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -45,6 +45,7 @@ doNotDisplayTwice rec { firefoxWrapper = firefox; # 2015-09 fuse_exfat = exfat; # 2015-09-11 gettextWithExpat = gettext; # 2016-02-19 + git-hub = gitAndTools.git-hub; # added 2016-04-29 grantlee5 = qt5.grantlee; # added 2015-12-19 gupnptools = gupnp-tools; # added 2015-12-19 htmlTidy = html-tidy; # added 2014-12-06 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7b737c2aed2..8ab7940fe72 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1653,8 +1653,6 @@ in gifsicle = callPackage ../tools/graphics/gifsicle { }; - git-hub = callPackage ../applications/version-management/git-and-tools/git-hub { }; - git-lfs = goPackages.git-lfs.bin // { outputs = [ "bin" ]; }; gitfs = callPackage ../tools/filesystems/gitfs { }; From 4f7ac84263a15bb8655a0fcc8482fd8390d1c49b Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Fri, 29 Apr 2016 17:42:26 -0400 Subject: [PATCH 120/337] redis-desktop-manager: init at 0.8.3 --- .../misc/redis-desktop-manager/default.nix | 81 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 83 insertions(+) create mode 100644 pkgs/applications/misc/redis-desktop-manager/default.nix diff --git a/pkgs/applications/misc/redis-desktop-manager/default.nix b/pkgs/applications/misc/redis-desktop-manager/default.nix new file mode 100644 index 00000000000..7a1ed08ebf6 --- /dev/null +++ b/pkgs/applications/misc/redis-desktop-manager/default.nix @@ -0,0 +1,81 @@ +{ stdenv, lib, fetchgit, pkgconfig , libssh2 +, qtbase, qtdeclarative, qtgraphicaleffects, qtimageformats, qtquickcontrols +, qtsvg, qttools, qtquick1 +, makeQtWrapper, qmakeHook +}: + +let + breakpad_lss = fetchgit { + url = "https://chromium.googlesource.com/linux-syscall-support"; + rev = "08056836f2b4a5747daff75435d10d649bed22f6"; + sha256 = "1ryshs2nyxwa0kn3rlbnd5b3fhna9vqm560yviddcfgdm2jyg0hz"; + }; + +in + +stdenv.mkDerivation rec { + name = "redis-desktop-manager-${version}"; + version = "0.8.3"; + + src = fetchgit { + url = "https://github.com/uglide/RedisDesktopManager.git"; + fetchSubmodules = true; + rev = "refs/tags/${version}"; + sha256 = "08969xwqpjgvfa195dxskpr54p4mnapgfykcffpqpczp990ak1l6"; + }; + + nativeBuildInputs = [ makeQtWrapper qmakeHook ]; + + buildInputs = [ + pkgconfig libssh2 qtbase qtdeclarative qtgraphicaleffects qtimageformats + qtquick1 qtquickcontrols qtsvg qttools + ]; + + configurePhase = "true"; + + buildPhase = '' + srcdir=$PWD + + substituteInPlace src/resources/qml/ValueTabs.qml \ + --replace "import QtQuick.Controls 1.4" \ + "import QtQuick.Controls 1.2" + + cat < src/version.h +#ifndef RDM_VERSION + #define RDM_VERSION "${version}-120" +#endif // !RDM_VERSION +EOF + + cd $srcdir/3rdparty/gbreakpad + cp -r ${breakpad_lss} src/third_party/lss + chmod +w -R src/third_party/lss + touch README + + cd $srcdir/3rdparty/crashreporter + qmake CONFIG+=release DESTDIR="$srcdir/rdm/bin/linux/release" QMAKE_LFLAGS_RPATH="" + make + + cd $srcdir/3rdparty/gbreakpad + ./configure + make + + cd $srcdir/src + qmake + make + ''; + + installPhase = '' + mkdir -p $out/bin + instdir="$srcdir/bin/linux/release" + cp $instdir/rdm $out/bin + wrapQtProgram $out/bin/rdm + ''; + + meta = with lib; { + description = "Cross-platform open source Redis DB management tool"; + homepage = "http://redisdesktop.com/"; + license = licenses.lgpl21; + platforms = platforms.linux; + maintainers = with maintainers; [ cstrahan ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7b737c2aed2..8ddc4969612 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16358,6 +16358,8 @@ in inherit (pythonPackages) pexpect paramiko; }; + redis-desktop-manager = qt5.callPackage ../applications/misc/redis-desktop-manager { }; + robomongo = qt5.callPackage ../applications/misc/robomongo { }; rucksack = callPackage ../development/tools/rucksack { }; From d3c29a4140baa67af0d54af479ae3d28c660141d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Fri, 29 Apr 2016 20:11:15 -0300 Subject: [PATCH 121/337] pnmixer: 2014-07-24 -> 2016-04-23 --- pkgs/tools/audio/pnmixer/default.nix | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/audio/pnmixer/default.nix b/pkgs/tools/audio/pnmixer/default.nix index f65a151905c..b9c602dd767 100644 --- a/pkgs/tools/audio/pnmixer/default.nix +++ b/pkgs/tools/audio/pnmixer/default.nix @@ -1,16 +1,22 @@ -{ stdenv, fetchgit, alsaLib, pkgconfig, gtk3, glibc, autoconf, automake, libnotify, libX11, gettext }: +{ stdenv, fetchFromGitHub, alsaLib, pkgconfig, gtk3, glibc, autoconf, automake, libnotify, libX11, intltool }: stdenv.mkDerivation rec { - name = "pnmixer-2014-07-24"; + name = "pnmixer-${version}"; + version = "2016-04-23"; - src = fetchgit { - url = "git://github.com/nicklan/pnmixer.git"; - rev = "1e09a075c0c63d8b161b13ea92528a798bdb464a"; - sha256 = "15k689xycpc6pvq9vgg9ak92b9sg09dh4yrh83kjcaws63alrzl5"; + src = fetchFromGitHub { + owner = "nicklan"; + repo = "pnmixer"; + rev = "cb20096716dbb5440b6560d81108d9c8f7188c48"; + sha256 = "17gl5fb3hpdgxyys8h5k3nraw7qdyqv9k9kz8ykr5h7gg29nxy66"; }; + nativeBuildInputs = [ + pkgconfig autoconf automake intltool + ]; + buildInputs = [ - alsaLib pkgconfig gtk3 glibc autoconf automake libnotify libX11 gettext + alsaLib gtk3 glibc libnotify libX11 ]; preConfigure = '' @@ -21,6 +27,7 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; meta = with stdenv.lib; { + homepage = https://github.com/nicklan/pnmixer; description = "ALSA mixer for the system tray"; license = licenses.gpl3; maintainers = with maintainers; [ campadrenalin ]; From 190eaea73972aee1ce3fd27ef449845fb6ba1bc7 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 29 Apr 2016 20:56:02 +0300 Subject: [PATCH 122/337] ejabberd: 16.02 -> 16.04 --- pkgs/servers/xmpp/ejabberd/default.nix | 254 ++++--------------------- 1 file changed, 41 insertions(+), 213 deletions(-) diff --git a/pkgs/servers/xmpp/ejabberd/default.nix b/pkgs/servers/xmpp/ejabberd/default.nix index 10658ce4dd2..dd882de723a 100644 --- a/pkgs/servers/xmpp/ejabberd/default.nix +++ b/pkgs/servers/xmpp/ejabberd/default.nix @@ -1,4 +1,4 @@ -{ stdenv, writeScriptBin, lib, fetchurl, fetchFromGitHub +{ stdenv, writeScriptBin, lib, fetchurl, fetchFromGitHub, git, cacert , erlang, openssl, expat, libyaml, bash, gnused, gnugrep, coreutils, utillinux, procps , withMysql ? false , withPgsql ? false @@ -13,8 +13,6 @@ }: let - ctlpath = lib.makeBinPath [ bash gnused gnugrep coreutils utillinux procps ]; - fakegit = writeScriptBin "git" '' #! ${stdenv.shell} -e if [ "$1" = "describe" ]; then @@ -22,192 +20,15 @@ let fi ''; - # These can be extracted from `rebar.config` - # Some dependencies are from another packages. Try commenting them out; then during build - # you'll get necessary revision information. - ejdeps = { - lager = fetchFromGitHub { - owner = "basho"; - repo = "lager"; - rev = "3.0.2"; - sha256 = "04l40dlqpl2y6ddpbpknmnjf537bjvrmg8r0jnmw1h60dgyb2ydk"; - }; - # dependency of lager - goldrush = fetchFromGitHub { - owner = "DeadZen"; - repo = "goldrush"; - rev = "0.1.7"; - sha256 = "1104j8v86hdavxf08yjyjkpi5vf95rfvsywdx29c69x3z33i4z3m"; - }; - p1_utils = fetchFromGitHub { - owner = "processone"; - repo = "p1_utils"; - rev = "1.0.3"; - sha256 = "0bw163wx0ji2sz7yb3nzvm1mnnljsdji606xzk33za8c4sgrb4nj"; - }; - cache_tab = fetchFromGitHub { - owner = "processone"; - repo = "cache_tab"; - rev = "1.0.2"; - sha256 = "1krgn6y95jgc8pc0vkj36p0wcazsb8b6h1x4f0r1936jff2vqk33"; - }; - fast_tls = fetchFromGitHub { - owner = "processone"; - repo = "fast_tls"; - rev = "1.0.1"; - sha256 = "08lh6935k590hix3z69kjjd75w68vmmjcx7gi4zh8j7li4v9k9l2"; - }; - stringprep = fetchFromGitHub { - owner = "processone"; - repo = "stringprep"; - rev = "1.0.2"; - sha256 = "1wrisajyll45wf6cz1rb2q70sz83i6nfnfiijsbzhy0xk51436sa"; - }; - fast_xml = fetchFromGitHub { - owner = "processone"; - repo = "fast_xml"; - rev = "1.1.3"; - sha256 = "1a2k21fqz8rp4laz7wn0hsxy58i1gdwc3qhw3k2kar8lgw4m3wqp"; - }; - stun = fetchFromGitHub { - owner = "processone"; - repo = "stun"; - rev = "1.0.1"; - sha256 = "0bq0qkc7h3nhqxa6ff2nf6bi4kiax4208716hxfz6l1vxrh7f3p2"; - }; - esip = fetchFromGitHub { - owner = "processone"; - repo = "esip"; - rev = "1.0.2"; - sha256 = "0ibvb85wkqw81y154bagp0kgf1jmdscmfq8yk73j1k986dmiqfn2"; - }; - fast_yaml = fetchFromGitHub { - owner = "processone"; - repo = "fast_yaml"; - rev = "1.0.2"; - sha256 = "019imn255bkkvilg4nrcidl8w6dn2jrb2nyrs2nixsgcbmvkdl5k"; - }; - jiffy = fetchFromGitHub { - owner = "davisp"; - repo = "jiffy"; - rev = "0.14.7"; - sha256 = "1w55vwz4a94v0aajm3lg6nlhpw2w0zdddiw36f2n4sfhbqn0v0jr"; - }; - p1_oauth2 = fetchFromGitHub { - owner = "processone"; - repo = "p1_oauth2"; - rev = "0.6.1"; - sha256 = "1wvmi3fj05hlbi3sbqpakznq70n76a7nbvbrjhr8k79bmvsh6lyl"; - }; - p1_xmlrpc = fetchFromGitHub { - owner = "processone"; - repo = "p1_xmlrpc"; - rev = "1.15.1"; - sha256 = "12pfvb3k9alzg7qbph3bc1sw7wk86psm3jrdrfclq90zlpwqa0w3"; - }; - luerl = fetchFromGitHub { - owner = "rvirding"; - repo = "luerl"; - rev = "9524d0309a88b7c62ae93da0b632b185de3ba9db"; - sha256 = "15yplmv2xybnz3nby940752jw672vj99l1j61rrfy686hgrfnc42"; - }; - - p1_mysql = fetchFromGitHub { - owner = "processone"; - repo = "p1_mysql"; - rev = "1.0.1"; - sha256 = "17122xhc420kqfsv4c4g0jcllpdbhg84wdlwd3227w4q729jg6bk"; - }; - p1_pgsql = fetchFromGitHub { - owner = "processone"; - repo = "p1_pgsql"; - rev = "1.0.1"; - sha256 = "1ca0hhxyfmwjp49zjga1fdhrbaqnxdpmcvs2i6nz6jmapik788nr"; - }; - sqlite3 = fetchFromGitHub { - owner = "processone"; - repo = "erlang-sqlite3"; - rev = "1.1.5"; - sha256 = "17n4clysg540nx9g8k8mi9l7vkz8wigycgxmzzn0wmgxdf6mhxlb"; - }; - p1_pam = fetchFromGitHub { - owner = "processone"; - repo = "epam"; - rev = "1.0.0"; - sha256 = "0dlbmfwndhyg855vnhwyccxcjqzf2wcgc7522mjb9q38cva50rpr"; - }; - ezlib = fetchFromGitHub { - owner = "processone"; - repo = "ezlib"; - rev = "1.0.1"; - sha256 = "1asp7s2q72iql870igc827dvi9iqyd6lhs0q3jbjj2w7xfz4x4kk"; - }; - hamcrest = fetchFromGitHub { - owner = "hyperthunk"; - repo = "hamcrest-erlang"; - rev = "908a24fda4a46776a5135db60ca071e3d783f9f6"; - sha256 = "0irxidwrb37m0xwls6q9nn2zfs3pyxrgbnjgrhnh7gm35ib51hkj"; - }; - riakc = fetchFromGitHub { - owner = "basho"; - repo = "riak-erlang-client"; - rev = "527722d12d0433b837cdb92a60900c2cb5df8942"; - sha256 = "13rkwibsjsl2gdysvf11r1hqfrf89hjgpa0x0hz2910f2ryqll3y"; - }; - # dependency of riakc - riak_pb = fetchFromGitHub { - owner = "basho"; - repo = "riak_pb"; - rev = "2.1.0.7"; - sha256 = "1p0qmjq069f7j1m29dv36ayvz8m0pcm94ccsnv5blykfg2c5ja0c"; - }; - # dependency of riak_pb - protobuffs = fetchFromGitHub { - owner = "basho"; - repo = "erlang_protobuffs"; - rev = "0.8.2"; - sha256 = "0w4jmsnc9x2ykqh1q6b12pl8a9973dxdhqk3y0ph17n83q5xz3h7"; - }; - elixir = fetchFromGitHub { - owner = "elixir-lang"; - repo = "elixir"; - rev = "v1.1.0"; - sha256 = "0r5673x2qdvfbwmvyvj8ddvzgxnkl3cv9jsf1yzsxgdifjbrzwx7"; - }; - rebar_elixir_plugin = fetchFromGitHub { - owner = "processone"; - repo = "rebar_elixir_plugin"; - rev = "0.1.0"; - sha256 = "0x04ff53mxwd9va8nl4m70dbamp6p4dpxs646c168iqpnpadk3sk"; - }; - iconv = fetchFromGitHub { - owner = "processone"; - repo = "iconv"; - rev = "1.0.0"; - sha256 = "0dfc23m2lqilj8ixn23wpj5xp1mgajb9b5ch95riigxzxmx97ri9"; - }; - meck = fetchFromGitHub { - owner = "eproxus"; - repo = "meck"; - rev = "0.8.2"; - sha256 = "0s4qbvryap46cz63awpbv5zzmlcay5pn2lixgmgvcjarqv70cbs7"; - }; - eredis = fetchFromGitHub { - owner = "wooga"; - repo = "eredis"; - rev = "v1.0.8"; - sha256 = "10fr3kbc2nd2liggsq4y77nfirndzapcxzkjgyp06bpr9cjlvhlm"; - }; - - }; + ctlpath = lib.makeBinPath [ bash gnused gnugrep coreutils utillinux procps ]; in stdenv.mkDerivation rec { - version = "16.02"; + version = "16.04"; name = "ejabberd-${version}"; src = fetchurl { url = "http://www.process-one.net/downloads/ejabberd/${version}/${name}.tgz"; - sha256 = "0yiai7zyjdcp0ppc5l5p56bxhg273hwfbv41qlbkg32dhr880f4q"; + sha256 = "1hrcswk03x5x6f6xy8sac4ihhi6jcmsfp6449k3570j39vklz5ix"; }; nativeBuildInputs = [ fakegit ]; @@ -222,21 +43,40 @@ in stdenv.mkDerivation rec { # Apparently needed for Elixir LANG = "en_US.UTF-8"; - depsNames = - [ "lager" "goldrush" "p1_utils" "cache_tab" "fast_tls" "stringprep" "fast_xml" "stun" "esip" "fast_yaml" - "jiffy" "p1_oauth2" "p1_xmlrpc" "luerl" - ] - ++ lib.optional withMysql "p1_mysql" - ++ lib.optional withPgsql "p1_pgsql" - ++ lib.optional withSqlite "sqlite3" - ++ lib.optional withPam "p1_pam" - ++ lib.optional withZlib "ezlib" - ++ lib.optionals withRiak [ "hamcrest" "riakc" "riak_pb" "protobuffs" ] - ++ lib.optionals withElixir [ "elixir" "rebar_elixir_plugin" ] - ++ lib.optional withIconv "iconv" - ++ lib.optional withTools "meck" - ++ lib.optional withRedis "eredis" - ; + deps = stdenv.mkDerivation { + name = "ejabberd-deps-${version}"; + + inherit src; + + configureFlags = [ "--enable-all" "--with-sqlite3=${sqlite}" ]; + + buildInputs = [ git erlang openssl expat libyaml sqlite pam zlib elixir ]; + + GIT_SSL_CAINFO = "${cacert}/etc/ssl/certs/ca-bundle.crt"; + + preBuild = '' + patchShebangs . + ''; + + makeFlags = [ "deps" ]; + + installPhase = '' + for i in deps/*; do + ( cd $i + git reset --hard + git clean -fdx + git describe --always --tags > .rev + rm -rf .git + ) + done + + cp -r deps $out + ''; + + outputHashMode = "recursive"; + outputHashAlgo = "sha256"; + outputHash = "0kmk22z1r9c23j9hh91975pqh3jkh7z6i1gnmw4qxr8alcnpr75f"; + }; configureFlags = [ (lib.enableFeature withMysql "mysql") @@ -251,24 +91,11 @@ in stdenv.mkDerivation rec { (lib.enableFeature withRedis "redis") ] ++ lib.optional withSqlite "--with-sqlite3=${sqlite}"; - depsPaths = map (x: builtins.getAttr x ejdeps) depsNames; - depsRevs = map (x: x.rev) depsPaths; - enableParallelBuilding = true; preBuild = '' - mkdir deps - depsPathsA=( $depsPaths ) - depsNamesA=( $depsNames ) - depsRevsA=( $depsRevs ) - for i in {0..${toString (builtins.length depsNames - 1)}}; do - path="deps/''${depsNamesA[$i]}" - cp -R ''${depsPathsA[$i]} "$path" - chmod -R +w "$path" - echo "''${depsRevsA[$i]}" > "$path/.rev" - done - touch deps/.got - patchShebangs . + cp -r $deps deps + chmod -R +w deps for i in deps/*; do [ -x "$i/configure" ] && ( cd "$i"; ./configure ) || true @@ -290,5 +117,6 @@ in stdenv.mkDerivation rec { homepage = http://www.ejabberd.im; platforms = lib.platforms.linux; maintainers = [ lib.maintainers.sander lib.maintainers.abbradar ]; + broken = withElixir; }; } From 938d64f1f386c8d9f82c06c55e78de697de2e781 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 02:58:00 +0300 Subject: [PATCH 123/337] quote URLs in my packages to ease opening them from urxvt --- pkgs/applications/audio/deadbeef/default.nix | 4 ++-- pkgs/applications/audio/paprefs/default.nix | 2 +- pkgs/applications/audio/pavucontrol/default.nix | 2 +- pkgs/applications/audio/svox/default.nix | 2 +- pkgs/applications/misc/octoprint/default.nix | 2 +- pkgs/applications/misc/octoprint/plugins.nix | 4 ++-- pkgs/applications/misc/openbrf/default.nix | 2 +- .../instant-messengers/pidgin-plugins/otr/default.nix | 2 +- pkgs/development/libraries/ijs/default.nix | 2 +- pkgs/games/dwarf-fortress/dfhack/default.nix | 2 +- pkgs/tools/misc/grub4dos/default.nix | 2 +- pkgs/tools/misc/sdl-jstest/default.nix | 2 +- pkgs/tools/misc/xiccd/default.nix | 2 +- pkgs/tools/networking/dropbear/default.nix | 2 +- pkgs/tools/networking/xl2tpd/default.nix | 2 +- pkgs/tools/system/thermald/default.nix | 2 +- 16 files changed, 18 insertions(+), 18 deletions(-) diff --git a/pkgs/applications/audio/deadbeef/default.nix b/pkgs/applications/audio/deadbeef/default.nix index b8942033976..3ed4e587ac5 100644 --- a/pkgs/applications/audio/deadbeef/default.nix +++ b/pkgs/applications/audio/deadbeef/default.nix @@ -96,10 +96,10 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Ultimate Music Player for GNU/Linux"; - homepage = http://deadbeef.sourceforge.net/; + homepage = "http://deadbeef.sourceforge.net/"; license = licenses.gpl2; platforms = platforms.linux; maintainers = [ maintainers.abbradar ]; - repositories.git = https://github.com/Alexey-Yakovenko/deadbeef; + repositories.git = "https://github.com/Alexey-Yakovenko/deadbeef"; }; } diff --git a/pkgs/applications/audio/paprefs/default.nix b/pkgs/applications/audio/paprefs/default.nix index 3ce52806a4e..0f8c7a95010 100644 --- a/pkgs/applications/audio/paprefs/default.nix +++ b/pkgs/applications/audio/paprefs/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { dialog for the PulseAudio sound server. ''; - homepage = http://freedesktop.org/software/pulseaudio/paprefs/; + homepage = "http://freedesktop.org/software/pulseaudio/paprefs/"; license = licenses.gpl2Plus; diff --git a/pkgs/applications/audio/pavucontrol/default.nix b/pkgs/applications/audio/pavucontrol/default.nix index 2c6f70195b1..f218767c55e 100644 --- a/pkgs/applications/audio/pavucontrol/default.nix +++ b/pkgs/applications/audio/pavucontrol/default.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { easily control the volume of all clients, sinks, etc. ''; - homepage = http://freedesktop.org/software/pulseaudio/pavucontrol/ ; + homepage = "http://freedesktop.org/software/pulseaudio/pavucontrol/"; license = stdenv.lib.licenses.gpl2Plus; diff --git a/pkgs/applications/audio/svox/default.nix b/pkgs/applications/audio/svox/default.nix index f8258dd10ab..90e7d41a97b 100644 --- a/pkgs/applications/audio/svox/default.nix +++ b/pkgs/applications/audio/svox/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Text-to-speech engine"; - homepage = https://android.googlesource.com/platform/external/svox; + homepage = "https://android.googlesource.com/platform/external/svox"; platforms = platforms.linux; license = licenses.asl20; maintainers = with maintainers; [ abbradar ]; diff --git a/pkgs/applications/misc/octoprint/default.nix b/pkgs/applications/misc/octoprint/default.nix index b9b6c10a13f..3178ea5684d 100644 --- a/pkgs/applications/misc/octoprint/default.nix +++ b/pkgs/applications/misc/octoprint/default.nix @@ -34,7 +34,7 @@ pythonPackages.buildPythonApplication rec { ''; meta = with stdenv.lib; { - homepage = http://octoprint.org/; + homepage = "http://octoprint.org/"; description = "The snappy web interface for your 3D printer"; platforms = platforms.all; license = licenses.agpl3; diff --git a/pkgs/applications/misc/octoprint/plugins.nix b/pkgs/applications/misc/octoprint/plugins.nix index 7ff6686a937..7f36f79cc9c 100644 --- a/pkgs/applications/misc/octoprint/plugins.nix +++ b/pkgs/applications/misc/octoprint/plugins.nix @@ -31,8 +31,8 @@ in { ''; meta = with stdenv.lib; { - homepage = https://github.com/donovan6000/M3D-Fio; - description = " OctoPrint plugin for the Micro 3D printer"; + homepage = "https://github.com/donovan6000/M3D-Fio"; + description = "OctoPrint plugin for the Micro 3D printer"; platforms = platforms.all; license = licenses.gpl3; maintainers = with maintainers; [ abbradar ]; diff --git a/pkgs/applications/misc/openbrf/default.nix b/pkgs/applications/misc/openbrf/default.nix index 70be67a4d28..36218b6d507 100644 --- a/pkgs/applications/misc/openbrf/default.nix +++ b/pkgs/applications/misc/openbrf/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { meta = with stdenv.lib; { description = "A tool to edit resource files (BRF)"; - homepage = https://github.com/cfcohen/openbrf; + homepage = "https://github.com/cfcohen/openbrf"; maintainers = with stdenv.lib.maintainers; [ abbradar ]; license = licenses.free; platforms = platforms.linux; diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix index 9f5c246ede6..bdc16d101f5 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { buildInputs = [ libotr pidgin intltool ]; meta = with stdenv.lib; { - homepage = https://otr.cypherpunks.ca/; + homepage = "https://otr.cypherpunks.ca/"; description = "Plugin for Pidgin 2.x which implements OTR Messaging"; license = licenses.gpl2; platforms = platforms.linux; diff --git a/pkgs/development/libraries/ijs/default.nix b/pkgs/development/libraries/ijs/default.nix index 0c7d412fee6..da0ae463e85 100644 --- a/pkgs/development/libraries/ijs/default.nix +++ b/pkgs/development/libraries/ijs/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { configureFlags = [ "--disable-static" "--enable-shared" ]; meta = with stdenv.lib; { - homepage = https://www.openprinting.org/download/ijs/; + homepage = "https://www.openprinting.org/download/ijs/"; description = "Raster printer driver architecture"; license = licenses.gpl3Plus; diff --git a/pkgs/games/dwarf-fortress/dfhack/default.nix b/pkgs/games/dwarf-fortress/dfhack/default.nix index aaed6b8fd2d..0ffcf01ade4 100644 --- a/pkgs/games/dwarf-fortress/dfhack/default.nix +++ b/pkgs/games/dwarf-fortress/dfhack/default.nix @@ -49,7 +49,7 @@ in stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Memory hacking library for Dwarf Fortress and a set of tools that use it"; - homepage = https://github.com/DFHack/dfhack/; + homepage = "https://github.com/DFHack/dfhack/"; license = licenses.zlib; platforms = [ "i686-linux" ]; maintainers = with maintainers; [ robbinch a1russell abbradar ]; diff --git a/pkgs/tools/misc/grub4dos/default.nix b/pkgs/tools/misc/grub4dos/default.nix index c59869c0dc7..e5c613f7a89 100644 --- a/pkgs/tools/misc/grub4dos/default.nix +++ b/pkgs/tools/misc/grub4dos/default.nix @@ -26,7 +26,7 @@ in stdenv.mkDerivation { dontPatchELF = true; meta = with stdenv.lib; { - homepage = http://grub4dos.chenall.net/; + homepage = "http://grub4dos.chenall.net/"; description = "GRUB for DOS is the dos extension of GRUB"; maintainers = with maintainers; [ abbradar ]; platforms = platforms.all; diff --git a/pkgs/tools/misc/sdl-jstest/default.nix b/pkgs/tools/misc/sdl-jstest/default.nix index 677f52c2c32..fec1039a1f2 100644 --- a/pkgs/tools/misc/sdl-jstest/default.nix +++ b/pkgs/tools/misc/sdl-jstest/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake pkgconfig docbook_xsl ]; meta = with stdenv.lib; { - homepage = https://github.com/Grumbel/sdl-jstest; + homepage = "https://github.com/Grumbel/sdl-jstest"; description = "Simple SDL joystick test application for the console"; license = licenses.gpl3; platforms = platforms.linux; diff --git a/pkgs/tools/misc/xiccd/default.nix b/pkgs/tools/misc/xiccd/default.nix index cdc2af19501..03c8949bb45 100644 --- a/pkgs/tools/misc/xiccd/default.nix +++ b/pkgs/tools/misc/xiccd/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "X color profile daemon"; - homepage = https://github.com/agalakhov/xiccd; + homepage = "https://github.com/agalakhov/xiccd"; license = licenses.gpl3; maintainers = with maintainers; [ abbradar ]; platforms = platforms.linux; diff --git a/pkgs/tools/networking/dropbear/default.nix b/pkgs/tools/networking/dropbear/default.nix index 586ae6b544e..d102ef5d7c3 100644 --- a/pkgs/tools/networking/dropbear/default.nix +++ b/pkgs/tools/networking/dropbear/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { buildInputs = [ zlib ]; meta = with stdenv.lib; { - homepage = http://matt.ucc.asn.au/dropbear/dropbear.html; + homepage = "http://matt.ucc.asn.au/dropbear/dropbear.html"; description = "A small footprint implementation of the SSH 2 protocol"; license = licenses.mit; maintainers = with maintainers; [ abbradar ]; diff --git a/pkgs/tools/networking/xl2tpd/default.nix b/pkgs/tools/networking/xl2tpd/default.nix index 4b8f91461d8..ac8be4eb5de 100644 --- a/pkgs/tools/networking/xl2tpd/default.nix +++ b/pkgs/tools/networking/xl2tpd/default.nix @@ -20,7 +20,7 @@ in stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { - homepage = http://www.xelerance.com/software/xl2tpd/; + homepage = "http://www.xelerance.com/software/xl2tpd/"; description = "Layer 2 Tunnelling Protocol Daemon (RFC 2661)"; platforms = platforms.linux; license = licenses.gpl2; diff --git a/pkgs/tools/system/thermald/default.nix b/pkgs/tools/system/thermald/default.nix index dd28d5b2b1d..e4b2055b591 100644 --- a/pkgs/tools/system/thermald/default.nix +++ b/pkgs/tools/system/thermald/default.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Thermal Daemon"; - homepage = https://01.org/linux-thermal-daemon; + homepage = "https://01.org/linux-thermal-daemon"; license = licenses.gpl2; platforms = platforms.linux; maintainers = with maintainers; [ abbradar ]; From ce6f4e25b279e2933aacf9318a264ee997daa799 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 02:58:11 +0300 Subject: [PATCH 124/337] deadbeef: 0.7.0 -> 0.7.2 --- pkgs/applications/audio/deadbeef/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/deadbeef/default.nix b/pkgs/applications/audio/deadbeef/default.nix index 3ed4e587ac5..43aba89213f 100644 --- a/pkgs/applications/audio/deadbeef/default.nix +++ b/pkgs/applications/audio/deadbeef/default.nix @@ -53,11 +53,11 @@ assert remoteSupport -> curl != null; stdenv.mkDerivation rec { name = "deadbeef-${version}"; - version = "0.7.0"; + version = "0.7.2"; src = fetchurl { url = "mirror://sourceforge/project/deadbeef/${name}.tar.bz2"; - sha256 = "0s6qip1zs83pig75pnd30ayiv1dbbj7s72px9mr31f4m0v86kaqx"; + sha256 = "0rwdxxn7h94vlgblbkswyvj6pm82488v8x5nrmlrcsbzjjf2pccw"; }; buildInputs = with stdenv.lib; [ jansson ] From 8551602e9c57cc2f947086d61ff99a8e8b10662c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 02:58:28 +0300 Subject: [PATCH 125/337] octoprint-plugins.m3d-fio: 0.30.2 -> 0.32 --- pkgs/applications/misc/octoprint/plugins.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/octoprint/plugins.nix b/pkgs/applications/misc/octoprint/plugins.nix index 7f36f79cc9c..852ec5b444d 100644 --- a/pkgs/applications/misc/octoprint/plugins.nix +++ b/pkgs/applications/misc/octoprint/plugins.nix @@ -8,13 +8,13 @@ in { m3d-fio = buildPlugin rec { name = "M3D-Fio-${version}"; - version = "0.30.2"; + version = "0.32"; src = fetchFromGitHub { owner = "donovan6000"; repo = "M3D-Fio"; rev = "V${version}"; - sha256 = "1knm41hwjf6v4yjx8khr2zd9ryndmw8bkp3y80hgjc5p4nqxrmg3"; + sha256 = "1s15nx6v56yjwd88b19fx0gk1l0abp76nz10yicspdn91fpr1sf4"; }; patches = [ From c4ab28e38e2917e1da82eea3736bc9a8049a16f0 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 02:59:00 +0300 Subject: [PATCH 126/337] tdesktop: 0.9.33 -> 0.9.44 --- .../telegram/tdesktop/default.nix | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix index 41a3c690f7b..37c0fd6a175 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix @@ -12,20 +12,20 @@ let system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64; in stdenv.mkDerivation rec { name = "telegram-desktop-${version}"; - version = "0.9.33"; + version = "0.9.44"; qtVersion = lib.replaceStrings ["."] ["_"] qtbase.version; src = fetchFromGitHub { owner = "telegramdesktop"; repo = "tdesktop"; rev = "v${version}"; - sha256 = "020vwm7h22951v9zh457d82qy5ifp746vwishkvb16h1vwr1qx4s"; + sha256 = "0ydd5yhy2nq4n6x59ajb6c4d0blyj6gm7hkx4hfrx2a88iksc5rm"; }; tgaur = fetchgit { url = "https://aur.archlinux.org/telegram-desktop.git"; - rev = "df47a864282959b103a08b65844e9088e012fdb3"; - sha256 = "1v1dbi8yiaf2hgghniykm5qbnda456xj3zfjnbqysn41f5cn40h4"; + rev = "f8907d1ccaf8345c06232238342921213270e3d8"; + sha256 = "1fsp098ykpf5gynn3lq3qcj3a47bkjfr0l96pymmmfd4a2s1690v"; }; buildInputs = [ @@ -88,6 +88,17 @@ in stdenv.mkDerivation rec { -e 's,-flto ,,g' echo "Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)" >> Telegram/SourceFiles/stdafx.cpp + ( mkdir -p Linux/DebugIntermediateStyle + cd Linux/DebugIntermediateStyle + qmake CONFIG+=debug ../../Telegram/MetaStyle.pro + buildPhase + ) + ( mkdir -p Linux/DebugIntermediateLang + cd Linux/DebugIntermediateLang + qmake CONFIG+=debug ../../Telegram/MetaLang.pro + buildPhase + ) + ( mkdir -p ../Libraries cd ../Libraries for i in $qtSrcs; do @@ -121,17 +132,6 @@ in stdenv.mkDerivation rec { installPhase ) - ( mkdir -p Linux/DebugIntermediateStyle - cd Linux/DebugIntermediateStyle - qmake CONFIG+=debug ../../Telegram/MetaStyle.pro - buildPhase - ) - ( mkdir -p Linux/DebugIntermediateLang - cd Linux/DebugIntermediateLang - qmake CONFIG+=debug ../../Telegram/MetaLang.pro - buildPhase - ) - ( mkdir -p Linux/ReleaseIntermediate cd Linux/ReleaseIntermediate qmake $qmakeFlags ../../Telegram/Telegram.pro @@ -147,7 +147,7 @@ in stdenv.mkDerivation rec { sed "s,/usr/bin,$out/bin,g" $tgaur/telegramdesktop.desktop > $out/share/applications/telegramdesktop.desktop sed "s,/usr/bin,$out/bin,g" $tgaur/tg.protocol > $out/share/kde4/services/tg.protocol for icon_size in 16 32 48 64 128 256 512; do - install -Dm644 "Telegram/SourceFiles/art/icon''${icon_size}.png" "$out/share/icons/hicolor/''${icon_size}x''${icon_size}/apps/telegram-desktop.png" + install -Dm644 "Telegram/Resources/art/icon''${icon_size}.png" "$out/share/icons/hicolor/''${icon_size}x''${icon_size}/apps/telegram-desktop.png" done fixupPhase From 6fef00260aa38b9faaf37d8fb3270fe952a60cf4 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 02:59:11 +0300 Subject: [PATCH 127/337] folly: 0.57.0 -> 2016-04-29 --- pkgs/development/libraries/folly/default.nix | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/pkgs/development/libraries/folly/default.nix b/pkgs/development/libraries/folly/default.nix index 046b7f97ba4..72867e012a9 100644 --- a/pkgs/development/libraries/folly/default.nix +++ b/pkgs/development/libraries/folly/default.nix @@ -2,24 +2,16 @@ , google-gflags, python, libiberty, openssl }: stdenv.mkDerivation rec { - version = "0.57.0"; name = "folly-${version}"; + version = "2016-04-29"; src = fetchFromGitHub { owner = "facebook"; repo = "folly"; - rev = "v${version}"; - sha256 = "12b9bkwmndfwmsknc209kpplxn9wqmwr3p2h0l2szrppq4qqyfq9"; + rev = "b31eb722e444ab0293a73fe9de3f94e657ca6de9"; + sha256 = "0s95y0wnz4xbrkzbiksnb0n0d0qrkcsbssznng57kwlq8jlfka24"; }; - patches = [ - # Fix compatibility with Boost 1.59 - (fetchpatch { - url = "https://github.com/facebook/folly/commit/29193aca605bb93d82a3c92acd95bb342115f3a4.patch"; - sha256 = "1ixpgq1wjr3i7madx4faw72n17ilc9cr435k5w1x95jr954m9j7b"; - }) - ]; - nativeBuildInputs = [ autoreconfHook python ]; buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ]; From a589b7bd5fc7f056e5595456b354a51668adbc07 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:00:09 +0300 Subject: [PATCH 128/337] ijs: derive from ghostscript --- pkgs/development/libraries/ijs/default.nix | 11 +++-------- pkgs/misc/ghostscript/default.nix | 2 ++ 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/ijs/default.nix b/pkgs/development/libraries/ijs/default.nix index da0ae463e85..a08a653dc71 100644 --- a/pkgs/development/libraries/ijs/default.nix +++ b/pkgs/development/libraries/ijs/default.nix @@ -1,14 +1,9 @@ -{ stdenv, fetchurl, fetchpatch, autoreconfHook }: +{ stdenv, fetchurl, fetchpatch, autoreconfHook, ghostscript }: -let version = "9.18"; -in stdenv.mkDerivation { - name = "ijs-${version}"; + name = "ijs-${ghostscript.version}"; - src = fetchurl { - url = "http://downloads.ghostscript.com/public/ghostscript-${version}.tar.bz2"; - sha256 = "18ad90za28dxybajqwf3y3dld87cgkx1ljllmcnc7ysspfxzbnl3"; - }; + inherit (ghostscript) src; patches = [ # http://bugs.ghostscript.com/show_bug.cgi?id=696246 diff --git a/pkgs/misc/ghostscript/default.nix b/pkgs/misc/ghostscript/default.nix index 06ffc45cecf..93e83a375a4 100644 --- a/pkgs/misc/ghostscript/default.nix +++ b/pkgs/misc/ghostscript/default.nix @@ -126,6 +126,8 @@ stdenv.mkDerivation rec { install_name_tool -change libgs.dylib.${version} $out/lib/libgs.dylib.${version} $out/bin/gs ''; + passthru = { inherit version; }; + meta = { homepage = "http://www.ghostscript.com/"; description = "PostScript interpreter (mainline version)"; From d0630da09e3e5da7647fe14d4ef7d2536f916150 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:01:32 +0300 Subject: [PATCH 129/337] libiberty: derive from gcc --- .../libraries/libiberty/default.nix | 22 +++++-------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/pkgs/development/libraries/libiberty/default.nix b/pkgs/development/libraries/libiberty/default.nix index c3dc3a4e852..1f5ab2cf096 100644 --- a/pkgs/development/libraries/libiberty/default.nix +++ b/pkgs/development/libraries/libiberty/default.nix @@ -1,26 +1,16 @@ -{ stdenv, fetchurl, staticBuild ? false }: +{ stdenv, lib, fetchurl, gcc, staticBuild ? false }: stdenv.mkDerivation rec { - version = "4.9.3"; - name = "libiberty-${version}"; + name = "libiberty-${gcc.cc.version}"; - src = fetchurl { - url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2"; - sha256 = "0zmnm00d2a1hsd41g34bhvxzvxisa2l584q3p447bd91lfjv4ci3"; - }; + inherit (gcc.cc) src; postUnpack = "sourceRoot=\${sourceRoot}/libiberty"; - enable_shared = !staticBuild; + configureFlags = [ "--enable-install-libiberty" ] ++ lib.optional (!staticBuild) "--enable-shared"; - installPhase = '' - mkdir -p $out/lib $out/include - cp ../include/libiberty.h $out/include/ - if [ -z "$enabled_shared" ]; then - cp libiberty.a $out/lib/libiberty.a - else - cp pic/libiberty.a $out/lib/libiberty_pic.a - fi + postInstall = lib.optionalString (!staticBuild) '' + cp pic/libiberty.a $out/lib*/libiberty.a ''; meta = with stdenv.lib; { From 3c627be4be8d746a83fd014286bbe819a5f4560c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:02:26 +0300 Subject: [PATCH 130/337] dwarf-fortress-packages.dfhack: 2016-03-03 -> 0.42.06-r1 --- pkgs/games/dwarf-fortress/dfhack/default.nix | 9 ++-- .../dfhack/use-system-libraries.patch | 50 ++++--------------- 2 files changed, 14 insertions(+), 45 deletions(-) diff --git a/pkgs/games/dwarf-fortress/dfhack/default.nix b/pkgs/games/dwarf-fortress/dfhack/default.nix index 0ffcf01ade4..12072739684 100644 --- a/pkgs/games/dwarf-fortress/dfhack/default.nix +++ b/pkgs/games/dwarf-fortress/dfhack/default.nix @@ -5,9 +5,11 @@ }: let - rev = "5e2fc5662115499c10bfcd8a6105a1efe4de081c"; - xmlRev = "f371e293002f8f6d1e4704cc5869ca07ccf6c4d5"; dfVersion = "0.42.06"; + version = "${dfVersion}-r1"; + rev = "refs/tags/${version}"; + # revision of library/xml submodule + xmlRev = "98cc1e01886aaea161d651cf97229ad08e9782b0"; fakegit = writeScriptBin "git" '' #! ${stdenv.shell} @@ -28,13 +30,12 @@ let in stdenv.mkDerivation rec { name = "dfhack-${version}"; - version = "2016-03-03"; # Beware of submodules src = fetchgit { url = "https://github.com/DFHack/dfhack"; inherit rev; - sha256 = "143zkx6hqpqxjhjd1bllg2kfia215x63zifkhgzycg49kw4wkxi5"; + sha256 = "0h9y9z4d9lirgpcvj5r2znmfi2avdrgrffi9p63gxp1a3mv9fdm1"; }; patches = [ ./use-system-libraries.patch ]; diff --git a/pkgs/games/dwarf-fortress/dfhack/use-system-libraries.patch b/pkgs/games/dwarf-fortress/dfhack/use-system-libraries.patch index 2ae3620fff6..b6ff92398a5 100644 --- a/pkgs/games/dwarf-fortress/dfhack/use-system-libraries.patch +++ b/pkgs/games/dwarf-fortress/dfhack/use-system-libraries.patch @@ -1,22 +1,8 @@ -From 1196fcb987b6aadb49075d817b3615bf8a6d7d51 Mon Sep 17 00:00:00 2001 -From: Nikolay Amiantov -Date: Wed, 6 Jan 2016 03:07:20 +0300 -Subject: [PATCH 2/2] Use as much system libraries as possible - ---- - CMakeLists.txt | 5 ----- - depends/CMakeLists.txt | 3 --- - library/CMakeLists.txt | 10 +++++----- - plugins/CMakeLists.txt | 4 ++-- - plugins/mapexport/CMakeLists.txt | 4 ++-- - plugins/stockpiles/CMakeLists.txt | 4 ++-- - 6 files changed, 11 insertions(+), 19 deletions(-) - diff --git a/CMakeLists.txt b/CMakeLists.txt -index 1933390..d871df4 100644 +index 46fd565..254c3c0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -152,8 +152,6 @@ ELSEIF(MSVC) +@@ -160,8 +160,6 @@ ELSEIF(MSVC) SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} /Od") ENDIF() @@ -25,9 +11,9 @@ index 1933390..d871df4 100644 ADD_DEFINITIONS(-DLUA_BUILD_AS_DLL) if(APPLE) -@@ -173,11 +171,8 @@ if(NOT UNIX) +@@ -182,11 +180,8 @@ else() + set(ZLIB_ROOT /usr/lib/i386-linux-gnu) endif() - set(ZLIB_ROOT /usr/lib/i386-linux-gnu) find_package(ZLIB REQUIRED) -include_directories(depends/protobuf) include_directories(depends/lua/include) @@ -53,10 +39,10 @@ index bf0345b..2a1a852 100644 OPTION(CLSOCKET_SHARED "Build clsocket lib as shared." OFF) OPTION(CLSOCKET_DEP_ONLY "Build for use inside other CMake projects as dependency." ON) diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt -index 5071d9e..d346d1e 100644 +index 54300ec..128bfd1 100644 --- a/library/CMakeLists.txt +++ b/library/CMakeLists.txt -@@ -203,10 +203,10 @@ LIST(APPEND PROJECT_SOURCES ${PROJECT_PROTO_SRCS}) +@@ -223,10 +223,10 @@ LIST(APPEND PROJECT_SOURCES ${PROJECT_PROTO_SRCS}) ADD_CUSTOM_COMMAND( OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS} @@ -69,7 +55,7 @@ index 5071d9e..d346d1e 100644 ) # Merge headers into sources -@@ -249,12 +249,12 @@ IF(UNIX) +@@ -269,12 +269,12 @@ IF(UNIX) ENDIF() IF(APPLE) @@ -86,10 +72,10 @@ index 5071d9e..d346d1e 100644 ADD_LIBRARY(dfhack-version STATIC DFHackVersion.cpp) diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt -index 9781401..ece508c 100644 +index dd1c634..7bd8c17 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt -@@ -69,11 +69,11 @@ STRING(REPLACE ".proto" ".pb.h" PROJECT_PROTO_HDRS "${PROJECT_PROTOS}") +@@ -47,11 +47,11 @@ STRING(REPLACE ".proto" ".pb.h" PROJECT_PROTO_HDRS "${PROJECT_PROTOS}") ADD_CUSTOM_COMMAND( OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS} @@ -103,21 +89,6 @@ index 9781401..ece508c 100644 ) add_custom_target(generate_proto DEPENDS ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS}) -diff --git a/plugins/mapexport/CMakeLists.txt b/plugins/mapexport/CMakeLists.txt -index 429507a..7e2390a 100644 ---- a/plugins/mapexport/CMakeLists.txt -+++ b/plugins/mapexport/CMakeLists.txt -@@ -32,8 +32,8 @@ LIST(APPEND PROJECT_SRCS ${PROJECT_HDRS}) - #Generate sources from our proto files and store them in the source tree - ADD_CUSTOM_COMMAND( - OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS} --COMMAND protoc-bin -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ --cpp_out=${CMAKE_CURRENT_SOURCE_DIR}/proto/ ${PROJECT_PROTOS} --DEPENDS protoc-bin ${PROJECT_PROTOS} -+COMMAND protoc -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ --cpp_out=${CMAKE_CURRENT_SOURCE_DIR}/proto/ ${PROJECT_PROTOS} -+DEPENDS ${PROJECT_PROTOS} - ) - - IF(WIN32) diff --git a/plugins/stockpiles/CMakeLists.txt b/plugins/stockpiles/CMakeLists.txt index 713c3d6..dd2d4cb 100644 --- a/plugins/stockpiles/CMakeLists.txt @@ -133,6 +104,3 @@ index 713c3d6..dd2d4cb 100644 ) IF(WIN32) --- -2.6.3 - From 91563e23e34c11607c15093b8eb888b42690353d Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:02:55 +0300 Subject: [PATCH 131/337] dwarf-fortress-packages.cla-theme: 20160128 -> 42.06-v22 --- pkgs/games/dwarf-fortress/themes/cla.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/games/dwarf-fortress/themes/cla.nix b/pkgs/games/dwarf-fortress/themes/cla.nix index 39b7e5d2a4c..b1a27c7e47b 100644 --- a/pkgs/games/dwarf-fortress/themes/cla.nix +++ b/pkgs/games/dwarf-fortress/themes/cla.nix @@ -3,14 +3,15 @@ # On upgrade check https://github.com/DFgraphics/CLA/blob/master/manifest.json # for compatibility information. -stdenv.mkDerivation { - name = "cla-theme-20160128"; +stdenv.mkDerivation rec { + name = "cla-theme-${version}"; + version = "42.06-v22"; src = fetchFromGitHub { owner = "DFgraphics"; repo = "CLA"; - rev = "94088b778ed6f91cbddcd3e33aa1e5efa67f3101"; - sha256 = "0rx1375x9s791k9wzvj7sxcrv4xaggibxymzirayznvavr7zcsv1"; + rev = version; + sha256 = "1rr52j1wns17axc27fab0wn0338axzwkqp7cpa690kb3bl1y0pf5"; }; installPhase = '' From 52f6c0cfb8d18524a72c0d1bc036aba5d5cd63fc Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:03:09 +0300 Subject: [PATCH 132/337] dwarf-fortress-packages.phoebus-theme: 20160128 -> 42.06a --- pkgs/games/dwarf-fortress/themes/phoebus.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/games/dwarf-fortress/themes/phoebus.nix b/pkgs/games/dwarf-fortress/themes/phoebus.nix index 8fd9a7dbf04..0022f9dc1c7 100644 --- a/pkgs/games/dwarf-fortress/themes/phoebus.nix +++ b/pkgs/games/dwarf-fortress/themes/phoebus.nix @@ -3,14 +3,15 @@ # On upgrade check https://github.com/DFgraphics/Phoebus/blob/master/manifest.json # for compatibility information. -stdenv.mkDerivation { - name = "phoebus-theme-20160128"; +stdenv.mkDerivation rec { + name = "phoebus-theme-${version}"; + version = "42.06a"; src = fetchFromGitHub { owner = "DFgraphics"; repo = "Phoebus"; - rev = "52b19b69c7323f9002ad195ecd68ac02ff0099a2"; - sha256 = "1pw5l5v7l1bvxzjf4fivmagpmghffvz0wlws2ksc7d5vy48ybcmg"; + rev = version; + sha256 = "1mkj882mf1lvjs2b7jxfazym9fl1y20slbfi1lgqzbp1872aaxi0"; }; installPhase = '' From a8aa91dc5c7c5732b05a6812251f8dfbf98cdaf8 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:03:35 +0300 Subject: [PATCH 133/337] ioquake3: 2016-03-15 -> 2016-04-05 --- pkgs/games/quake3/ioquake/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/games/quake3/ioquake/default.nix b/pkgs/games/quake3/ioquake/default.nix index 3067b5cefea..2fff7e7a026 100644 --- a/pkgs/games/quake3/ioquake/default.nix +++ b/pkgs/games/quake3/ioquake/default.nix @@ -4,13 +4,13 @@ stdenv.mkDerivation rec { name = "ioquake3-git-${version}"; - version = "2016-03-15"; + version = "2016-04-05"; src = fetchFromGitHub { owner = "ioquake"; repo = "ioq3"; - rev = "f911e32bb059f714dfc49dc2296bc6f27c442e4c"; - sha256 = "0l60snxlgvwxbpv31nwshy0rddyyxmcvqg6xqj9ifzr1gj4np5r8"; + rev = "1f6703821f11be9c711c6ee42371ab290dd12776"; + sha256 = "0jbn4lv85khfcmn1dc3mrx7zxldj3p4cggx85hdfpiwmnsjl4w67"; }; nativeBuildInputs = [ which pkgconfig ]; From a80e94a774cc9c97afebbea27db42356eb24bde2 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:03:52 +0300 Subject: [PATCH 134/337] android-udev-rules: 2016-03-03 -> 2016-04-26 --- pkgs/os-specific/linux/android-udev-rules/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/android-udev-rules/default.nix b/pkgs/os-specific/linux/android-udev-rules/default.nix index 5e3fb1c2ba0..be2b8026817 100644 --- a/pkgs/os-specific/linux/android-udev-rules/default.nix +++ b/pkgs/os-specific/linux/android-udev-rules/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "android-udev-rules-${version}"; - version = "2016-03-03"; + version = "2016-04-26"; src = fetchFromGitHub { owner = "M0Rf30"; repo = "android-udev-rules"; - rev = "a6ec1239173bfbe2082211261528e834af9fbb64"; - sha256 = "11g7m8jjxxzyrbsd9g7cbk6bwy3c4f76pdy4lvdx68xrbsl2rvmj"; + rev = "9af6e552016392db35191142b599a5199cf8a9fa"; + sha256 = "1lvh7md6qz91q8jy9phnfxlb19s104lvsk75a5r07d8bjc4w9pxb"; }; installPhase = '' From 3e641feb9dc8e4375d5a7e1bab3edb1e587e3aaa Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:04:09 +0300 Subject: [PATCH 135/337] blueman: 2.0.3 -> 2.0.4 --- pkgs/tools/bluetooth/blueman/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/bluetooth/blueman/default.nix b/pkgs/tools/bluetooth/blueman/default.nix index 428c751571c..def096a571d 100644 --- a/pkgs/tools/bluetooth/blueman/default.nix +++ b/pkgs/tools/bluetooth/blueman/default.nix @@ -7,11 +7,11 @@ let in stdenv.mkDerivation rec { name = "blueman-${version}"; - version = "2.0.3"; + version = "2.0.4"; src = fetchurl { url = "https://github.com/blueman-project/blueman/releases/download/${version}/${name}.tar.xz"; - sha256 = "09aqlk4c2qzqpmyf7b40sic7d45c1l8fyrb9f3s22b8w83j0adi4"; + sha256 = "03s305mbc57nl3sq5ywh9casz926k4aqnylgaidli8bmgz1djbg9"; }; nativeBuildInputs = [ intltool pkgconfig pythonPackages.wrapPython pythonPackages.cython ]; From b63edea44c45df1ca0cb35c8f7a2d5ff929c2bb1 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:04:20 +0300 Subject: [PATCH 136/337] imgurbash2: 1.0 -> 2.1 --- pkgs/tools/graphics/imgurbash2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/imgurbash2/default.nix b/pkgs/tools/graphics/imgurbash2/default.nix index 99ef87ca5df..5a655b9ff16 100644 --- a/pkgs/tools/graphics/imgurbash2/default.nix +++ b/pkgs/tools/graphics/imgurbash2/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "imgurbash2-${version}"; - version = "1.0"; + version = "2.1"; src = fetchFromGitHub { owner = "ram-on"; repo = "imgurbash2"; rev = version; - sha256 = "0w8xfdvv6h0cqln9a2b1rskpyv4v5qsywqzg10smg05xlrh9f5nx"; + sha256 = "1vdkyy0gvjqwc2g7a1lqx6cbynfxbd4f66m8sg1xjvd0kdpgi9wk"; }; installPhase = '' From 626b1c41017093f13d77688f80fb16fa51ca163a Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:04:36 +0300 Subject: [PATCH 137/337] grub4dos: 0.4.6a-2015-12-31 -> 0.4.6a-2016-04-26 --- pkgs/tools/misc/grub4dos/default.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/misc/grub4dos/default.nix b/pkgs/tools/misc/grub4dos/default.nix index e5c613f7a89..0195022f703 100644 --- a/pkgs/tools/misc/grub4dos/default.nix +++ b/pkgs/tools/misc/grub4dos/default.nix @@ -1,18 +1,21 @@ -{ stdenv, fetchurl, unzip, nasm }: +{ stdenv, fetchFromGitHub, nasm }: let arch = if stdenv.isi686 then "i386" else if stdenv.isx86_64 then "x86_64" else abort "Unknown architecture"; -in stdenv.mkDerivation { - name = "grub4dos-0.4.6a-2015-12-31"; +in stdenv.mkDerivation rec { + name = "grub4dos-${version}"; + version = "0.4.6a-2016-04-26"; - src = fetchurl { - url = https://github.com/chenall/grub4dos/archive/a8024743c61cc4909514b27df07b7cc4bc89d1fb.zip; - sha256 = "1m5d7klb12qz5sa09919z7jchfafgh84cmpwilp52qnbpi3zh2fd"; + src = fetchFromGitHub { + owner = "chenall"; + repo = "grub4dos"; + rev = "61d8229375c679436d56376518456723b2025e1a"; + sha256 = "1r4jmvykk5cvpf1kysykvksa9vfy7p29q20x72inw2pbhipj0f10"; }; - nativeBuildInputs = [ unzip nasm ]; + nativeBuildInputs = [ nasm ]; configureFlags = [ "--host=${arch}-pc-linux-gnu" ]; From 05ea80af1f2d8d178b7e2e4b7bc28737641128c4 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:04:51 +0300 Subject: [PATCH 138/337] sdl-jstest: 20150806 -> 2016-03-29 --- pkgs/tools/misc/sdl-jstest/default.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/misc/sdl-jstest/default.nix b/pkgs/tools/misc/sdl-jstest/default.nix index fec1039a1f2..31cedd282a4 100644 --- a/pkgs/tools/misc/sdl-jstest/default.nix +++ b/pkgs/tools/misc/sdl-jstest/default.nix @@ -1,11 +1,14 @@ -{ fetchgit, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }: +{ fetchFromGitHub, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }: stdenv.mkDerivation rec { - name = "sdl-jstest-20150806"; - src = fetchgit { - url = "https://github.com/Grumbel/sdl-jstest"; - rev = "7b792376178c9656c851ddf106c7d57b2495e8b9"; - sha256 = "3aa9a002de9c9999bd7c6248b94148f15dba6106489e418b2a1a410324f75eb8"; + name = "sdl-jstest-${version}"; + version = "2016-03-29"; + + src = fetchFromGitHub { + owner = "Grumbel"; + repo = "sdl-jstest"; + rev = "301a0e8cf3f96de4c5e58d9fe4413e5cd2b4e6d4"; + sha256 = "1qrz09by5snc3n1wppf2y0pj7rx29dlh1g84glga8vvb03n3yb14"; }; buildInputs = [ SDL SDL2 ncurses ]; From a77cb861fd4671932400d3de28ece0eed61ccac8 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:05:07 +0300 Subject: [PATCH 139/337] xl2tpd: 1.3.6 -> 1.3.7 --- pkgs/tools/networking/xl2tpd/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/xl2tpd/default.nix b/pkgs/tools/networking/xl2tpd/default.nix index ac8be4eb5de..c9804caad4a 100644 --- a/pkgs/tools/networking/xl2tpd/default.nix +++ b/pkgs/tools/networking/xl2tpd/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub, libpcap, ppp }: -let version = "1.3.6"; -in stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "xl2tpd-${version}"; + version = "1.3.7"; src = fetchFromGitHub { owner = "xelerance"; repo = "xl2tpd"; rev = "v${version}"; - sha256 = "17lnsk9fsyfp2g5hha7psim6047wj9qs8x4y4w06gl6bbf36jm9z"; + sha256 = "0wjkj2b5rkxhx522wmkml5s0zdp68hkvrh7npx839dvsr79fji7k"; }; buildInputs = [ libpcap ]; From bf0a3b4ba877cd7884bd777f296a508565b1941a Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:05:14 +0300 Subject: [PATCH 140/337] thermald: 1.4.3 -> 1.5.3 --- pkgs/tools/system/thermald/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/thermald/default.nix b/pkgs/tools/system/thermald/default.nix index e4b2055b591..baa18aacdfb 100644 --- a/pkgs/tools/system/thermald/default.nix +++ b/pkgs/tools/system/thermald/default.nix @@ -1,13 +1,14 @@ { stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, dbus_libs, dbus_glib, libxml2 }: stdenv.mkDerivation rec { - version = "1.4.3"; name = "thermald-${version}"; + version = "1.5.3"; + src = fetchFromGitHub { owner = "01org"; repo = "thermal_daemon"; rev = "v${version}"; - sha256 = "1wrbydmw1jc5dcjawhhsa52hilzajl9n849i09d2nfilv3qcqqi9"; + sha256 = "0k10sl262d9slrln1vkgsxlr1pnfxzd3ycs552bl7ynf0zxpl48h"; }; buildInputs = [ autoconf automake libtool pkgconfig dbus_libs dbus_glib libxml2 ]; From aa2ba7ffe576b3222947153008c7ca2ec684290c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 03:48:47 +0300 Subject: [PATCH 141/337] ejabberd: cleanup build --- pkgs/servers/xmpp/ejabberd/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/servers/xmpp/ejabberd/default.nix b/pkgs/servers/xmpp/ejabberd/default.nix index dd882de723a..974a636e559 100644 --- a/pkgs/servers/xmpp/ejabberd/default.nix +++ b/pkgs/servers/xmpp/ejabberd/default.nix @@ -1,4 +1,4 @@ -{ stdenv, writeScriptBin, lib, fetchurl, fetchFromGitHub, git, cacert +{ stdenv, writeScriptBin, lib, fetchurl, git, cacert , erlang, openssl, expat, libyaml, bash, gnused, gnugrep, coreutils, utillinux, procps , withMysql ? false , withPgsql ? false @@ -69,13 +69,14 @@ in stdenv.mkDerivation rec { rm -rf .git ) done + rm deps/.got cp -r deps $out ''; outputHashMode = "recursive"; outputHashAlgo = "sha256"; - outputHash = "0kmk22z1r9c23j9hh91975pqh3jkh7z6i1gnmw4qxr8alcnpr75f"; + outputHash = "0zmb7g00y5q4alf70i1chv3yim63i03sy4p8i83bzvxri59vw0zv"; }; configureFlags = @@ -96,10 +97,6 @@ in stdenv.mkDerivation rec { preBuild = '' cp -r $deps deps chmod -R +w deps - - for i in deps/*; do - [ -x "$i/configure" ] && ( cd "$i"; ./configure ) || true - done ''; postInstall = '' From ec6b547b17d102c44f8817bae875418bd2797786 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 04:26:26 +0300 Subject: [PATCH 142/337] truecrypt: fix containers' mount --- pkgs/top-level/all-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8ab7940fe72..586248d04ee 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3678,6 +3678,7 @@ in }; truecrypt = callPackage ../applications/misc/truecrypt { + stdenv = overrideInStdenv stdenv [ useOldCXXAbi ]; wxGUI = config.truecrypt.wxGUI or true; }; From e05ef5f94b059cec3da2290413e51ebd774e853c Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sat, 30 Apr 2016 01:43:31 +0000 Subject: [PATCH 143/337] oh-my-zsh: 2016-04-06 -> 2016-04-20 --- pkgs/shells/oh-my-zsh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/oh-my-zsh/default.nix b/pkgs/shells/oh-my-zsh/default.nix index 796521b5233..78b112210ac 100644 --- a/pkgs/shells/oh-my-zsh/default.nix +++ b/pkgs/shells/oh-my-zsh/default.nix @@ -7,12 +7,12 @@ stdenv.mkDerivation rec { name = "oh-my-zsh-git-${version}"; - version = "2016-04-06"; + version = "2016-04-20"; src = fetchgit { url = "https://github.com/robbyrussell/oh-my-zsh"; - rev = "d310fac7f65d31f7494532201e02ebf67c9d9555"; - sha256 = "0kx552b0jf5j8qkk1kixdr1z49ly79cvzhdh27848rj3kwb0z8vq"; + rev = "1b1315a777328095cd8b5f364fd4345eeae7c4bf"; + sha256 = "0q3w96a9rjxmqknycxjqjs5mi0q2mark8yrfim7snxrf9ajv0ypk"; }; phases = "installPhase"; From f0189a8b40acb81fa4a0898f7df582fef049c4f5 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 04:51:50 +0300 Subject: [PATCH 144/337] dspam: fix build with PostgreSQL support --- pkgs/servers/mail/dspam/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/mail/dspam/default.nix b/pkgs/servers/mail/dspam/default.nix index 3cd3ca7492d..4c615e6f6b3 100644 --- a/pkgs/servers/mail/dspam/default.nix +++ b/pkgs/servers/mail/dspam/default.nix @@ -49,7 +49,8 @@ in stdenv.mkDerivation rec { "--enable-preferences-extension" "--enable-long-usernames" "--enable-external-lookup" - ] ++ lib.optional withMySQL "--with-mysql-includes=${libmysql}/include/mysql"; + ] ++ lib.optional withMySQL "--with-mysql-includes=${libmysql}/include/mysql" + ++ lib.optional withPgSQL "--with-pgsql-libraries=${postgresql.lib}/lib"; # Lots of things are hardwired to paths like sysconfdir. That's why we install with both "prefix" and "DESTDIR" # and fix directory structure manually after that. From c048f7db7b48620840f5dc4ed1b0c1530bdd2c79 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Sat, 30 Apr 2016 02:07:50 +0000 Subject: [PATCH 145/337] rpm: fix state directory in build Prior to this change, it was was defaulting to storing its state in its store path, which didn't make any sense. Also added myself as a maintainer --- pkgs/tools/package-management/rpm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/package-management/rpm/default.nix b/pkgs/tools/package-management/rpm/default.nix index ab5574b07f1..6c2c9a350ad 100644 --- a/pkgs/tools/package-management/rpm/default.nix +++ b/pkgs/tools/package-management/rpm/default.nix @@ -24,13 +24,13 @@ stdenv.mkDerivation rec { substituteInPlace configure --replace 'python''${PYTHON_VERSION}' ${python.executable} ''; - configureFlags = "--with-external-db --with-lua --enable-python"; + configureFlags = "--with-external-db --with-lua --enable-python --localstatedir=/var --sharedstatedir=/com"; meta = with stdenv.lib; { homepage = http://www.rpm.org/; license = licenses.gpl2; description = "The RPM Package Manager"; - maintainers = [ maintainers.mornfall ]; + maintainers = with maintainers; [ mornfall copumpkin ]; platforms = platforms.linux; }; } From ce946f24513559975270652bee7ff9ce47f9e43a Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Sat, 30 Apr 2016 02:12:54 +0000 Subject: [PATCH 146/337] libsolv: add meta attrset and add myself as a maintainer --- pkgs/development/libraries/libsolv/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/libraries/libsolv/default.nix b/pkgs/development/libraries/libsolv/default.nix index a69403ded07..cece520e3c5 100644 --- a/pkgs/development/libraries/libsolv/default.nix +++ b/pkgs/development/libraries/libsolv/default.nix @@ -14,4 +14,12 @@ stdenv.mkDerivation rec { cmakeFlags = "-DENABLE_RPMMD=true -DENABLE_RPMDB=true -DENABLE_PUBKEY=true -DENABLE_RPMDB_BYRPMHEADER=true"; buildInputs = [ cmake zlib expat rpm db ]; + + meta = with stdenv.lib; { + description = "A free package dependency solver"; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ copumpkin ]; + }; } + From 48fb16ffbf47f79b6d85ef3be623b8814385763f Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Sat, 30 Apr 2016 02:15:04 +0000 Subject: [PATCH 147/337] createrepo_c: add meta and myself as a maintainer --- pkgs/tools/package-management/createrepo_c/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/tools/package-management/createrepo_c/default.nix b/pkgs/tools/package-management/createrepo_c/default.nix index b884540f8d4..eed1ed1e526 100644 --- a/pkgs/tools/package-management/createrepo_c/default.nix +++ b/pkgs/tools/package-management/createrepo_c/default.nix @@ -23,5 +23,13 @@ stdenv.mkDerivation rec { ''; buildInputs = [ cmake pkgconfig bzip2 expat glib curl libxml2 python rpm openssl sqlite file xz pcre bashCompletion ]; + + meta = with stdenv.lib; { + description = "C implementation of createrepo"; + homepage = "http://rpm-software-management.github.io/createrepo_c/"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ copumpkin ]; + }; } From 7a37ac15b3fdca4dfa5c16fcc2a4de1294f5dc87 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 05:32:06 +0300 Subject: [PATCH 148/337] runit: fix build --- pkgs/tools/system/runit/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/system/runit/default.nix b/pkgs/tools/system/runit/default.nix index 28c68f52aaf..70c49335eaf 100644 --- a/pkgs/tools/system/runit/default.nix +++ b/pkgs/tools/system/runit/default.nix @@ -13,8 +13,12 @@ stdenv.mkDerivation rec { patches = [ ./Makefile.patch ]; - buildPhase = '' + postPatch = '' cd ${name} + sed -i 's,-static,,g' src/Makefile + ''; + + buildPhase = '' make -C 'src' ''; From c03d7f2819da303db1047a2baab0fe14112f2315 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 30 Apr 2016 09:57:14 +0200 Subject: [PATCH 149/337] filezilla: 3.16.1 -> 3.17.0 --- pkgs/applications/networking/ftp/filezilla/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix index 698f379c09c..c9745a084c6 100644 --- a/pkgs/applications/networking/ftp/filezilla/default.nix +++ b/pkgs/applications/networking/ftp/filezilla/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext -, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla }: +, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }: -let version = "3.16.1"; in +let version = "3.17.0"; in stdenv.mkDerivation { name = "filezilla-${version}"; src = fetchurl { url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2"; - sha256 = "1a6xvpnsjpgdrxla0i2zag30hy825rfsl4ka9p0zj5za9j2ny11v"; + sha256 = "0vb5zqpvh0fi0a7nkz79cdmbzjk1cpmbyqx77nfkvd1kz1fcsqrp"; }; configureFlags = [ @@ -16,7 +16,7 @@ stdenv.mkDerivation { buildInputs = [ dbus gnutls wxGTK30 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite - pugixml libfilezilla ]; + pugixml libfilezilla nettle ]; meta = with stdenv.lib; { homepage = http://filezilla-project.org/; From 4cd0770d57e397fbcfa0dd7bda6f089a6685092e Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 30 Apr 2016 10:09:25 +0200 Subject: [PATCH 150/337] imapsync: 1.644 -> 1.684 --- pkgs/tools/networking/imapsync/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/imapsync/default.nix b/pkgs/tools/networking/imapsync/default.nix index 877f71bc37b..d6ac630b122 100644 --- a/pkgs/tools/networking/imapsync/default.nix +++ b/pkgs/tools/networking/imapsync/default.nix @@ -1,10 +1,10 @@ {stdenv, makeWrapper, fetchurl, perl, openssl, perlPackages }: stdenv.mkDerivation rec { - name = "imapsync-1.644"; + name = "imapsync-1.684"; src = fetchurl { url = "https://fedorahosted.org/released/imapsync/${name}.tgz"; - sha256 = "1lni950qyp841277dnzb43pxpzqyfcl6sachd8j6a0j08826gfky"; + sha256 = "1ilqdaabh6xiwpjfdg2mrhygvjlxj6jdkmqjqadq5z29172hji5b"; }; patchPhase = '' From 586d1f67ce4262ccae845e2848a68994dada3d91 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 30 Apr 2016 10:42:35 +0200 Subject: [PATCH 151/337] yodl: 3.06.00 -> 3.07.01 --- pkgs/development/tools/misc/yodl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/yodl/default.nix b/pkgs/development/tools/misc/yodl/default.nix index aa76d991966..1efad2d1789 100644 --- a/pkgs/development/tools/misc/yodl/default.nix +++ b/pkgs/development/tools/misc/yodl/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "yodl-${version}"; - version = "3.06.00"; + version = "3.07.01"; buildInputs = [ perl icmake ]; src = fetchFromGitHub { - sha256 = "03n03bxc5lh3v9yzdikqrzzdvrna8zf98mlg2dhnn5z5sb5jhyzc"; + sha256 = "1l8igql4dw6jiv8gs4bpfxrdgr2za9a1l2k3paxsajhy6w3a9b3m"; rev = version; repo = "yodl"; owner = "fbb-git"; From 6ac488f2a0305c0f548f83fdcbf3378ce9d76331 Mon Sep 17 00:00:00 2001 From: Hoang Xuan Phu Date: Sat, 30 Apr 2016 18:25:03 +0800 Subject: [PATCH 152/337] all-packages.nix: some space cleanup --- pkgs/top-level/all-packages.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8ab7940fe72..603e537a5e2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6465,13 +6465,13 @@ in beecrypt = callPackage ../development/libraries/beecrypt { }; beignet = callPackage ../development/libraries/beignet { - inherit (llvmPackages) clang-unwrapped; - inherit (xlibs) libX11; - inherit (xorg) libXfixes libpthreadstubs libXdmcp libXdamage libXxf86vm; - inherit (python3Packages) python; - inherit (purePackages) gl; - }; - + inherit (llvmPackages) clang-unwrapped; + inherit (xlibs) libX11; + inherit (xorg) libXfixes libpthreadstubs libXdmcp libXdamage libXxf86vm; + inherit (python3Packages) python; + inherit (purePackages) gl; + }; + belle-sip = callPackage ../development/libraries/belle-sip { }; bobcat = callPackage ../development/libraries/bobcat { }; From 60e8d9dfabc6721dfc7a1af4a24bf001390f351d Mon Sep 17 00:00:00 2001 From: Hoang Xuan Phu Date: Sat, 30 Apr 2016 17:11:00 +0800 Subject: [PATCH 153/337] casperjs: refactor a bit --- pkgs/development/tools/casperjs/default.nix | 48 +++++++++++---------- 1 file changed, 25 insertions(+), 23 deletions(-) diff --git a/pkgs/development/tools/casperjs/default.nix b/pkgs/development/tools/casperjs/default.nix index bd63a0e68ee..5b4b8cc752d 100644 --- a/pkgs/development/tools/casperjs/default.nix +++ b/pkgs/development/tools/casperjs/default.nix @@ -1,40 +1,42 @@ -{ stdenv, fetchgit, python, phantomjs }: +{ stdenv, fetchFromGitHub, phantomjs, python, nodePackages }: -stdenv.mkDerivation rec { - name = "casperjs-1.0.0-RC5"; +let version = "1.0.0-RC5"; - src = fetchgit { - url = "git://github.com/n1k0/casperjs.git"; - rev = "refs/tags/1.0.0-RC5"; - sha256 = "e7fd6b94b4b304416159196208dea7f6e8841a667df102eb378a698a92f0f2c7"; +in stdenv.mkDerivation rec { + + name = "casperjs-${version}"; + + src = fetchFromGitHub { + owner = "casperjs"; + repo = "casperjs"; + rev = version; + sha256 = "10b25jmh9zmlp77h0p3n9d6bnl3wn4iv3h3qnsrgijfszxyh0wgw"; }; + buildInputs = [ phantomjs python nodePackages.eslint ]; + patchPhase = '' substituteInPlace bin/casperjs --replace "/usr/bin/env python" "${python}/bin/python" \ --replace "'phantomjs'" "'${phantomjs}/bin/phantomjs'" ''; + dontBuild = true; + installPhase = '' - mkdir -p $out/share/casperjs $out/bin - cp -a . $out/share/casperjs/. - ln -s $out/share/casperjs/bin/casperjs $out/bin + mv $PWD $out ''; meta = { - description = "Navigation scripting & testing utility for PhantomJS"; + + description = '' + Navigation scripting & testing utility for PhantomJS and SlimerJS + ''; + longDescription = '' - CasperJS is a navigation scripting & testing utility for PhantomJS. - It eases the process of defining a full navigation scenario and provides useful high-level - functions, methods & syntaxic sugar for doing common tasks such as: - - defining & ordering navigation steps - - filling forms - - clicking links - - capturing screenshots of a page (or an area) - - making assertions on remote DOM - - logging & events - - downloading base64 encoded resources, even binary ones - - catching errors and react accordingly - - writing functional test suites, exporting results as JUnit XML (xUnit) + CasperJS is a navigation scripting & testing utility for PhantomJS and + SlimerJS (still experimental). It eases the process of defining a full + navigation scenario and provides useful high-level functions, methods & + syntactic sugar for doing common tasks. ''; homepage = http://casperjs.org; From 52ec8e2ce4bb4c7cff40571258b148650039b1f9 Mon Sep 17 00:00:00 2001 From: Hoang Xuan Phu Date: Sat, 30 Apr 2016 17:11:23 +0800 Subject: [PATCH 154/337] casperjs: update to 1.1.1 --- pkgs/development/tools/casperjs/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/casperjs/default.nix b/pkgs/development/tools/casperjs/default.nix index 5b4b8cc752d..021bbac8b7c 100644 --- a/pkgs/development/tools/casperjs/default.nix +++ b/pkgs/development/tools/casperjs/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, phantomjs, python, nodePackages }: -let version = "1.0.0-RC5"; +let version = "1.1.1"; in stdenv.mkDerivation rec { @@ -10,7 +10,7 @@ in stdenv.mkDerivation rec { owner = "casperjs"; repo = "casperjs"; rev = version; - sha256 = "10b25jmh9zmlp77h0p3n9d6bnl3wn4iv3h3qnsrgijfszxyh0wgw"; + sha256 = "187prrm728xpn0nx9kxfxa4fwd7w25z78nsxfk6a6kl7c5656jpz"; }; buildInputs = [ phantomjs python nodePackages.eslint ]; @@ -22,6 +22,9 @@ in stdenv.mkDerivation rec { dontBuild = true; + doCheck = true; + checkTarget = "test"; + installPhase = '' mv $PWD $out ''; From bb7e3c67537668e1b83006f8236545231ed0c6f0 Mon Sep 17 00:00:00 2001 From: Hoang Xuan Phu Date: Sat, 30 Apr 2016 17:13:00 +0800 Subject: [PATCH 155/337] casperjs: update to phantomjs2 --- pkgs/development/tools/casperjs/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/casperjs/default.nix b/pkgs/development/tools/casperjs/default.nix index 021bbac8b7c..387a367b327 100644 --- a/pkgs/development/tools/casperjs/default.nix +++ b/pkgs/development/tools/casperjs/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, phantomjs, python, nodePackages }: +{ stdenv, fetchFromGitHub, phantomjs2, python, nodePackages }: let version = "1.1.1"; @@ -13,11 +13,11 @@ in stdenv.mkDerivation rec { sha256 = "187prrm728xpn0nx9kxfxa4fwd7w25z78nsxfk6a6kl7c5656jpz"; }; - buildInputs = [ phantomjs python nodePackages.eslint ]; + buildInputs = [ phantomjs2 python nodePackages.eslint ]; patchPhase = '' substituteInPlace bin/casperjs --replace "/usr/bin/env python" "${python}/bin/python" \ - --replace "'phantomjs'" "'${phantomjs}/bin/phantomjs'" + --replace "'phantomjs'" "'${phantomjs2}/bin/phantomjs'" ''; dontBuild = true; From d950d6b786b90d84d460aedbdb76fbb664419057 Mon Sep 17 00:00:00 2001 From: Hoang Xuan Phu Date: Sat, 30 Apr 2016 18:25:52 +0800 Subject: [PATCH 156/337] casperjs: test needs fontconfig --- pkgs/development/tools/casperjs/default.nix | 8 ++++++-- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/casperjs/default.nix b/pkgs/development/tools/casperjs/default.nix index 387a367b327..a4b9f23c5eb 100644 --- a/pkgs/development/tools/casperjs/default.nix +++ b/pkgs/development/tools/casperjs/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, phantomjs2, python, nodePackages }: +{ stdenv, fetchFromGitHub, fontsConf, phantomjs2, python, nodePackages }: let version = "1.1.1"; @@ -23,7 +23,11 @@ in stdenv.mkDerivation rec { dontBuild = true; doCheck = true; - checkTarget = "test"; + checkPhase = '' + export FONTCONFIG_FILE=${fontsConf} + make test + ''; + installPhase = '' mv $PWD $out diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 603e537a5e2..7fea61dbf7d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5811,7 +5811,9 @@ in inherit rustc; }; - casperjs = callPackage ../development/tools/casperjs { }; + casperjs = callPackage ../development/tools/casperjs { + inherit (texFunctions) fontsConf; + }; cbrowser = callPackage ../development/tools/misc/cbrowser { }; From e704c90b50ff7638d2bdfec5ea50903e6c43e5a7 Mon Sep 17 00:00:00 2001 From: NotaseCretagen Date: Sat, 30 Apr 2016 14:14:06 +0300 Subject: [PATCH 157/337] Manual: rephrase definition for indented strings (#15086) Closes #15076 --- nixos/doc/manual/configuration/config-file.xml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nixos/doc/manual/configuration/config-file.xml b/nixos/doc/manual/configuration/config-file.xml index 9b240979273..645257687fd 100644 --- a/nixos/doc/manual/configuration/config-file.xml +++ b/nixos/doc/manual/configuration/config-file.xml @@ -106,11 +106,15 @@ networking.extraHosts = ''; - The main difference is that preceding whitespace is - automatically stripped from each line, and that characters like + The main difference is that it strips from each line + a number of spaces equal to the minimal indentation of + the string as a whole (disregarding the indentation of + empty lines), and that characters like " and \ are not special (making it more convenient for including things like shell code). + See more info about this in the Nix manual here. From b8f60085fb6bf16ccf2f00abae886154fbdeb126 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 30 Apr 2016 12:32:18 +0200 Subject: [PATCH 158/337] acpid: 2.0.25 -> 2.0.27; maintain --- pkgs/os-specific/linux/acpid/default.nix | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/pkgs/os-specific/linux/acpid/default.nix b/pkgs/os-specific/linux/acpid/default.nix index 1746c938444..aa8b25560e6 100644 --- a/pkgs/os-specific/linux/acpid/default.nix +++ b/pkgs/os-specific/linux/acpid/default.nix @@ -1,21 +1,18 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "acpid-2.0.25"; + name = "acpid-2.0.27"; src = fetchurl { url = "mirror://sourceforge/acpid2/${name}.tar.xz"; - sha256 = "0s2wg84x6pnrkf7i7lpzw2rilq4mj50vwb7p2b2n5hdyfa00lw0b"; + sha256 = "05m6scbdzi2fb8zzi01c11a10pr0qb1gzccz4bbxj4fcacz24342"; }; - preBuild = '' - makeFlagsArray=(BINDIR=$out/bin SBINDIR=$out/sbin MAN8DIR=$out/share/man/man8) - ''; - - meta = { + meta = with stdenv.lib; { homepage = http://tedfelix.com/linux/acpid-netlink.html; description = "A daemon for delivering ACPI events to userspace programs"; - license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; }; } From db00d1803ffe9341831d1a05445b26a209cf76c1 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 30 Apr 2016 12:47:17 +0200 Subject: [PATCH 159/337] abcde: 2.7 -> 2.7.2 --- pkgs/applications/audio/abcde/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/abcde/default.nix b/pkgs/applications/audio/abcde/default.nix index cfce61c8752..b5ccde86619 100644 --- a/pkgs/applications/audio/abcde/default.nix +++ b/pkgs/applications/audio/abcde/default.nix @@ -3,13 +3,13 @@ , perl, DigestSHA, MusicBrainz, MusicBrainzDiscID , makeWrapper }: -let version = "2.7"; +let version = "2.7.2"; in stdenv.mkDerivation { name = "abcde-${version}"; src = fetchurl { url = "http://abcde.einval.com/download/abcde-${version}.tar.gz"; - sha256 = "0ikpffzvacadh6vj9qlary8126j1zrd2knp9gvivmp7y1656jj01"; + sha256 = "1pakpi41k8yd780mfp0snhia6mmwjwxk9lcrq6gynimch8b8hfda"; }; # FIXME: This package does not support `distmp3', `eject', etc. @@ -39,6 +39,8 @@ in buildInputs = [ makeWrapper ]; + installFlags = [ "sysconfdir=$(out)/etc" ]; + postInstall = '' # substituteInPlace "$out/bin/cddb-tool" \ # --replace '#!/bin/sh' '#!${bash}/bin/sh' From f72d3b2bbff2a8843adb1a777edc87058cc33000 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 30 Apr 2016 13:19:13 +0200 Subject: [PATCH 160/337] hplip{,WithPlugin}: 3.15.11 -> 3.16.3 --- pkgs/misc/drivers/hplip/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix index 7aed8dad599..3b39a685a2d 100644 --- a/pkgs/misc/drivers/hplip/default.nix +++ b/pkgs/misc/drivers/hplip/default.nix @@ -10,16 +10,16 @@ let name = "hplip-${version}"; - version = "3.15.11"; + version = "3.16.3"; src = fetchurl { url = "mirror://sourceforge/hplip/${name}.tar.gz"; - sha256 = "0vbw815a3wffp6l5m7j6f78xwp9pl1vn43ppyf0lp8q4vqdp3i1k"; + sha256 = "1501qdnkjp1ybgagy5188fmf6cgmj5555ygjl3543nlbwcp31lj2"; }; plugin = fetchurl { url = "http://www.openprinting.org/download/printdriver/auxfiles/HP/plugins/${name}-plugin.run"; - sha256 = "00ii36y3914jd8zz4h6rn3xrf1w8szh1z8fngbl2qvs3qr9cm1m9"; + sha256 = "03q730w0kbh8i55i95vfb59yc0kjxz01hjpb3l05w2jw3hmfzvdp"; }; hplipState = From b19d7e32a0c3e7b85749085bd07909d9fea26766 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 30 Apr 2016 12:34:36 +0000 Subject: [PATCH 161/337] squid: 3.5.15 -> 3.5.17 (resolving CVE-2016-3947, CVE-2016-3948, CVE-2016-4051, CVE-2016-4052, CVE-2016-4053, CVE-2016-4054) --- pkgs/servers/squid/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/squid/default.nix b/pkgs/servers/squid/default.nix index 2831423d123..4865b839ae4 100644 --- a/pkgs/servers/squid/default.nix +++ b/pkgs/servers/squid/default.nix @@ -1,10 +1,10 @@ { fetchurl, stdenv, perl, lib, openldap, pam, db, cyrus_sasl, libcap, expat, libxml2, libtool, openssl}: stdenv.mkDerivation rec { - name = "squid-3.5.15"; + name = "squid-3.5.17"; src = fetchurl { url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.bz2"; - sha256 = "1cgy6ffyarqd35plqmqi3mrsp0941c6n55pr3zavp07ksj46wgzm"; + sha256 = "1kdq778cm18ak4624gchmbi8avnzyvwgyzjplkd0fkcrgfs44bsf"; }; buildInputs = [perl openldap pam db cyrus_sasl libcap expat libxml2 libtool openssl]; From 1573bde0495bd1aec3137dc655278f97770be2de Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Thu, 28 Apr 2016 15:55:21 +0300 Subject: [PATCH 162/337] sqlite_analyzer: fix typo --- pkgs/development/libraries/sqlite/sqlite3_analyzer.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/sqlite/sqlite3_analyzer.nix b/pkgs/development/libraries/sqlite/sqlite3_analyzer.nix index 4e5d360aea0..d3e1a6dc17e 100644 --- a/pkgs/development/libraries/sqlite/sqlite3_analyzer.nix +++ b/pkgs/development/libraries/sqlite/sqlite3_analyzer.nix @@ -1,7 +1,7 @@ { lib, stdenv, fetchurl, unzip, tcl }: stdenv.mkDerivation { - name = "sqlite3_analzer-3.8.10.1"; + name = "sqlite3_analyzer-3.8.10.1"; src = fetchurl { url = "https://www.sqlite.org/2015/sqlite-src-3081001.zip"; From cf34a7be4a513eb3f99c9474df9d7b16b43b486a Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 15:53:12 +0300 Subject: [PATCH 163/337] quazip_qt4: add as a separate derivation --- pkgs/top-level/all-packages.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 586248d04ee..a0cf2dab0d3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3174,9 +3174,11 @@ in screen-message = callPackage ../tools/X11/screen-message { }; screencloud = callPackage ../applications/graphics/screencloud { - quazip = qt5.quazip.override { qt = qt4; qmakeHook = qmake4Hook; }; + quazip = quazip_qt4; }; + quazip_qt4 = self.qt5.quazip.override { qt = qt4; qmakeHook = qmake4Hook; }; + scrot = callPackage ../tools/graphics/scrot { }; scrypt = callPackage ../tools/security/scrypt { }; @@ -14129,7 +14131,7 @@ in enableXMPP = config.tomahawk.enableXMPP or true; enableKDE = config.tomahawk.enableKDE or false; enableTelepathy = config.tomahawk.enableTelepathy or false; - quazip = qt5.quazip.override { qt = qt4; }; + quazip = quazip_qt4; }; torchPackages = recurseIntoAttrs ( callPackage ../applications/science/machine-learning/torch { From d2dcbd3c00cc55e71a7b816db51cb76dbd9ca16f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sat, 30 Apr 2016 14:29:09 +0100 Subject: [PATCH 164/337] Revert "Manual: rephrase definition for indented strings" (#15103) --- nixos/doc/manual/configuration/config-file.xml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/nixos/doc/manual/configuration/config-file.xml b/nixos/doc/manual/configuration/config-file.xml index 645257687fd..9b240979273 100644 --- a/nixos/doc/manual/configuration/config-file.xml +++ b/nixos/doc/manual/configuration/config-file.xml @@ -106,15 +106,11 @@ networking.extraHosts = ''; - The main difference is that it strips from each line - a number of spaces equal to the minimal indentation of - the string as a whole (disregarding the indentation of - empty lines), and that characters like + The main difference is that preceding whitespace is + automatically stripped from each line, and that characters like " and \ are not special (making it more convenient for including things like shell code). - See more info about this in the Nix manual here. From 7e32b83d779fec08fa055ece6bd936f9efa929a4 Mon Sep 17 00:00:00 2001 From: iarizc Leuname Date: Fri, 29 Apr 2016 20:49:56 +0300 Subject: [PATCH 165/337] Manual: rephrase definition for indented strings Closes #15076 --- nixos/doc/manual/configuration/config-file.xml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/nixos/doc/manual/configuration/config-file.xml b/nixos/doc/manual/configuration/config-file.xml index 9b240979273..3d1cdaf4c4a 100644 --- a/nixos/doc/manual/configuration/config-file.xml +++ b/nixos/doc/manual/configuration/config-file.xml @@ -106,11 +106,15 @@ networking.extraHosts = ''; - The main difference is that preceding whitespace is - automatically stripped from each line, and that characters like + The main difference is that it strips from each line + a number of spaces equal to the minimal indentation of + the string as a whole (disregarding the indentation of + empty lines), and that characters like " and \ are not special (making it more convenient for including things like shell - code). + code). + See more info about this in the Nix manual here. From 025ccbccd7a47cc2ce6eac142d8acf619c4cdb9c Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Sat, 30 Apr 2016 12:13:26 -0300 Subject: [PATCH 166/337] subversion: fix apr-1 linking --- .../version-management/subversion/apr-1.patch | 11 +++++++++++ .../version-management/subversion/default.nix | 2 ++ 2 files changed, 13 insertions(+) create mode 100644 pkgs/applications/version-management/subversion/apr-1.patch diff --git a/pkgs/applications/version-management/subversion/apr-1.patch b/pkgs/applications/version-management/subversion/apr-1.patch new file mode 100644 index 00000000000..240d94f3f97 --- /dev/null +++ b/pkgs/applications/version-management/subversion/apr-1.patch @@ -0,0 +1,11 @@ +--- a/subversion/bindings/swig/perl/native/Makefile.PL.in ++++ b/subversion/bindings/swig/perl/native/Makefile.PL.in +@@ -72,7 +72,7 @@ + # According to the log of r7937, the flags guarded by the conditional break + # the build on FreeBSD if not conditionalized. + my $apr_ldflags = '@SVN_APR_LIBS@' +- if $^O eq 'darwin' or $^O eq 'cygwin'; ++ if $^O eq 'darwin' or $^O eq 'cygwin' or $^O eq 'linux'; + + chomp $apr_shlib_path_var; + diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index da21c29e6f9..fc87aea08a4 100644 --- a/pkgs/applications/version-management/subversion/default.nix +++ b/pkgs/applications/version-management/subversion/default.nix @@ -35,6 +35,8 @@ let ++ stdenv.lib.optional perlBindings perl ++ stdenv.lib.optional saslSupport sasl; + patches = [ ./apr-1.patch ]; + configureFlags = '' ${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"} ${if httpServer then "--with-apxs=${apacheHttpd}/bin/apxs" else "--without-apxs"} From e6fbe412ec7d92f6aaddbb2c1356fe844fd3d767 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 30 Apr 2016 17:44:49 +0200 Subject: [PATCH 167/337] torbutton: remove expression Not updated for years. Also, using torbutton without the tor browser bundle is not recommended. --- pkgs/tools/security/torbutton/default.nix | 34 ----------------------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 36 deletions(-) delete mode 100644 pkgs/tools/security/torbutton/default.nix diff --git a/pkgs/tools/security/torbutton/default.nix b/pkgs/tools/security/torbutton/default.nix deleted file mode 100644 index 05bab06d382..00000000000 --- a/pkgs/tools/security/torbutton/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ stdenv, fetchgit, zip }: -stdenv.mkDerivation rec { - - name = "torbutton-${version}.xpi"; - version = "1.6.1"; - - src = fetchgit { - url = https://git.torproject.org/torbutton.git; - rev = "refs/tags/${version}"; - sha256 = "0ypzrl8nhckrgh45rcwsjds1jnzz3w5nr09b926a4h3a5njammlv"; - }; - - buildInputs = [ zip ]; - - buildPhase = '' - mkdir pkg - ./makexpi.sh - ''; - - installPhase = "cat pkg/*.xpi > $out"; - - meta = with stdenv.lib; { - homepage = https://www.torproject.org/torbutton/; - description = "Part of the Tor Browser Bundle"; - longDescription = '' - The component in Tor Browser Bundle that takes care of application-level - security and privacy concerns in Firefox. To keep you safe, Torbutton - disables many types of active content. - ''; - license = licenses.mit; - maintainers = [ maintainers.phreedom ]; - platforms = platforms.linux; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a050c2f86e5..4d26cf8d62f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3460,8 +3460,6 @@ in tor-arm = callPackage ../tools/security/tor/tor-arm.nix { }; - torbutton = callPackage ../tools/security/torbutton { }; - torbrowser = callPackage ../tools/security/tor/torbrowser.nix { inherit (xorg) libXrender libX11 libXext libXt; }; From df8971ba40acaad193cddc9f7cae3c867a994060 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Sat, 30 Apr 2016 16:01:26 +0000 Subject: [PATCH 168/337] librepo: add meta and add myself as a maintainer --- pkgs/tools/package-management/librepo/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/tools/package-management/librepo/default.nix b/pkgs/tools/package-management/librepo/default.nix index 21fc9fe97f5..ceef483c8cc 100644 --- a/pkgs/tools/package-management/librepo/default.nix +++ b/pkgs/tools/package-management/librepo/default.nix @@ -20,5 +20,12 @@ stdenv.mkDerivation rec { # librepo/fastestmirror.h includes curl/curl.h, and pkg-config specfile refers to others in here propagatedBuildInputs = [ curl gpgme expat ]; + + meta = with stdenv.lib; { + description = "Library providing C and Python (libcURL like) API for downloading linux repository metadata and packages"; + license = licenses.lgpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ copumpkin ]; + }; } From c9be29c5fb5892775ad060967aaa848512fdcfa0 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Sat, 30 Apr 2016 16:03:47 +0000 Subject: [PATCH 169/337] libhif: add meta and add myself as a maintainer --- pkgs/tools/package-management/libhif/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/tools/package-management/libhif/default.nix b/pkgs/tools/package-management/libhif/default.nix index 895165a1c1f..2667274e2fd 100644 --- a/pkgs/tools/package-management/libhif/default.nix +++ b/pkgs/tools/package-management/libhif/default.nix @@ -25,5 +25,12 @@ stdenv.mkDerivation rec { # ibhif/hif-packagedelta.h includes solv/pool.h propagatedBuildInputs = [ libsolv ]; + + meta = { + description = "A library that provides a high level package-manager. It uses librepo and hawkey under the hood."; + license = licenses.lgpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ copumpkin ]; + }; } From befc8667147e90e0e63638ae8b5a4bbd8cf56082 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Sat, 30 Apr 2016 16:06:17 +0000 Subject: [PATCH 170/337] rpm-ostree: add meta and add myself as a maintainer --- pkgs/tools/misc/rpm-ostree/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/tools/misc/rpm-ostree/default.nix b/pkgs/tools/misc/rpm-ostree/default.nix index 372b0a7f270..903aeec3f48 100644 --- a/pkgs/tools/misc/rpm-ostree/default.nix +++ b/pkgs/tools/misc/rpm-ostree/default.nix @@ -37,5 +37,13 @@ in stdenv.mkDerivation rec { preConfigure = '' env NOCONFIGURE=1 ./autogen.sh ''; + + meta = { + description = "A hybrid image/package system. It uses OSTree as an image format, and uses RPM as a component model"; + homepage = "https://rpm-ostree.readthedocs.io/en/latest/"; + license = licenses.lgpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ copumpkin ]; + }; } From e5a9d647876b69b4cacec385e454ae9ff52290c8 Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Sat, 30 Apr 2016 13:19:14 -0300 Subject: [PATCH 171/337] git: fix subversion bindings for multiple outputs --- .../version-management/git-and-tools/git/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix index 4f41ffb916e..bdbabe9704f 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -111,12 +111,12 @@ stdenv.mkDerivation { ''# wrap git-svn gitperllib=$out/lib/perl5/site_perl - for i in ${builtins.toString perlLibs} ${svn}; do + for i in ${builtins.toString perlLibs} ${svn.out}; do gitperllib=$gitperllib:$i/lib/perl5/site_perl done wrapProgram $out/libexec/git-core/git-svn \ --set GITPERLLIB "$gitperllib" \ - --prefix PATH : "${svn}/bin" '' + --prefix PATH : "${svn.out}/bin" '' else '' # replace git-svn by notification script notSupported $out/libexec/git-core/git-svn '') From 6af34124a449fd1c9fb894466636a2c73c7b7940 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Sat, 30 Apr 2016 16:23:16 +0000 Subject: [PATCH 172/337] libhif, rpm-ostree: fix broken meta Forgot to add stdenv.lib to scope! --- pkgs/tools/misc/rpm-ostree/default.nix | 2 +- pkgs/tools/package-management/libhif/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/rpm-ostree/default.nix b/pkgs/tools/misc/rpm-ostree/default.nix index 903aeec3f48..8df9666c10b 100644 --- a/pkgs/tools/misc/rpm-ostree/default.nix +++ b/pkgs/tools/misc/rpm-ostree/default.nix @@ -38,7 +38,7 @@ in stdenv.mkDerivation rec { env NOCONFIGURE=1 ./autogen.sh ''; - meta = { + meta = with stdenv.lib; { description = "A hybrid image/package system. It uses OSTree as an image format, and uses RPM as a component model"; homepage = "https://rpm-ostree.readthedocs.io/en/latest/"; license = licenses.lgpl2Plus; diff --git a/pkgs/tools/package-management/libhif/default.nix b/pkgs/tools/package-management/libhif/default.nix index 2667274e2fd..7736c67007a 100644 --- a/pkgs/tools/package-management/libhif/default.nix +++ b/pkgs/tools/package-management/libhif/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { # ibhif/hif-packagedelta.h includes solv/pool.h propagatedBuildInputs = [ libsolv ]; - meta = { + meta = with stdenv.lib; { description = "A library that provides a high level package-manager. It uses librepo and hawkey under the hood."; license = licenses.lgpl2Plus; platforms = platforms.linux; From 61f110e8908b7e4e44531e963ead88dd72f2219b Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 30 Apr 2016 18:11:06 +0200 Subject: [PATCH 173/337] tor: meta improvements --- pkgs/tools/security/tor/default.nix | 30 ++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/pkgs/tools/security/tor/default.nix b/pkgs/tools/security/tor/default.nix index 7ff1cd9cca5..8ac7472a2bc 100644 --- a/pkgs/tools/security/tor/default.nix +++ b/pkgs/tools/security/tor/default.nix @@ -25,25 +25,25 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { - homepage = http://www.torproject.org/; + meta = with stdenv.lib; { + homepage = https://www.torproject.org/; repositories.git = https://git.torproject.org/git/tor; - description = "Anonymous network router to improve privacy on the Internet"; + description = "Anonymizing overlay network"; - longDescription='' - Tor protects you by bouncing your communications around a distributed - network of relays run by volunteers all around the world: it prevents - somebody watching your Internet connection from learning what sites you - visit, and it prevents the sites you visit from learning your physical - location. Tor works with many of your existing applications, including - web browsers, instant messaging clients, remote login, and other - applications based on the TCP protocol. + longDescription = '' + Tor helps improve your privacy by bouncing your communications around a + network of relays run by volunteers all around the world: it makes it + harder for somebody watching your Internet connection to learn what sites + you visit, and makes it harder for the sites you visit to track you. Tor + works with many of your existing applications, including web browsers, + instant messaging clients, remote login, and other applications based on + the TCP protocol. ''; - license="mBSD"; + license = licenses.bsd3; - maintainers = with stdenv.lib.maintainers; - [ phreedom doublec thoughtpolice ]; - platforms = stdenv.lib.platforms.unix; + maintainers = with maintainers; + [ phreedom doublec thoughtpolice joachifm ]; + platforms = platforms.unix; }; } From c32618cd851a2ec8838c683a4ae4c7d9a2e81220 Mon Sep 17 00:00:00 2001 From: michael bishop Date: Sat, 30 Apr 2016 15:28:11 -0300 Subject: [PATCH 174/337] openiscsi: fix a file that was broken by upstream changing things to dynamic linking --- pkgs/os-specific/linux/open-iscsi/default.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/os-specific/linux/open-iscsi/default.nix b/pkgs/os-specific/linux/open-iscsi/default.nix index 96ff1e52cdd..48055431304 100644 --- a/pkgs/os-specific/linux/open-iscsi/default.nix +++ b/pkgs/os-specific/linux/open-iscsi/default.nix @@ -1,10 +1,9 @@ -{ stdenv, fetchFromGitHub, nukeReferences, automake, autoconf, libtool, gettext, utillinux, openisns, openssl, kmod }: +{ stdenv, fetchFromGitHub, automake, autoconf, libtool, gettext, utillinux, openisns, openssl, kmod }: stdenv.mkDerivation rec { name = "open-iscsi-${version}"; version = "2.0-873-${stdenv.lib.substring 0 7 src.rev}"; - outputs = [ "out" "iscsistart" ]; - buildInputs = [ nukeReferences automake autoconf libtool gettext utillinux openisns.lib openssl kmod ]; + buildInputs = [ automake autoconf libtool gettext utillinux openisns.lib openssl kmod ]; src = fetchFromGitHub { owner = "open-iscsi"; @@ -19,13 +18,12 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-DUSE_KMOD"; preConfigure = '' - sed -i 's|/usr/|/|' Makefile + sed -i 's|/usr|/|' Makefile ''; postInstall = '' - mkdir -pv $iscsistart/bin/ - cp -v usr/iscsistart $iscsistart/bin/ - nuke-refs $iscsistart/bin/iscsistart + cp usr/iscsistart $out/sbin/ + $out/sbin/iscsistart -v ''; meta = with stdenv.lib; { @@ -33,5 +31,6 @@ stdenv.mkDerivation rec { license = licenses.gpl2Plus; homepage = http://www.open-iscsi.com; platforms = platforms.linux; + maintainers = with maintainers; [ cleverca22 ]; }; } From aaae243b2bbb6d1bf2d0b8f4de0df57f1055ded5 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 30 Apr 2016 20:30:29 +0200 Subject: [PATCH 175/337] imatix_gsl: fix build See https://hydra.nixos.org/build/35004296/log/raw Also fix some formatting issues. --- pkgs/development/tools/imatix_gsl/default.nix | 43 +++++++++---------- 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/pkgs/development/tools/imatix_gsl/default.nix b/pkgs/development/tools/imatix_gsl/default.nix index 0def514dec5..629ddf69c4e 100644 --- a/pkgs/development/tools/imatix_gsl/default.nix +++ b/pkgs/development/tools/imatix_gsl/default.nix @@ -1,30 +1,27 @@ { stdenv, fetchFromGitHub, pcre } : stdenv.mkDerivation rec { - name = "imatix_gsl"; - version = "4.1"; - src = fetchFromGitHub { - owner = "imatix"; - repo = "gsl"; - rev = "72192d0d9de17de08d9379602d6482b4e5d402d0"; - sha256 = "1apy11avgqc27xlczyjh15y10qjdyqsqab1wrl2067qgpdiy58w7"; - }; + name = "imatix_gsl"; + version = "4.1"; - buildInputs = [ pcre ]; + src = fetchFromGitHub { + owner = "imatix"; + repo = "gsl"; + rev = "72192d0d9de17de08d9379602d6482b4e5d402d0"; + sha256 = "1apy11avgqc27xlczyjh15y10qjdyqsqab1wrl2067qgpdiy58w7"; + }; - preBuild = '' - cd src - ''; + buildInputs = [ pcre ]; - installFlags = "DESTDIR=$(out)"; + postPatch = "sed -e 's,/usr/bin/install,install,g' -i src/Makefile"; + preBuild = "cd src"; + installFlags = "DESTDIR=$(out)"; - meta = with stdenv.lib; { - license = licenses.gpl3Plus; - homepage = "https://github.com/imatix/gsl"; - description = '' - A universal code generator - ''; - platforms = platforms.unix; - maintainer = [ maintainers.moosingin3space ]; - }; -} \ No newline at end of file + meta = with stdenv.lib; { + license = licenses.gpl3Plus; + homepage = https://github.com/imatix/gsl/; + description = "A universal code generator"; + platforms = platforms.unix; + maintainer = [ maintainers.moosingin3space ]; + }; +} From 3994a236bb004b8244ead60f0085a657121ed956 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 30 Apr 2016 21:09:18 +0200 Subject: [PATCH 176/337] tor-arm: build recipe improvements - Fix install of man page - Remove redundant for loop - Access python interpreter via pythonPackages - Remove redundant build inputs (captured via replacement anyway) - Fix install location of sample rc file. For whatever reason, the install script ends up thinking it needs to use tor-arm, so override it - Clarify meta.description --- pkgs/tools/security/tor/tor-arm.nix | 35 ++++++++++++++++------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/pkgs/tools/security/tor/tor-arm.nix b/pkgs/tools/security/tor/tor-arm.nix index 365379c8f6a..1857cfcbe22 100644 --- a/pkgs/tools/security/tor/tor-arm.nix +++ b/pkgs/tools/security/tor/tor-arm.nix @@ -1,19 +1,21 @@ -{ stdenv, fetchurl, python, setuptools, lsof, nettools, makeWrapper -, pythonPackages, ncurses }: +{ stdenv, fetchurl, makeWrapper +, pythonPackages, ncurses, lsof, nettools +}: stdenv.mkDerivation rec { - name = "tor-arm-${version}"; + name = "tor-arm-${version}"; version = "1.4.5.0"; src = fetchurl { - url = "https://www.atagar.com/arm/resources/static/arm-${version}.tar.bz2"; + url = "https://www.atagar.com/arm/resources/static/arm-${version}.tar.bz2"; sha256 = "1yi87gdglkvi1a23hv5c3k7mc18g0rw7b05lfcw81qyxhlapf3pw"; }; - buildInputs = - [ python pythonPackages.curses setuptools lsof nettools makeWrapper ]; + nativeBuildInputs = [ makeWrapper pythonPackages.python ]; - patchPhase = '' + outputs = [ "out" "man" ]; + + postPatch = '' substituteInPlace ./setup.py --replace "/usr/bin" "$out/bin" substituteInPlace ./src/util/connections.py \ --replace "lsof -wnPi" "${lsof}/bin/lsof" @@ -22,28 +24,29 @@ stdenv.mkDerivation rec { --replace "lsof -wnPi" "${lsof}/bin/lsof" substituteInPlace ./arm --replace '"$0" = /usr/bin/arm' 'true' - substituteInPlace ./arm --replace "python" "${python}/bin/python" + substituteInPlace ./arm --replace "python" "${pythonPackages.python}/bin/python" for i in ./install ./arm ./src/gui/controller.py ./src/cli/wizard.py ./src/resources/torrcOverride/override.h ./src/resources/torrcOverride/override.py ./src/resources/arm.1 ./setup.py; do substituteInPlace $i --replace "/usr/share" "$out/share" done + + # fixes man page installation + substituteInPlace ./setup.py --replace "src/resoureces" "src/resources" ''; installPhase = '' mkdir -p $out/share/arm $out/bin $out/libexec - python setup.py install --prefix=$out + python setup.py install --prefix=$out --docPath $out/share/doc/arm cp -R src/TorCtl $out/libexec - for i in $(cd $out/bin && ls); do - wrapProgram $out/bin/$i \ - --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${pythonPackages.curses}):$out/libexec:$PYTHONPATH" \ - --set TERMINFO "${ncurses.out}/share/terminfo" \ - --set TERM "xterm" - done + wrapProgram $out/bin/arm \ + --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${pythonPackages.curses}):$out/libexec:$PYTHONPATH" \ + --set TERMINFO "${ncurses.out}/share/terminfo" \ + --set TERM "xterm" ''; meta = { - description = "Anonymizing relay monitor for Tor"; + description = "A terminal status monitor for Tor relays"; homepage = "https://www.atagar.com/arm/"; license = stdenv.lib.licenses.gpl3; platforms = stdenv.lib.platforms.unix; From e9c16b7902097c8dbc9874f95b8dd80aaeea1495 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 30 Apr 2016 20:48:12 +0000 Subject: [PATCH 177/337] php: 5.6.20 -> 5.6.21 --- pkgs/development/interpreters/php/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index a618fd85d71..a108462512e 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -299,8 +299,8 @@ in { }; php56 = generic { - version = "5.6.20"; - sha256 = "07xz48dz1ijwq45vh90jfzdd56k0s5ppi3j5rwc9p9y7mrybziss"; + version = "5.6.21"; + sha256 = "144m8xzpqv3pimxh2pjhbk4fy1kch9afkzclcinzv2dnfjspmvdl"; }; php70 = generic { From dea920bfdcea9c80b1e34d1a134f65a5157269f8 Mon Sep 17 00:00:00 2001 From: Maxim Ivanov Date: Sat, 30 Apr 2016 22:05:28 +0100 Subject: [PATCH 178/337] Remove obsolete scatter output hook There are no users of it in main tree and recent merge of multiple outputs branch makes it obsolete for private trees too. At the time hook was created, recently merged multiple output branch was relying on passing flags to autotools to split outputs, which obviously wasn't working for other build systems Scatter output was taking different approach where files were moved out from a build tree based on known paths, which is more or less what current multiple-outputs.sh hook is able to do too. --- .../setup-hooks/scatter_output.sh | 56 ------------------- pkgs/top-level/all-packages.nix | 2 - 2 files changed, 58 deletions(-) delete mode 100644 pkgs/build-support/setup-hooks/scatter_output.sh diff --git a/pkgs/build-support/setup-hooks/scatter_output.sh b/pkgs/build-support/setup-hooks/scatter_output.sh deleted file mode 100644 index f2a501c55e4..00000000000 --- a/pkgs/build-support/setup-hooks/scatter_output.sh +++ /dev/null @@ -1,56 +0,0 @@ -preFixupPhases+=" scatter_files" -preDistPhases+=" propagate_bin_input" - -SCATTER_BIN_DEFAULT=${SCATTER_BIN_DEFAULT:-"/lib/*.so* /bin/*"} -SCATTER_DOC_DEFAULT=${SCATTER_DOC_DEFAULT:-"/share/man/* /share/doc/*"} - - -scatter_files() { - save_nullglob=$(shopt -p nullglob) - for o in $outputs; do - [[ "$o" == "out" ]] && continue - v=files_${o} - - #if files_'output' isn't set in derivative, use defualts for some - [[ ${!v} ]] || { - case $o in - bin) - v=SCATTER_BIN_DEFAULT - ;; - doc) - v=SCATTER_DOC_DEFAULT - ;; - *) - continue - ;; - esac - } - - # prepend each path with $out - paths=$out${!v// \// $out/} - shopt -s nullglob - for f in $paths; do - shopt -u nullglob - dist=${!o}${f#$out} - mkdir -p $(dirname $dist) - cp -pr $f $dist - # remove source, not forgetting to clean empty dirs - rm -r $f - rmdir --ignore-fail-on-non-empty $(dirname $f) - done - find ${!o} -type f -exec $SHELL -c 'patchelf --set-rpath $(patchelf --print-rpath {} 2>/dev/null):'${!o}'/lib {} 2>/dev/null && patchelf --shrink-rpath {}' \; - done - eval $save_nullglob -} - -propagate_bin_input() { - if [[ -n ${bin:-} ]]; then - mkdir -p $out/nix-support - echo $bin >> $out/nix-support/propagated-native-build-inputs - fi - - if [[ -n ${bin:-} && -n ${doc:-} ]]; then - mkdir -p $bin/nix-support - echo $doc >> $bin/nix-support/propagated-user-env-packages - fi -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4d26cf8d62f..932d8d895d9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -156,8 +156,6 @@ in dispad = callPackage ../tools/X11/dispad { }; - scatterOutputHook = makeSetupHook {} ../build-support/setup-hooks/scatter_output.sh; - vsenv = callPackage ../build-support/vsenv { vs = vs90wrapper; }; From 87ebab128a466b6b3ac60711621ba6264cb7075a Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 23:56:43 +0300 Subject: [PATCH 179/337] replace ${stdenv.cc.cc}/lib occurences --- pkgs/applications/audio/renoise/default.nix | 2 +- pkgs/applications/editors/sublime/default.nix | 2 +- .../applications/editors/sublime3/default.nix | 4 ++-- .../google-talk-plugin/default.nix | 6 +++--- .../instant-messengers/hipchat/default.nix | 2 +- .../instant-messengers/slack/default.nix | 2 +- .../science/electronics/eagle/default.nix | 2 +- .../science/logic/saw-tools/default.nix | 2 +- .../science/logic/verifast/default.nix | 2 +- .../compilers/cudatoolkit/default.nix | 2 +- pkgs/development/compilers/fpc/lazarus.nix | 2 +- pkgs/development/compilers/ponyc/default.nix | 2 +- .../guile-modules/guile-lib/default.nix | 2 +- pkgs/development/libraries/fmod/4.24.16.nix | 2 +- pkgs/development/libraries/fmod/default.nix | 2 +- pkgs/development/libraries/v8/4.5.nix | 4 ++-- pkgs/development/libraries/v8/generic.nix | 4 ++-- pkgs/development/misc/amdapp-sdk/default.nix | 2 +- .../mobile/androidenv/androidsdk.nix | 2 +- .../tools/build-managers/cargo/snapshot.nix | 2 +- .../tools/misc/saleae-logic/default.nix | 2 +- pkgs/games/andyetitmoves/default.nix | 2 +- pkgs/games/oilrush/default.nix | 20 +++++++++---------- pkgs/games/spring/default.nix | 2 +- pkgs/games/tibia/default.nix | 2 +- pkgs/servers/meteor/default.nix | 8 ++++---- .../tools/filesystems/yandex-disk/default.nix | 4 ++-- pkgs/tools/misc/megacli/default.nix | 2 +- pkgs/tools/misc/staruml/default.nix | 2 +- pkgs/tools/networking/atftp/default.nix | 2 +- 30 files changed, 48 insertions(+), 48 deletions(-) diff --git a/pkgs/applications/audio/renoise/default.nix b/pkgs/applications/audio/renoise/default.nix index 39c0d579e81..7b4c1143fb4 100644 --- a/pkgs/applications/audio/renoise/default.nix +++ b/pkgs/applications/audio/renoise/default.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { ln -s $path/lib/*.so* $out/lib/ done - ln -s ${stdenv.cc.cc}/lib/libstdc++.so.6 $out/lib/ + ln -s ${stdenv.cc.cc.lib}/lib/libstdc++.so.6 $out/lib/ mkdir $out/bin ln -s $out/renoise $out/bin/renoise diff --git a/pkgs/applications/editors/sublime/default.nix b/pkgs/applications/editors/sublime/default.nix index c7b0f9864c9..a002d14c98c 100644 --- a/pkgs/applications/editors/sublime/default.nix +++ b/pkgs/applications/editors/sublime/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { echo ${libPath} patchelf \ --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath ${libPath}:${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"} \ + --set-rpath ${libPath}:${stdenv.cc.cc.lib}/lib${stdenv.lib.optionalString stdenv.is64bit "64"} \ $out/sublime/sublime_text ''; diff --git a/pkgs/applications/editors/sublime3/default.nix b/pkgs/applications/editors/sublime3/default.nix index 507dc611fd4..153c6920b47 100644 --- a/pkgs/applications/editors/sublime3/default.nix +++ b/pkgs/applications/editors/sublime3/default.nix @@ -37,7 +37,7 @@ in let for i in sublime_text plugin_host crash_reporter; do patchelf \ --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath ${libPath}:${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"} \ + --set-rpath ${libPath}:${stdenv.cc.cc.lib}/lib${stdenv.lib.optionalString stdenv.is64bit "64"} \ $i done @@ -57,7 +57,7 @@ in let --set NIX_REDIRECTS ${builtins.concatStringsSep ":" redirects} # Without this, plugin_host crashes, even though it has the rpath - wrapProgram $out/plugin_host --prefix LD_PRELOAD : ${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}/libgcc_s.so.1:${openssl.out}/lib/libssl.so:${bzip2.out}/lib/libbz2.so + wrapProgram $out/plugin_host --prefix LD_PRELOAD : ${stdenv.cc.cc.lib}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}/libgcc_s.so.1:${openssl.out}/lib/libssl.so:${bzip2.out}/lib/libbz2.so ''; }; in stdenv.mkDerivation { diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix index f35e88ae89e..aed05f42503 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation rec { cp opt/google/talkplugin/*.so $plugins for i in libnpgoogletalk.so libppgoogletalk.so libppo1d.so; do - patchelf --set-rpath "${makeLibraryPath [ stdenv.cc.cc xorg.libX11 ]}:${stdenv.cc.cc}/lib64" $plugins/$i + patchelf --set-rpath "${makeLibraryPath [ stdenv.cc.cc xorg.libX11 ]}:${stdenv.cc.cc.lib}/lib64" $plugins/$i done for i in libgoogletalkremoting.so libnpo1d.so; do - patchelf --set-rpath "$out/libexec/google/talkplugin/lib:${rpathPlugin}:${stdenv.cc.cc}/lib64" $plugins/$i + patchelf --set-rpath "$out/libexec/google/talkplugin/lib:${rpathPlugin}:${stdenv.cc.cc.lib}/lib64" $plugins/$i done mkdir -p $out/libexec/google/talkplugin @@ -88,7 +88,7 @@ stdenv.mkDerivation rec { patchelf \ --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${rpathProgram}:${stdenv.cc.cc}/lib64" \ + --set-rpath "${rpathProgram}:${stdenv.cc.cc.lib}/lib64" \ $out/libexec/google/talkplugin/GoogleTalkPlugin # Generate an LD_PRELOAD wrapper to redirect execvp() calls to diff --git a/pkgs/applications/networking/instant-messengers/hipchat/default.nix b/pkgs/applications/networking/instant-messengers/hipchat/default.nix index b57b3394eea..e35674052c0 100644 --- a/pkgs/applications/networking/instant-messengers/hipchat/default.nix +++ b/pkgs/applications/networking/instant-messengers/hipchat/default.nix @@ -36,7 +36,7 @@ let xcbutilkeysyms systemd mesa_noglu - ] + ":${stdenv.cc.cc}/lib64"; + ] + ":${stdenv.cc.cc.lib}/lib64"; src = if stdenv.system == "x86_64-linux" then diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix index d0f0dd3149c..1f2b5ebe7fa 100644 --- a/pkgs/applications/networking/instant-messengers/slack/default.nix +++ b/pkgs/applications/networking/instant-messengers/slack/default.nix @@ -36,7 +36,7 @@ let xorg.libXrandr xorg.libXrender xorg.libXtst - ] + ":${stdenv.cc.cc}/lib64"; + ] + ":${stdenv.cc.cc.lib}/lib64"; src = if stdenv.system == "x86_64-linux" then diff --git a/pkgs/applications/science/electronics/eagle/default.nix b/pkgs/applications/science/electronics/eagle/default.nix index 71bc58af7c0..edc5845e988 100644 --- a/pkgs/applications/science/electronics/eagle/default.nix +++ b/pkgs/applications/science/electronics/eagle/default.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { mkdir -p "$out"/bin cat > "$out"/bin/eagle << EOF #!${stdenv.shell} - export LD_LIBRARY_PATH="${stdenv.cc.cc}/lib:${libPath}" + export LD_LIBRARY_PATH="${stdenv.cc.cc.lib}/lib:${libPath}" export LD_PRELOAD="$out/lib/eagle_fixer.so" export QT_XKB_CONFIG_ROOT="${xkeyboardconfig}/share/X11/xkb" exec "$dynlinker" "$out/eagle-${version}/bin/eagle" "\$@" diff --git a/pkgs/applications/science/logic/saw-tools/default.nix b/pkgs/applications/science/logic/saw-tools/default.nix index 1153c0b3cf5..949b34420b7 100644 --- a/pkgs/applications/science/logic/saw-tools/default.nix +++ b/pkgs/applications/science/logic/saw-tools/default.nix @@ -7,7 +7,7 @@ let gmp4 ncurses zlib - ] + ":${stdenv.cc.cc}/lib64"; + ] + ":${stdenv.cc.cc.lib}/lib64"; url = "https://github.com/GaloisInc/saw-script/releases/download"; diff --git a/pkgs/applications/science/logic/verifast/default.nix b/pkgs/applications/science/logic/verifast/default.nix index c0619ab5f49..d7c593b736e 100644 --- a/pkgs/applications/science/logic/verifast/default.nix +++ b/pkgs/applications/science/logic/verifast/default.nix @@ -7,7 +7,7 @@ let libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc stdenv.cc.cc gtk gdk_pixbuf atk pango glib cairo freetype fontconfig libxml2 gnome2.gtksourceview - ] + ":${stdenv.cc.cc}/lib64"; + ] + ":${stdenv.cc.cc.lib}/lib64"; patchExe = x: '' patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ diff --git a/pkgs/development/compilers/cudatoolkit/default.nix b/pkgs/development/compilers/cudatoolkit/default.nix index f13826ddb8c..c13118977a1 100644 --- a/pkgs/development/compilers/cudatoolkit/default.nix +++ b/pkgs/development/compilers/cudatoolkit/default.nix @@ -32,7 +32,7 @@ let gtk2 glib fontconfig freetype unixODBC alsaLib ]; - rpath = "${stdenv.lib.makeLibraryPath runtimeDependencies}:${stdenv.cc.cc}/lib64"; + rpath = "${stdenv.lib.makeLibraryPath runtimeDependencies}:${stdenv.cc.cc.lib}/lib64"; unpackPhase = '' sh $src --keep --noexec diff --git a/pkgs/development/compilers/fpc/lazarus.nix b/pkgs/development/compilers/fpc/lazarus.nix index 0db5f03a1ab..1f2be91b13a 100644 --- a/pkgs/development/compilers/fpc/lazarus.nix +++ b/pkgs/development/compilers/fpc/lazarus.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation { ]; preBuild = '' export makeFlags="$makeFlags LAZARUS_INSTALL_DIR=$out/share/lazarus/ INSTALL_PREFIX=$out/" - export NIX_LDFLAGS="$NIX_LDFLAGS -L${stdenv.cc.cc}/lib -lXi -lX11 -lglib-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -lc -lXext -lpango-1.0 -latk-1.0 -lgdk_pixbuf-2.0 -lcairo -lgcc_s" + export NIX_LDFLAGS="$NIX_LDFLAGS -L${stdenv.cc.cc.lib}/lib -lXi -lX11 -lglib-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -lc -lXext -lpango-1.0 -latk-1.0 -lgdk_pixbuf-2.0 -lcairo -lgcc_s" export LCL_PLATFORM=gtk2 mkdir -p $out/share "$out/lazarus" tar xf ${fpc.src} --strip-components=1 -C $out/share -m diff --git a/pkgs/development/compilers/ponyc/default.nix b/pkgs/development/compilers/ponyc/default.nix index 07614609519..ef355e64e1e 100644 --- a/pkgs/development/compilers/ponyc/default.nix +++ b/pkgs/development/compilers/ponyc/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { patchPhase = '' sed 's|/usr/lib/x86_64-linux-gnu/|${glibc.out}/lib/|g' -i src/libponyc/codegen/genexe.c - sed 's|/lib/x86_64-linux-gnu/|${stdenv.cc.cc}/lib/|g' -i src/libponyc/codegen/genexe.c + sed 's|/lib/x86_64-linux-gnu/|${stdenv.cc.cc.lib}/lib/|g' -i src/libponyc/codegen/genexe.c ''; preBuild = '' diff --git a/pkgs/development/guile-modules/guile-lib/default.nix b/pkgs/development/guile-modules/guile-lib/default.nix index 7cce27c387e..de456b4983a 100644 --- a/pkgs/development/guile-modules/guile-lib/default.nix +++ b/pkgs/development/guile-modules/guile-lib/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { preCheck = # Make `libgcc_s.so' visible for `pthread_cancel'. - '' export LD_LIBRARY_PATH="$(dirname $(echo ${stdenv.cc.cc}/lib*/libgcc_s.so)):$LD_LIBRARY_PATH" + '' export LD_LIBRARY_PATH="$(dirname $(echo ${stdenv.cc.cc.lib}/lib*/libgcc_s.so)):$LD_LIBRARY_PATH" ''; meta = { diff --git a/pkgs/development/libraries/fmod/4.24.16.nix b/pkgs/development/libraries/fmod/4.24.16.nix index b78b1a46e25..191db2f6f6d 100644 --- a/pkgs/development/libraries/fmod/4.24.16.nix +++ b/pkgs/development/libraries/fmod/4.24.16.nix @@ -5,7 +5,7 @@ let bits = stdenv.lib.optionalString (stdenv.system == "x86_64-linux") "64"; libPath = stdenv.lib.makeLibraryPath - [ stdenv.cc.libc stdenv.cc.cc ] + ":${stdenv.cc.cc}/lib64"; + [ stdenv.cc.libc stdenv.cc.cc ] + ":${stdenv.cc.cc.lib}/lib64"; patchLib = x: "patchelf --set-rpath ${libPath} ${x}"; src = diff --git a/pkgs/development/libraries/fmod/default.nix b/pkgs/development/libraries/fmod/default.nix index f014c4cecb6..621d6dc405f 100644 --- a/pkgs/development/libraries/fmod/default.nix +++ b/pkgs/development/libraries/fmod/default.nix @@ -5,7 +5,7 @@ let bits = stdenv.lib.optionalString (stdenv.system == "x86_64-linux") "64"; libPath = stdenv.lib.makeLibraryPath - [ stdenv.cc.libc stdenv.cc.cc ] + ":${stdenv.cc.cc}/lib64"; + [ stdenv.cc.libc stdenv.cc.cc ] + ":${stdenv.cc.cc.lib}/lib64"; patchLib = x: "patchelf --set-rpath ${libPath} ${x}"; in stdenv.mkDerivation rec { diff --git a/pkgs/development/libraries/v8/4.5.nix b/pkgs/development/libraries/v8/4.5.nix index 50fc2b7b0d9..065b656147d 100644 --- a/pkgs/development/libraries/v8/4.5.nix +++ b/pkgs/development/libraries/v8/4.5.nix @@ -122,8 +122,8 @@ stdenv.mkDerivation rec { install -vD out/Release/mksnapshot "$out/bin/mksnapshot" ${if stdenv.isDarwin then '' install -vD out/Release/lib.target/libv8.dylib "$out/lib/libv8.dylib" - install_name_tool -change /usr/local/lib/libv8.dylib $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc}/lib/libgcc_s.1.dylib $out/bin/d8 - install_name_tool -id $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc}/lib/libgcc_s.1.dylib $out/lib/libv8.dylib + install_name_tool -change /usr/local/lib/libv8.dylib $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc.lib}/lib/libgcc_s.1.dylib $out/bin/d8 + install_name_tool -id $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc.lib}/lib/libgcc_s.1.dylib $out/lib/libv8.dylib '' else '' install -vD out/Release/lib.target/libv8.so "$out/lib/libv8.so" ''} diff --git a/pkgs/development/libraries/v8/generic.nix b/pkgs/development/libraries/v8/generic.nix index 349b35549b6..d603fda3225 100644 --- a/pkgs/development/libraries/v8/generic.nix +++ b/pkgs/development/libraries/v8/generic.nix @@ -67,8 +67,8 @@ stdenv.mkDerivation rec { ''; postFixup = if stdenv.isDarwin then '' - install_name_tool -change /usr/local/lib/libv8.dylib $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc}/lib/libgcc_s.1.dylib $out/bin/d8 - install_name_tool -id $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc}/lib/libgcc_s.1.dylib $out/lib/libv8.dylib + install_name_tool -change /usr/local/lib/libv8.dylib $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc.lib}/lib/libgcc_s.1.dylib $out/bin/d8 + install_name_tool -id $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc.lib}/lib/libgcc_s.1.dylib $out/lib/libv8.dylib '' else null; meta = with stdenv.lib; { diff --git a/pkgs/development/misc/amdapp-sdk/default.nix b/pkgs/development/misc/amdapp-sdk/default.nix index 81b40bc78ac..acd71d65c0e 100644 --- a/pkgs/development/misc/amdapp-sdk/default.nix +++ b/pkgs/development/misc/amdapp-sdk/default.nix @@ -87,7 +87,7 @@ in stdenv.mkDerivation rec { # Create wrappers patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/bin/clinfo - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib $out/bin/clinfo + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib $out/bin/clinfo # Fix modes find "$out/" -type f -exec chmod 644 {} \; diff --git a/pkgs/development/mobile/androidenv/androidsdk.nix b/pkgs/development/mobile/androidenv/androidsdk.nix index aa009cb301a..08b15181be4 100644 --- a/pkgs/development/mobile/androidenv/androidsdk.nix +++ b/pkgs/development/mobile/androidenv/androidsdk.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { for i in emulator64-arm emulator64-mips emulator64-x86 do patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2 $i - patchelf --set-rpath ${stdenv.cc.cc}/lib64 $i + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64 $i done ''} diff --git a/pkgs/development/tools/build-managers/cargo/snapshot.nix b/pkgs/development/tools/build-managers/cargo/snapshot.nix index c01ba2b5386..62539c2c732 100644 --- a/pkgs/development/tools/build-managers/cargo/snapshot.nix +++ b/pkgs/development/tools/build-managers/cargo/snapshot.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation { ./install.sh "--prefix=$out" '' + (if stdenv.isLinux then '' patchelf --interpreter "${stdenv.glibc.out}/lib/${stdenv.cc.dynamicLinker}" \ - --set-rpath "${stdenv.cc.cc}/lib/:${stdenv.cc.cc}/lib64/:${zlib.out}/lib" \ + --set-rpath "${stdenv.cc.cc.lib}/lib/:${stdenv.cc.cc.lib}/lib64/:${zlib.out}/lib" \ "$out/bin/cargo" '' else "") + postInstall; } diff --git a/pkgs/development/tools/misc/saleae-logic/default.nix b/pkgs/development/tools/misc/saleae-logic/default.nix index 8e8909ee7d0..53020671d17 100644 --- a/pkgs/development/tools/misc/saleae-logic/default.nix +++ b/pkgs/development/tools/misc/saleae-logic/default.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation rec { # Patch it patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$out/Logic" - patchelf --set-rpath "${stdenv.cc.cc}/lib:${stdenv.cc.cc}/lib64:${libPath}:\$ORIGIN/Analyzers:\$ORIGIN" "$out/Logic" + patchelf --set-rpath "${stdenv.cc.cc.lib}/lib:${stdenv.cc.cc.lib}/lib64:${libPath}:\$ORIGIN/Analyzers:\$ORIGIN" "$out/Logic" # Build the LD_PRELOAD library that makes Logic work from a read-only directory mkdir -p "$out/lib" diff --git a/pkgs/games/andyetitmoves/default.nix b/pkgs/games/andyetitmoves/default.nix index 897e4202b80..092f0773708 100644 --- a/pkgs/games/andyetitmoves/default.nix +++ b/pkgs/games/andyetitmoves/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { mkdir -p $out/{opt/andyetitmoves,bin} cp -r * $out/opt/andyetitmoves/ - fullPath=${stdenv.cc.cc}/lib64 + fullPath=${stdenv.cc.cc.lib}/lib64 for i in $nativeBuildInputs; do fullPath=$fullPath''${fullPath:+:}$i/lib done diff --git a/pkgs/games/oilrush/default.nix b/pkgs/games/oilrush/default.nix index ec9c928b798..7a23c4dc966 100644 --- a/pkgs/games/oilrush/default.nix +++ b/pkgs/games/oilrush/default.nix @@ -27,25 +27,25 @@ stdenv.mkDerivation { do patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $f done - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ launcher_$arch - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib\ libNetwork_$arch.so - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib\ libQtCoreUnigine_$arch.so.4 - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ libQtGuiUnigine_$arch.so.4 - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib\ libQtNetworkUnigine_$arch.so.4 - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ libQtWebKitUnigine_$arch.so.4 - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib\ libQtXmlUnigine_$arch.so.4 - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib\ libRakNet_$arch.so - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXinerama libXrandr ]}\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXinerama libXrandr ]}\ libUnigine_$arch.so - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXinerama libXrandr ]}\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXinerama libXrandr ]}\ OilRush_$arch ''; installPhase = '' diff --git a/pkgs/games/spring/default.nix b/pkgs/games/spring/default.nix index fe764c90b4b..525adbc0a12 100644 --- a/pkgs/games/spring/default.nix +++ b/pkgs/games/spring/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { postInstall = '' wrapProgram "$out/bin/spring" \ - --prefix LD_LIBRARY_PATH : "${stdenv.cc.cc}/lib::${systemd}/lib" + --prefix LD_LIBRARY_PATH : "${stdenv.cc.cc.lib}/lib::${systemd}/lib" ''; meta = with stdenv.lib; { diff --git a/pkgs/games/tibia/default.nix b/pkgs/games/tibia/default.nix index 1af750f462a..26b1f9c9da2 100644 --- a/pkgs/games/tibia/default.nix +++ b/pkgs/games/tibia/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { cp -r * $out/res patchelf --set-interpreter ${glibc.out}/lib/ld-linux.so.2 \ - --set-rpath ${stdenv.cc.cc}/lib:${libX11}/lib:${mesa}/lib \ + --set-rpath ${stdenv.cc.cc.lib}/lib:${libX11}/lib:${mesa}/lib \ "$out/res/Tibia" # We've patchelf'd the files. The main ‘Tibia’ binary is a bit diff --git a/pkgs/servers/meteor/default.nix b/pkgs/servers/meteor/default.nix index 7412378f3de..370a430ec1a 100644 --- a/pkgs/servers/meteor/default.nix +++ b/pkgs/servers/meteor/default.nix @@ -40,28 +40,28 @@ stdenv.mkDerivation rec { popd substituteInPlace $out/tools/cli/main.js \ --replace "@INTERPRETER@" "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --replace "@RPATH@" "${stdenv.cc.cc}/lib:${zlib.out}/lib" \ + --replace "@RPATH@" "${stdenv.cc.cc.lib}/lib:${zlib.out}/lib" \ --replace "@PATCHELF@" "${patchelf}/bin/patchelf" # Patch node. node=$devBundle/bin/node patchelf \ --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ - --set-rpath "$(patchelf --print-rpath $node):${stdenv.cc.cc}/lib" \ + --set-rpath "$(patchelf --print-rpath $node):${stdenv.cc.cc.lib}/lib" \ $node # Patch mongo. for p in $devBundle/mongodb/bin/mongo{,d}; do patchelf \ --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ - --set-rpath "$(patchelf --print-rpath $p):${stdenv.cc.cc}/lib:${zlib.out}/lib" \ + --set-rpath "$(patchelf --print-rpath $p):${stdenv.cc.cc.lib}/lib:${zlib.out}/lib" \ $p done # Patch node dlls. for p in $(find $out/packages -name '*.node'); do patchelf \ - --set-rpath "$(patchelf --print-rpath $p):${stdenv.cc.cc}/lib" \ + --set-rpath "$(patchelf --print-rpath $p):${stdenv.cc.cc.lib}/lib" \ $p done diff --git a/pkgs/tools/filesystems/yandex-disk/default.nix b/pkgs/tools/filesystems/yandex-disk/default.nix index 966b3df8b17..1658a428920 100644 --- a/pkgs/tools/filesystems/yandex-disk/default.nix +++ b/pkgs/tools/filesystems/yandex-disk/default.nix @@ -5,12 +5,12 @@ assert stdenv.isLinux; let p = if stdenv.is64bit then { arch = "x86_64"; - gcclib = "${stdenv.cc.cc}/lib64"; + gcclib = "${stdenv.cc.cc.lib}/lib64"; sha256 = "0k05ybvnv0zx4vfx55jyhia38qqysaj68mapq0gwgf74k3a943g2"; } else { arch = "i386"; - gcclib = "${stdenv.cc.cc}/lib"; + gcclib = "${stdenv.cc.cc.lib}/lib"; sha256 = "09z9idmp7idcq0alwkla9kal9h82dx11jqh678lc4rviqggxzxhp"; }; in diff --git a/pkgs/tools/misc/megacli/default.nix b/pkgs/tools/misc/megacli/default.nix index 1f57b290cdd..cbebd557d77 100644 --- a/pkgs/tools/misc/megacli/default.nix +++ b/pkgs/tools/misc/megacli/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { cd $out unzip ${src} rpmextract linux/MegaCli-8.07.07-1.noarch.rpm - ${patchelf}/bin/patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath ${libPath}:$out/opt/lsi/3rdpartylibs/x86_64:$out/opt/lsi/3rdpartylibs:${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib opt/MegaRAID/MegaCli/MegaCli64 + ${patchelf}/bin/patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath ${libPath}:$out/opt/lsi/3rdpartylibs/x86_64:$out/opt/lsi/3rdpartylibs:${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib opt/MegaRAID/MegaCli/MegaCli64 wrapProgram $out/opt/MegaRAID/MegaCli/MegaCli64 --set LD_LIBRARY_PATH $out/opt/lsi/3rdpartylibs/x86_64 ln -s $out/opt/MegaRAID/MegaCli/MegaCli64 $out/bin/MegaCli64 eval fixupPhase diff --git a/pkgs/tools/misc/staruml/default.nix b/pkgs/tools/misc/staruml/default.nix index 0d2982c022f..90771b0527c 100644 --- a/pkgs/tools/misc/staruml/default.nix +++ b/pkgs/tools/misc/staruml/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { mkdir -p $out/lib - ln -s ${stdenv.cc.cc}/lib/libstdc++.so.6 $out/lib/ + ln -s ${stdenv.cc.cc.lib}/lib/libstdc++.so.6 $out/lib/ ln -s ${libudev.out}/lib/libudev.so.1 $out/lib/libudev.so.0 wrapProgram $out/bin/StarUML \ diff --git a/pkgs/tools/networking/atftp/default.nix b/pkgs/tools/networking/atftp/default.nix index 5fff72a3b07..bd4fb7e9e6a 100644 --- a/pkgs/tools/networking/atftp/default.nix +++ b/pkgs/tools/networking/atftp/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { buildInputs = [ readline tcp_wrappers pcre makeWrapper gcc ]; patches = [ debianPatch ]; postInstall = '' - wrapProgram $out/sbin/atftpd --prefix LD_LIBRARY_PATH : ${stdenv.cc.cc}/lib${if stdenv.system == "x86_64-linux" then "64" else ""} + wrapProgram $out/sbin/atftpd --prefix LD_LIBRARY_PATH : ${stdenv.cc.cc.lib}/lib${if stdenv.system == "x86_64-linux" then "64" else ""} ''; meta = { description = "Advanced tftp tools"; From 11a716491b93658552750645f627a3b833757b99 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 30 Apr 2016 22:32:34 +0000 Subject: [PATCH 180/337] php: 5.5.34 -> 5.4.35 --- pkgs/development/interpreters/php/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index a108462512e..c9fbf5c5de6 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -294,8 +294,8 @@ let in { php55 = generic { - version = "5.5.34"; - sha256 = "0745wn0qg9rqibwr948bzc719s7pywizvl1ahkg1j9m92r28i25g"; + version = "5.5.35"; + sha256 = "1msqh8ii0qwzzcwlwn8f493x2r3hy2djzrrwd5jgs87893b8sr1d"; }; php56 = generic { From 784a5ed2ef4847d8b9a283c9a39bd2273bd709a8 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 1 May 2016 01:50:29 +0300 Subject: [PATCH 181/337] wine: fix pulseaudio in staging --- pkgs/misc/emulators/wine/base.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/misc/emulators/wine/base.nix b/pkgs/misc/emulators/wine/base.nix index 804eb0bb304..60fb8e11391 100644 --- a/pkgs/misc/emulators/wine/base.nix +++ b/pkgs/misc/emulators/wine/base.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation ((lib.optionalAttrs (! isNull buildScript) { NIX_LDFLAGS = map (path: "-rpath " + path) ( map (x: "${x}/lib") ([ stdenv.cc.cc ] ++ (map (x: x.lib or x.out) buildInputs)) # libpulsecommon.so is linked but not found otherwise - ++ lib.optionals pulseaudioSupport (map (x: "${x}/lib/pulseaudio") (toBuildInputs pkgArches (pkgs: [ pkgs.libpulseaudio ]))) + ++ lib.optionals pulseaudioSupport (map (x: "${x.lib or x.out}/lib/pulseaudio") (toBuildInputs pkgArches (pkgs: [ pkgs.libpulseaudio ]))) ); # Don't shrink the ELF RPATHs in order to keep the extra RPATH From 8d5962a69064798883e1654ad585d21d3f06dd99 Mon Sep 17 00:00:00 2001 From: Phil Scott Date: Sat, 30 Apr 2016 12:50:50 +0100 Subject: [PATCH 182/337] angband: init at version 4.0.5 --- pkgs/games/angband/default.nix | 23 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/games/angband/default.nix diff --git a/pkgs/games/angband/default.nix b/pkgs/games/angband/default.nix new file mode 100644 index 00000000000..5a026099076 --- /dev/null +++ b/pkgs/games/angband/default.nix @@ -0,0 +1,23 @@ +{stdenv, fetchFromGitHub, autoconf, automake, ncurses }: + +stdenv.mkDerivation rec { + version = "4.0.5"; + name = "angband-${version}"; + src = fetchFromGitHub { + owner = "angband"; + repo = "angband"; + rev = version; + sha256 = "1l7ybqmsxpsijm7iqiqjpa7lhjafxml743q4crxn8wnwrbjzbi86"; + }; + buildInputs = [ autoconf automake ncurses ]; + configurePhase = '' + ./autogen.sh + ./configure --prefix=$out --bindir=$out/bin --disable-x11 + ''; + meta = { + homepage = "http://rephial.org/"; + description = "Angband (classic rogue-like game)"; + maintainers = [ stdenv.lib.maintainers.chattered ]; + license = stdenv.lib.licenses.gpl2; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4d26cf8d62f..adddcaf80af 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14728,6 +14728,8 @@ in andyetitmoves = if stdenv.isLinux then callPackage ../games/andyetitmoves {} else null; + angband = callPackage ../games/angband { }; + anki = callPackage ../games/anki { inherit (pythonPackages) wrapPython pysqlite sqlalchemy pyaudio beautifulsoup httplib2 matplotlib; }; From fb93bfc0bc14ca540072c39b91268c9555133cbb Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 1 May 2016 01:18:15 +0200 Subject: [PATCH 183/337] angband: cleanups --- pkgs/games/angband/default.nix | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/pkgs/games/angband/default.nix b/pkgs/games/angband/default.nix index 5a026099076..c0445811f39 100644 --- a/pkgs/games/angband/default.nix +++ b/pkgs/games/angband/default.nix @@ -1,23 +1,24 @@ -{stdenv, fetchFromGitHub, autoconf, automake, ncurses }: +{ stdenv, fetchFromGitHub, autoreconfHook, ncurses }: stdenv.mkDerivation rec { version = "4.0.5"; name = "angband-${version}"; + src = fetchFromGitHub { owner = "angband"; repo = "angband"; rev = version; sha256 = "1l7ybqmsxpsijm7iqiqjpa7lhjafxml743q4crxn8wnwrbjzbi86"; - }; - buildInputs = [ autoconf automake ncurses ]; - configurePhase = '' - ./autogen.sh - ./configure --prefix=$out --bindir=$out/bin --disable-x11 - ''; - meta = { - homepage = "http://rephial.org/"; - description = "Angband (classic rogue-like game)"; - maintainers = [ stdenv.lib.maintainers.chattered ]; - license = stdenv.lib.licenses.gpl2; + }; + + nativeBuildInputs = [ autoreconfHook ]; + buildInputs = [ ncurses ]; + installFlags = "bindir=$(out)/bin"; + + meta = with stdenv.lib; { + homepage = http://rephial.org/; + description = "A single-player roguelike dungeon exploration game"; + maintainers = [ maintainers.chattered ]; + license = licenses.gpl2; }; } From 950a698488518447f3b085df153408ed5605574c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 30 Apr 2016 14:46:45 +0200 Subject: [PATCH 184/337] 0ad game & data: 0.0.19 -> 0.0.20 --- pkgs/games/0ad/data.nix | 2 +- pkgs/games/0ad/default.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/games/0ad/data.nix b/pkgs/games/0ad/data.nix index f2f5a9e9b21..aea36d211aa 100644 --- a/pkgs/games/0ad/data.nix +++ b/pkgs/games/0ad/data.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://releases.wildfiregames.com/0ad-${version}-${releaseType}-unix-data.tar.xz"; - sha256 = "0f406ynz2fbg3hwavh52xh4f7kqm4mzhz59kkvb6dpsax5agalwk"; + sha256 = "1lzl8chfqbgs1n9vpn0xaqd70kpwiibfk196iblyq6qkms3v6pnv"; }; patchPhase = '' diff --git a/pkgs/games/0ad/default.nix b/pkgs/games/0ad/default.nix index e854af58865..485feb53a89 100644 --- a/pkgs/games/0ad/default.nix +++ b/pkgs/games/0ad/default.nix @@ -9,7 +9,7 @@ assert withEditor -> wxGTK != null; let - version = "0.0.19"; + version = "0.0.20"; releaseType = "alpha"; @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://releases.wildfiregames.com/0ad-${version}-${releaseType}-unix-build.tar.xz"; - sha256 = "1cwvhg30i6axm7y5b62qyjwf1j8gwa5fgc13xsga3gzdphmjchrd"; + sha256 = "13n61xhjsawda3kl7112la41bqkbqmq4yhr3slydsz856z5xb5m3"; }; buildInputs = [ From 2b48d3dae6a73ca5a92ab3955344e020dbf0d372 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 30 Apr 2016 20:45:47 +0200 Subject: [PATCH 185/337] workrave: minor edits for consistency Mainly dropping the partial use of xorg. and separating nativeBuildInputs. --- pkgs/applications/misc/workrave/default.nix | 24 +++++++++------------ 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/pkgs/applications/misc/workrave/default.nix b/pkgs/applications/misc/workrave/default.nix index f8ec86dd2b3..d082cc30bd7 100644 --- a/pkgs/applications/misc/workrave/default.nix +++ b/pkgs/applications/misc/workrave/default.nix @@ -1,13 +1,8 @@ -{ stdenv, fetchurl, autoconf, automake, gettext, intltool, libtool, pkgconfig, - libXtst, cheetah, libXScrnSaver, xorg, - glib, glibmm, - gtk, gtkmm, - atk, - pango, pangomm, - cairo, cairomm, - dbus, dbus_glib, - GConf, gconfmm, - gdome2, gstreamer, libsigcxx }: +{ stdenv, fetchurl +, autoconf, automake, gettext, intltool, libtool, pkgconfig +, libICE, libSM, libXScrnSaver, libXtst, cheetah +, glib, glibmm, gtk, gtkmm, atk, pango, pangomm, cairo, cairomm +, dbus, dbus_glib, GConf, gconfmm, gdome2, gstreamer, libsigcxx }: stdenv.mkDerivation rec { version = "1.10.6"; @@ -22,12 +17,13 @@ stdenv.mkDerivation rec { sha256 = "0q2p83n33chbqzdcdm7ykfsy73frfi6drxzm4qidxwzpzsxrysgq"; }; + nativeBuildInputs = [ + autoconf automake gettext intltool libtool pkgconfig + ]; buildInputs = [ - autoconf automake gettext intltool libtool pkgconfig libXtst cheetah - libXScrnSaver - + libICE libSM libXScrnSaver libXtst cheetah glib glibmm gtk gtkmm atk pango pangomm cairo cairomm - dbus dbus_glib GConf gconfmm gdome2 gstreamer libsigcxx xorg.libICE xorg.libSM + dbus dbus_glib GConf gconfmm gdome2 gstreamer libsigcxx ]; preConfigure = "./autogen.sh"; From 5fcf22f57cd024e2d8e96d5286f5afe91b067398 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 1 May 2016 00:29:48 +0200 Subject: [PATCH 186/337] workrave: 1.10.6 -> 1.10.7; fetchFromGitHub; maintain --- pkgs/applications/misc/workrave/default.nix | 30 ++++++++++++++------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/misc/workrave/default.nix b/pkgs/applications/misc/workrave/default.nix index d082cc30bd7..e9e34518932 100644 --- a/pkgs/applications/misc/workrave/default.nix +++ b/pkgs/applications/misc/workrave/default.nix @@ -1,22 +1,32 @@ -{ stdenv, fetchurl +{ stdenv, fetchFromGitHub, fetchpatch , autoconf, automake, gettext, intltool, libtool, pkgconfig , libICE, libSM, libXScrnSaver, libXtst, cheetah , glib, glibmm, gtk, gtkmm, atk, pango, pangomm, cairo, cairomm , dbus, dbus_glib, GConf, gconfmm, gdome2, gstreamer, libsigcxx }: stdenv.mkDerivation rec { - version = "1.10.6"; name = "workrave-${version}"; + version = "1.10.7"; src = let - version_ = with stdenv.lib; - concatStringsSep "_" (splitString "." version); - in fetchurl { - name = "${name}.tar.gz"; - url = "http://github.com/rcaelers/workrave/archive/v${version_}.tar.gz"; - sha256 = "0q2p83n33chbqzdcdm7ykfsy73frfi6drxzm4qidxwzpzsxrysgq"; + in fetchFromGitHub { + sha256 = "1mxg882rfih7xzadrpj51m9r33f6s3rzwv61nfwi94vzd68qjnxb"; + rev = with stdenv.lib; + "v" + concatStringsSep "_" (splitString "." version); + repo = "workrave"; + owner = "rcaelers"; }; + patches = [ + # Building with gtk{,mm}3 works just fine, but let's be conservative for once: + (fetchpatch { + name = "workrave-fix-compilation-with-gtk2.patch"; + url = "https://github.com/rcaelers/workrave/commit/" + + "271efdcd795b3592bfede8b1af2162af4b1f0f26.patch"; + sha256 = "1a3d4jj8516m3m24bl6y8alanl1qnyzv5dv1hz5v3hjgk89fj6rk"; + }) + ]; + nativeBuildInputs = [ autoconf automake gettext intltool libtool pkgconfig ]; @@ -28,6 +38,8 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh"; + enableParallelBuilding = true; + meta = with stdenv.lib; { description = "A program to help prevent Repetitive Strain Injury"; longDescription = '' @@ -38,7 +50,7 @@ stdenv.mkDerivation rec { homepage = http://www.workrave.org/; downloadPage = https://github.com/rcaelers/workrave/releases; license = licenses.gpl3; - maintainers = with maintainers; [ prikhi ]; + maintainers = with maintainers; [ nckx prikhi ]; platforms = platforms.linux; }; } From ac3ce1c26a5b06a51b023eb99faa0dbc05f9327f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 1 May 2016 02:10:24 +0300 Subject: [PATCH 187/337] bumblebee: fix outputs --- pkgs/tools/X11/bumblebee/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/X11/bumblebee/default.nix b/pkgs/tools/X11/bumblebee/default.nix index 803fd0dd850..e58aa7042d0 100644 --- a/pkgs/tools/X11/bumblebee/default.nix +++ b/pkgs/tools/X11/bumblebee/default.nix @@ -46,7 +46,7 @@ let bbdPath = lib.makeBinPath [ kmod xorgserver ]; bbdLibs = lib.makeLibraryPath [ libX11 libXext ]; - xmodules = lib.concatStringsSep "," (map (x: "${x}/lib/xorg/modules") ([ xorgserver ] ++ lib.optional (!useNvidia) xf86videonouveau)); + xmodules = lib.concatStringsSep "," (map (x: "${x.out or x}/lib/xorg/modules") ([ xorgserver ] ++ lib.optional (!useNvidia) xf86videonouveau)); in stdenv.mkDerivation rec { name = "bumblebee-${version}"; From b3b02fe65691ac133515d80be109d1e26ddd6e12 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sun, 1 May 2016 03:05:16 +0000 Subject: [PATCH 188/337] nixpkgs: chez scheme 9.4 Signed-off-by: Austin Seipp --- pkgs/development/compilers/chez/default.nix | 48 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 50 insertions(+) create mode 100644 pkgs/development/compilers/chez/default.nix diff --git a/pkgs/development/compilers/chez/default.nix b/pkgs/development/compilers/chez/default.nix new file mode 100644 index 00000000000..f9e0627f8aa --- /dev/null +++ b/pkgs/development/compilers/chez/default.nix @@ -0,0 +1,48 @@ +{ stdenv, fetchgit, ncurses, libX11 }: + +stdenv.mkDerivation rec { + name = "chez-scheme-${version}"; + version = "9.4-${dver}"; + dver = "20160430"; + + src = fetchgit { + url = "https://github.com/cisco/ChezScheme.git"; + rev = "63a97939896c2a89fcffdf16c8b783efaeb816b5"; + sha256 = "1c58xjslgn7xnfy9j5p9b6sn0wzv2mk7zlmhflydzil7iimchjsi"; + fetchSubmodules = true; + }; + + enableParallelBuilding = true; + buildInputs = [ ncurses libX11 ]; + + /* Chez uses a strange default search path, which completely + ** ignores the installation prefix for some reason, and instead + ** defaults to {/usr,/usr/local,$HOME}/lib for finding the .boot + ** file. + ** + ** Also, we patch out a very annoying 'feature' in ./configure, too. + */ + patchPhase = '' + substituteInPlace c/scheme.c \ + --replace "/usr/lib/csv" "$out/lib/csv" + + substituteInPlace ./configure \ + --replace "git submodule init && git submodule update || exit 1" "" + ''; + + /* Don't use configureFlags, since that just implicitly appends + ** everything onto a --prefix flag, which ./configure gets very angry + ** about. + */ + configurePhase = '' + ./configure --threads --installprefix=$out --installman=$out/share/man + ''; + + meta = { + description = "A powerful and incredibly fast R6RS Scheme compiler"; + homepage = "http://www.scheme.com"; + license = stdenv.lib.licenses.asl20; + platforms = stdenv.lib.platforms.linux; + maintainers = with stdenv.lib.maintainers; [ thoughtpolice ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index adddcaf80af..5b391263b1f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4028,6 +4028,8 @@ in ccl = callPackage ../development/compilers/ccl { }; + chez = callPackage ../development/compilers/chez { }; + clang = llvmPackages.clang; clang_38 = llvmPackages_38.clang; From 0cef15181b3a5b7926a23cf2e58aed82dfb7af44 Mon Sep 17 00:00:00 2001 From: Benjamin Saunders Date: Sat, 30 Apr 2016 13:46:35 -0700 Subject: [PATCH 189/337] rtags: 9fed420 -> git-2016-04-29 --- pkgs/development/tools/rtags/default.nix | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/pkgs/development/tools/rtags/default.nix b/pkgs/development/tools/rtags/default.nix index 208445c3ec5..2e2332f20f2 100644 --- a/pkgs/development/tools/rtags/default.nix +++ b/pkgs/development/tools/rtags/default.nix @@ -1,30 +1,22 @@ -{ stdenv, fetchgit, cmake, llvm, openssl, clang, writeScript, bash }: +{ stdenv, fetchgit, cmake, llvmPackages, openssl, writeScript, bash, emacs }: -let llvm-config-wrapper = writeScript "llvm-config" '' - #! ${bash}/bin/bash - if [[ "$1" = "--cxxflags" ]]; then - echo $(${llvm}/bin/llvm-config "$@") -isystem ${clang.cc}/include - else - ${llvm}/bin/llvm-config "$@" - fi - ''; - -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "rtags-${version}"; - rev = "9fed420d20935faf55770765591fc2de02eeee28"; - version = "${stdenv.lib.strings.substring 0 7 rev}"; + version = "git-2016-04-29"; + rev = "233543d343bf86fa31c35ee21242fa2da3a965ab"; - buildInputs = [ cmake llvm openssl clang ]; + buildInputs = [ cmake llvmPackages.llvm openssl llvmPackages.clang emacs ]; preConfigure = '' - export LIBCLANG_LLVM_CONFIG_EXECUTABLE=${llvm-config-wrapper} + export LIBCLANG_CXXFLAGS="-isystem ${llvmPackages.clang.cc}/include $(llvm-config --cxxflags)" \ + LIBCLANG_LIBDIR="${llvmPackages.clang.cc}/lib" ''; src = fetchgit { inherit rev; fetchSubmodules = true; url = "https://github.com/andersbakken/rtags.git"; - sha256 = "1sb6wfknhvrgirqp65paz7kihv4zgg8g5f7a7i14i10sysalxbif"; + sha256 = "1jzmpbkx1z8dnpr0ndclb6c3dxnf90ifr8j1nzz4j8cvzdpc3lzc"; }; meta = { From 640ec5f6491ad9b6c37d12db0450745d9c7c59c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 1 May 2016 10:00:31 +0100 Subject: [PATCH 190/337] netboot: fix eval --- nixos/release.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/release.nix b/nixos/release.nix index ab4e1aaf7d4..8409191200c 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -111,11 +111,11 @@ in rec { ]; }).config.system.build; in - pkgs.symlinkJoin "netboot" [ + pkgs.symlinkJoin {name="netboot"; paths=[ build.netbootRamdisk build.kernel build.netbootIpxeScript - ]; + ];}; iso_minimal = forAllSystems (system: makeIso { module = ./modules/installer/cd-dvd/installation-cd-minimal.nix; From 3a52c5fa7d059ff75b3f56a817832e84f2c96e04 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 1 May 2016 12:25:37 +0300 Subject: [PATCH 191/337] firefox: fix library path Fixes #15126 --- pkgs/applications/networking/browsers/firefox/wrapper.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix index 1904d720dbd..d859d9a74ec 100644 --- a/pkgs/applications/networking/browsers/firefox/wrapper.nix +++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix @@ -88,7 +88,7 @@ stdenv.mkDerivation { makeWrapper "${browser}/bin/${browserName}" \ "$out/bin/${browserName}${nameSuffix}" \ --suffix-each MOZ_PLUGIN_PATH ':' "$plugins" \ - --suffix-each LD_LIBRARY_PATH ':' "$libs" \ + --suffix LD_LIBRARY_PATH ':' "$libs" \ --suffix-each GTK_PATH ':' "$gtk_modules" \ --suffix-each LD_PRELOAD ':' "$(cat $(filterExisting $(addSuffix /extra-ld-preload $plugins)))" \ --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" \ @@ -129,7 +129,7 @@ stdenv.mkDerivation { # Let each plugin tell us (through its `mozillaPlugin') attribute # where to find the plugin in its tree. plugins = map (x: x + x.mozillaPlugin) plugins; - libs = map (x: x + "/lib") libs ++ map (x: x + "/lib64") libs; + libs = lib.makeLibraryPath libs + ":" + lib.makeSearchPathOutputs "lib64" ["lib"] libs; gtk_modules = map (x: x + x.gtkModule) gtk_modules; passthru = { unwrapped = browser; }; From 28bd8ba1fa7f63098c126c671217146c6ab881a6 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 1 May 2016 12:37:47 +0300 Subject: [PATCH 192/337] enet: add platforms --- pkgs/development/libraries/enet/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/enet/default.nix b/pkgs/development/libraries/enet/default.nix index 0d5bd834787..4c3d67b8f31 100644 --- a/pkgs/development/libraries/enet/default.nix +++ b/pkgs/development/libraries/enet/default.nix @@ -13,5 +13,6 @@ stdenv.mkDerivation rec { description = "Simple and robust network communication layer on top of UDP"; license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; + platforms = stdenv.lib.platforms.linux; }; } From 37563c2d964ee0666b7525828d152b3f5e0e212e Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 1 May 2016 12:37:48 +0300 Subject: [PATCH 193/337] spidermonkey: add meta --- pkgs/development/interpreters/spidermonkey/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/interpreters/spidermonkey/default.nix b/pkgs/development/interpreters/spidermonkey/default.nix index b7744ea53c3..1ef0cf3b539 100644 --- a/pkgs/development/interpreters/spidermonkey/default.nix +++ b/pkgs/development/interpreters/spidermonkey/default.nix @@ -24,4 +24,11 @@ stdenv.mkDerivation rec { CFLAGS = "-DPIC -fPIC -DJS_C_STRINGS_ARE_UTF8"; makeFlags = "-f ${makefile} JS_DIST=\${out} BUILD_OPT=1 JS_READLINE=1"; + + meta = with stdenv.lib; { + description = "Mozilla's JavaScript engine written in C/C++"; + homepage = "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey"; + license = licenses.mpl20; + platforms = platforms.all; + }; } From 5508687ec21ad43baac96443728ccce527954ee7 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 1 May 2016 14:38:08 +0200 Subject: [PATCH 194/337] Remove now useless proprietary Copy.com client and service SaaS. --- .../modules/services/networking/copy-com.nix | 54 ---------------- .../networking/copy-com/default.nix | 62 ------------------- pkgs/top-level/all-packages.nix | 2 - 3 files changed, 118 deletions(-) delete mode 100644 nixos/modules/services/networking/copy-com.nix delete mode 100644 pkgs/applications/networking/copy-com/default.nix diff --git a/nixos/modules/services/networking/copy-com.nix b/nixos/modules/services/networking/copy-com.nix deleted file mode 100644 index ee0d043d471..00000000000 --- a/nixos/modules/services/networking/copy-com.nix +++ /dev/null @@ -1,54 +0,0 @@ -{ config, lib, pkgs, ... }: - -with lib; - -let - - cfg = config.services.copy-com; - -in - -{ - options = { - - services.copy-com = { - - enable = mkOption { - default = false; - description = " - Enable the Copy.com client. - NOTE: before enabling the client for the first time, it must be - configured by first running CopyConsole (command line) or CopyAgent - (graphical) as the appropriate user. - "; - }; - - user = mkOption { - description = "The user for which the Copy.com client should be run."; - }; - - debug = mkOption { - default = false; - description = "Output more (debugging) messages to the console."; - }; - }; - }; - - config = mkIf cfg.enable { - environment.systemPackages = [ pkgs.postfix ]; - - systemd.services."copy-com-${cfg.user}" = { - description = "Copy.com client"; - wants = [ "network-online.target" ]; - after = [ "network-online.target" "local-fs.target" ]; - wantedBy = [ "multi-user.target" ]; - serviceConfig = { - ExecStart = "${pkgs.copy-com}/bin/CopyConsole ${if cfg.debug then "-consoleOutput -debugToConsole=dirwatch,path-watch,csm_path,csm -debug -console" else ""}"; - User = "${cfg.user}"; - }; - - }; - }; - -} - diff --git a/pkgs/applications/networking/copy-com/default.nix b/pkgs/applications/networking/copy-com/default.nix deleted file mode 100644 index 21dc2373977..00000000000 --- a/pkgs/applications/networking/copy-com/default.nix +++ /dev/null @@ -1,62 +0,0 @@ -{ stdenv, fetchurl, patchelf, fontconfig, freetype -, gcc, glib, libICE, libSM, libX11, libXext, libXrender }: - -let - arch = if stdenv.system == "x86_64-linux" then "x86_64" - else if stdenv.system == "i686-linux" then "x86" - else if stdenv.system == "armv6-linux" then "armv6h" - else throw "Copy.com client for: ${stdenv.system} not supported!"; - - interpreter = if stdenv.system == "x86_64-linux" then "ld-linux-x86-64.so.2" - else if stdenv.system == "i686-linux" then "ld-linux.so.2" - else if stdenv.system == "armv6-linux" then "ld-linux.so.2" - else throw "Copy.com client for: ${stdenv.system} not supported!"; - - appdir = "opt/copy"; - - libPackages = [ fontconfig freetype gcc.cc glib libICE libSM libX11 libXext - libXrender ]; - libPaths = stdenv.lib.concatStringsSep ":" - (map (path: "${path}/lib") libPackages); - -in stdenv.mkDerivation { - - name = "copy-com-3.2.01.0481"; - - src = fetchurl { - # Note: copy.com doesn't version this file. Annoying. - url = "https://copy.com/install/linux/Copy.tgz"; - sha256 = "0bpphm71mqpaiygs57kwa23nli0qm64fvgl1qh7fkxyqqabh4g7k"; - }; - - nativeBuildInputs = [ patchelf ]; - - phases = "unpackPhase installPhase"; - - installPhase = '' - mkdir -p $out/opt - cp -r ${arch} "$out/${appdir}" - - mkdir -p "$out/bin" - for binary in Copy{Agent,Console,Cmd}; do - binary="$out/${appdir}/$binary" - ln -sv "$binary" "$out/bin" - patchelf --set-interpreter ${stdenv.glibc.out}/lib/${interpreter} "$binary" - done - - RPATH=${libPaths}:$out/${appdir} - echo "Updating rpaths to $RPATH in:" - find "$out/${appdir}" -type f -a -perm -0100 \ - -print -exec patchelf --force-rpath --set-rpath "$RPATH" {} \; - ''; - - meta = with stdenv.lib; { - homepage = http://copy.com; - description = "Copy.com graphical & command-line clients"; - # Closed Source unfortunately. - license = licenses.unfree; - maintainers = with maintainers; [ nathan-gs nckx ]; - # NOTE: Copy.com itself only works on linux, so this is ok. - platforms = platforms.linux; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5b391263b1f..0ebaa28cdfe 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13899,8 +13899,6 @@ in bittorrentSync14 = callPackage ../applications/networking/bittorrentsync/1.4.x.nix { }; bittorrentSync20 = callPackage ../applications/networking/bittorrentsync/2.0.x.nix { }; - copy-com = callPackage ../applications/networking/copy-com { }; - dropbox = qt55.callPackage ../applications/networking/dropbox { }; dropbox-cli = callPackage ../applications/networking/dropbox-cli { }; From 05f2ebe16d6fdbd159d6b25a8d0dfb30135638e1 Mon Sep 17 00:00:00 2001 From: Simon Vandel Sillesen Date: Thu, 28 Apr 2016 18:10:37 +0200 Subject: [PATCH 195/337] qBittorrent: fix qmake not found in qbittorrent build Thanks to @romildo for finding the configure fix. --- .../networking/p2p/qbittorrent/default.nix | 10 ++++++++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix index d0e938c1b30..ee03bfeedb0 100644 --- a/pkgs/applications/networking/p2p/qbittorrent/default.nix +++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, which -, boost, libtorrentRasterbar, qt5 +, boost, libtorrentRasterbar, qmakeHook, qt5 , debugSupport ? false # Debugging , guiSupport ? true, dbus_libs ? null # GUI (disable to run headless) , webuiSupport ? true # WebUI @@ -17,11 +17,17 @@ stdenv.mkDerivation rec { sha256 = "1f4impsjck8anl39pwypsck7j6xw0dl18qd0b4xi23r45jvx9l60"; }; - nativeBuildInputs = [ pkgconfig which ]; + nativeBuildInputs = [ pkgconfig which qmakeHook ]; buildInputs = [ boost libtorrentRasterbar qt5.qtbase qt5.qttools ] ++ optional guiSupport dbus_libs; + dontUseQmakeConfigure = true; + + preConfigure = '' + export QT_QMAKE="$qtOut/bin" + ''; + configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" "--with-boost=${boost.dev}" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1254917f08e..8ef5e4112ba 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13634,7 +13634,7 @@ in pythonmagick = callPackage ../applications/graphics/PythonMagick { }; - qbittorrent = callPackage ../applications/networking/p2p/qbittorrent { + qbittorrent = qt5.callPackage ../applications/networking/p2p/qbittorrent { boost = boost; libtorrentRasterbar = libtorrentRasterbar; }; From 60a7c607d155f7c4722ca6baefc267a007fe9b64 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sun, 1 May 2016 16:08:59 +0200 Subject: [PATCH 196/337] hol-light: fix build with camlp5-6.16 --- pkgs/applications/science/logic/hol_light/Makefile.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/science/logic/hol_light/Makefile.patch b/pkgs/applications/science/logic/hol_light/Makefile.patch index 2cb05f27a4f..b572001a75d 100644 --- a/pkgs/applications/science/logic/hol_light/Makefile.patch +++ b/pkgs/applications/science/logic/hol_light/Makefile.patch @@ -7,7 +7,7 @@ Index: Makefile else if test ${CAMLP5_VERSION} = "6.02.2" -o ${CAMLP5_VERSION} = "6.02.3" -o ${CAMLP5_VERSION} = "6.03" -o ${CAMLP5_VERSION} = "6.04" -o ${CAMLP5_VERSION} = "6.05" -o ${CAMLP5_VERSION} = "6.06" ; \ then cp pa_j_3.1x_6.02.2.ml pa_j.ml; \ - else if test ${CAMLP5_VERSION} = "6.06" -o ${CAMLP5_VERSION} = "6.07" -o ${CAMLP5_VERSION} = "6.08" -o ${CAMLP5_VERSION} = "6.09" -o ${CAMLP5_VERSION} = "6.10" -o ${CAMLP5_VERSION} = "6.11" -o ${CAMLP5_VERSION} = "6.12" ; \ -+ else if test ${CAMLP5_VERSION} = "6.06" -o ${CAMLP5_VERSION} = "6.07" -o ${CAMLP5_VERSION} = "6.08" -o ${CAMLP5_VERSION} = "6.09" -o ${CAMLP5_VERSION} = "6.10" -o ${CAMLP5_VERSION} = "6.11" -o ${CAMLP5_VERSION} = "6.12" -o ${CAMLP5_VERSION} = "6.13" -o ${CAMLP5_VERSION} = "6.14" ; \ ++ else if test ${CAMLP5_VERSION} = "6.06" -o ${CAMLP5_VERSION} = "6.07" -o ${CAMLP5_VERSION} = "6.08" -o ${CAMLP5_VERSION} = "6.09" -o ${CAMLP5_VERSION} = "6.10" -o ${CAMLP5_VERSION} = "6.11" -o ${CAMLP5_VERSION} = "6.12" -o ${CAMLP5_VERSION} = "6.13" -o ${CAMLP5_VERSION} = "6.14" -o ${CAMLP5_VERSION} = "6.16" ; \ then cp pa_j_3.1x_6.11.ml pa_j.ml; \ else cp pa_j_3.1x_${CAMLP5_BINARY_VERSION}.xx.ml pa_j.ml; \ fi \ From 3a6c85da65977c9f2a20fb40b18aaac8077e53b8 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 30 Apr 2016 16:18:19 +0200 Subject: [PATCH 197/337] camlp5: 6.14 -> 6.16 --- pkgs/development/tools/ocaml/camlp5/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/ocaml/camlp5/default.nix b/pkgs/development/tools/ocaml/camlp5/default.nix index 83dd74d321e..bb44bbc8d6e 100644 --- a/pkgs/development/tools/ocaml/camlp5/default.nix +++ b/pkgs/development/tools/ocaml/camlp5/default.nix @@ -7,11 +7,11 @@ in stdenv.mkDerivation { - name = "camlp5${if transitional then "_transitional" else ""}-6.14"; + name = "camlp5${if transitional then "_transitional" else ""}-6.16"; src = fetchurl { - url = http://camlp5.gforge.inria.fr/distrib/src/camlp5-6.14.tgz; - sha256 = "1ql04iyvclpyy9805kpddc4ndjb5d0qg4shhi2fc6bixi49fvy89"; + url = http://camlp5.gforge.inria.fr/distrib/src/camlp5-6.16.tgz; + sha256 = "1caqa2rl7rav7pfwv1l1j0j18yr1qzyyqz0wa9519x91ckznqi7x"; }; buildInputs = [ ocaml ]; From 3ba689ee2ea33afe71f0cd78070b3da506e5d50f Mon Sep 17 00:00:00 2001 From: Bob van der Linden Date: Sun, 1 May 2016 14:43:36 +0200 Subject: [PATCH 198/337] nwjs: use correct nwEnv and rpath This is related to changes in fontconfig, pango, dbus and stdc++. --- pkgs/development/tools/node-webkit/nw12.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/node-webkit/nw12.nix b/pkgs/development/tools/node-webkit/nw12.nix index 4cacc75d777..f0ede1e5237 100644 --- a/pkgs/development/tools/node-webkit/nw12.nix +++ b/pkgs/development/tools/node-webkit/nw12.nix @@ -11,10 +11,12 @@ let paths = [ xorg.libX11 xorg.libXrender glib gtk atk pango cairo gdk_pixbuf freetype fontconfig xorg.libXcomposite alsaLib xorg.libXdamage - xorg.libXext xorg.libXfixes nss nspr gconf expat dbus stdenv.cc + xorg.libXext xorg.libXfixes nss nspr gconf expat dbus xorg.libXtst xorg.libXi xorg.libXcursor xorg.libXrandr libcap libnotify ]; + + extraOutputsToInstall = [ "lib" "out" ]; }; in stdenv.mkDerivation rec { @@ -39,7 +41,7 @@ in stdenv.mkDerivation rec { ln -s ${libudev.out}/lib/libudev.so $out/share/nwjs/libudev.so.0 - patchelf --set-rpath "${nwEnv}/lib:${nwEnv}/lib64:$out/share/nwjs" $out/share/nwjs/nw + patchelf --set-rpath "${nwEnv}/lib:${nwEnv}/lib64:${stdenv.lib.makeLibraryPath [ stdenv.cc.cc ]}:$out/share/nwjs" $out/share/nwjs/nw patchelf --set-rpath "${nwEnv}/lib:${nwEnv}/lib64:$out/share/nwjs" $out/share/nwjs/nwjc mkdir -p $out/bin From 5dff3c4b68e163ae73a279b24fae77bb0c31ffad Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Sun, 1 May 2016 18:08:58 +0000 Subject: [PATCH 199/337] rpm: stop build from trying to create /var/tmp, which breaks in sandboxed builds --- pkgs/tools/package-management/rpm/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/package-management/rpm/default.nix b/pkgs/tools/package-management/rpm/default.nix index 6c2c9a350ad..d9cf24f6e51 100644 --- a/pkgs/tools/package-management/rpm/default.nix +++ b/pkgs/tools/package-management/rpm/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, libarchive, nspr, nss, popt, db, xz, python, lua, pkgconfig }: +{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, libarchive, nspr, nss, popt, db, xz, python, lua, pkgconfig, autoreconfHook }: stdenv.mkDerivation rec { name = "rpm-4.12.0"; @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "18hk47hc755nslvb7xkq4jb095z7va0nlcyxdpxayc4lmb8mq3bp"; }; - buildInputs = [ cpio zlib bzip2 file libarchive nspr nss db xz python lua pkgconfig ]; + buildInputs = [ cpio zlib bzip2 file libarchive nspr nss db xz python lua pkgconfig autoreconfHook ]; # rpm/rpmlib.h includes popt.h, and then the pkg-config file mentions these as linkage requirements propagatedBuildInputs = [ popt nss db bzip2 libarchive ]; @@ -22,6 +22,8 @@ stdenv.mkDerivation rec { postPatch = '' # For Python3, the original expression evaluates as 'python3.4' but we want 'python3.4m' here substituteInPlace configure --replace 'python''${PYTHON_VERSION}' ${python.executable} + + substituteInPlace Makefile.am --replace '@$(MKDIR_P) $(DESTDIR)$(localstatedir)/tmp' "" ''; configureFlags = "--with-external-db --with-lua --enable-python --localstatedir=/var --sharedstatedir=/com"; From 758e8bd1a1ae9a77a33f4168a778158446179e93 Mon Sep 17 00:00:00 2001 From: Raymond Gauthier Date: Fri, 29 Apr 2016 21:45:21 -0400 Subject: [PATCH 200/337] brscan4: init at 0.4.3-3 A sane backend for recent brother scanners. Depends on the presence of etc files generated by the nixos module of the same name. Supports network scanner specification through the nixos module. --- .../hardware/sane_extra_backends/brscan4.nix | 116 ++++++++++++ .../sane_extra_backends/brscan4_etc_files.nix | 71 ++++++++ .../sane/backends/brscan4/default.nix | 97 ++++++++++ .../graphics/sane/backends/brscan4/preload.c | 170 ++++++++++++++++++ .../backends/brscan4/udev_rules_type1.nix | 60 +++++++ pkgs/top-level/all-packages.nix | 2 + 6 files changed, 516 insertions(+) create mode 100644 nixos/modules/services/hardware/sane_extra_backends/brscan4.nix create mode 100644 nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix create mode 100644 pkgs/applications/graphics/sane/backends/brscan4/default.nix create mode 100644 pkgs/applications/graphics/sane/backends/brscan4/preload.c create mode 100644 pkgs/applications/graphics/sane/backends/brscan4/udev_rules_type1.nix diff --git a/nixos/modules/services/hardware/sane_extra_backends/brscan4.nix b/nixos/modules/services/hardware/sane_extra_backends/brscan4.nix new file mode 100644 index 00000000000..3ec74458cd2 --- /dev/null +++ b/nixos/modules/services/hardware/sane_extra_backends/brscan4.nix @@ -0,0 +1,116 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.hardware.sane.brscan4; + + netDeviceList = attrValues cfg.netDevices; + + etcFiles = pkgs.callPackage ./brscan4_etc_files.nix { netDevices = netDeviceList; }; + + netDeviceOpts = { name, config, ... }: { + + options = { + + name = mkOption { + type = types.str; + description = '' + The friendly name you give to the network device. If undefined, + the name of attribute will be used. + ''; + + example = literalExample "office1"; + }; + + model = mkOption { + type = types.str; + description = '' + The model of the network device. + ''; + + example = literalExample "MFC-7860DW"; + }; + + ip = mkOption { + type = with types; nullOr str; + default = null; + description = '' + The ip address of the device. If undefined, you will have to + provide a nodename. + ''; + + example = literalExample "192.168.1.2"; + }; + + nodename = mkOption { + type = with types; nullOr str; + default = null; + description = '' + The node name of the device. If undefined, you will have to + provide an ip. + ''; + + example = literalExample "BRW0080927AFBCE"; + }; + + }; + + + config = + { name = mkDefault name; + }; + }; + +in + +{ + options = { + + hardware.sane.brscan4.enable = + mkEnableOption "Brother's brscan4 scan backend" // { + description = '' + When enabled, will automatically register the "brscan4" sane + backend and bring configuration files to their expected location. + ''; + }; + + hardware.sane.brscan4.netDevices = mkOption { + default = {}; + example = + { office1 = { model = "MFC-7860DW"; ip = "192.168.1.2"; }; + office2 = { model = "MFC-7860DW"; nodename = "BRW0080927AFBCE"; }; + }; + type = types.loaOf types.optionSet; + description = '' + The list of network devices that will be registered against the brscan4 + sane backend. + ''; + options = [ netDeviceOpts ]; + }; + }; + + config = mkIf (config.hardware.sane.enable && cfg.enable) { + + hardware.sane.extraBackends = [ + pkgs.brscan4 + ]; + + environment.etc = singleton { + target = "opt/brother/scanner/brscan4"; + source = "${etcFiles}/etc/opt/brother/scanner/brscan4"; + }; + + assertions = [ + { assertion = all (x: !(null != x.ip && null != x.nodename)) netDeviceList; + + message = '' + When describing a network device as part of the attribute list + `hardware.sane.brscan4.netDevices`, only one of its `ip` or `nodename` + attribute should be specified, not both! + ''; + } + ]; + + }; +} \ No newline at end of file diff --git a/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix b/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix new file mode 100644 index 00000000000..bd114f0d2cc --- /dev/null +++ b/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix @@ -0,0 +1,71 @@ +{ stdenv, lib, brscan4, netDevices ? [] }: + +/* + +Testing +------- + +No net devices: + +~~~ +nix-shell -E 'with import { }; brscan4-etc-files' +~~~ + +Two net devices: + +~~~ +nix-shell -E 'with import { }; brscan4-etc-files.override{netDevices=[{name="a"; model="MFC-7860DW"; nodename="BRW0080927AFBCE";} {name="b"; model="MFC-7860DW"; ip="192.168.1.2";}];}' +~~~ + +*/ + +with lib; + +let + + addNetDev = nd: '' + brsaneconfig4 -a \ + name="${nd.name}" \ + model="${nd.model}" \ + ${if (hasAttr "nodename" nd && nd.nodename != null) then + ''nodename="${nd.nodename}"'' else + ''ip="${nd.ip}"''}''; + addAllNetDev = xs: concatStringsSep "\n" (map addNetDev xs); +in + +stdenv.mkDerivation rec { + + name = "brscan4-etc-files-0.4.3-3"; + src = "${brscan4}/opt/brother/scanner/brscan4"; + + nativeBuildInputs = [ brscan4 ]; + + configurePhase = ":"; + + buildPhase = '' + TARGET_DIR="$out/etc/opt/brother/scanner/brscan4" + mkdir -p "$TARGET_DIR" + cp -rp "./models4" "$TARGET_DIR" + cp -rp "./Brsane4.ini" "$TARGET_DIR" + cp -rp "./brsanenetdevice4.cfg" "$TARGET_DIR" + + export BRSANENETDEVICE4_CFG_FILENAME="$TARGET_DIR/brsanenetdevice4.cfg" + + printf '${addAllNetDev netDevices}\n' + + ${addAllNetDev netDevices} + ''; + + installPhase = ":"; + + dontStrip = true; + dontPatchELF = true; + + meta = { + description = "Brother brscan4 sane backend driver etc files"; + homepage = http://www.brother.com; + platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.unfree; + maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; + }; +} diff --git a/pkgs/applications/graphics/sane/backends/brscan4/default.nix b/pkgs/applications/graphics/sane/backends/brscan4/default.nix new file mode 100644 index 00000000000..7b22e88bb84 --- /dev/null +++ b/pkgs/applications/graphics/sane/backends/brscan4/default.nix @@ -0,0 +1,97 @@ +{ stdenv, fetchurl, callPackage, patchelf, makeWrapper, coreutils, libusb }: + +/* + + +*/ + +let + + myPatchElf = file: with stdenv.lib; '' + patchelf --set-interpreter \ + ${stdenv.glibc}/lib/ld-linux${optionalString stdenv.is64bit "-x86-64"}.so.2 \ + ${file} + ''; + + udevRules = callPackage ./udev_rules_type1.nix {}; + +in + +stdenv.mkDerivation rec { + + name = "brscan4-0.4.3-3"; + src = fetchurl { + url = "http://download.brother.com/welcome/dlf006645/${name}.amd64.deb"; + sha256 = "1nccyjl0b195pn6ya4q0zijb075q8r31v9z9a0hfzipfyvcj57n2"; + }; + + unpackPhase = '' + ar x $src + tar xfvz data.tar.gz + ''; + + nativeBuildInputs = [ makeWrapper patchelf coreutils udevRules ]; + buildInputs = [ libusb ]; + buildPhase = ":"; + + + patchPhase = '' + ${myPatchElf "opt/brother/scanner/brscan4/brsaneconfig4"} + + RPATH=${libusb}/lib + for a in usr/lib64/sane/*.so*; do + if ! test -L $a; then + patchelf --set-rpath $RPATH $a + fi + done + ''; + + installPhase = '' + + PATH_TO_BRSCAN4="opt/brother/scanner/brscan4" + mkdir -p $out/$PATH_TO_BRSCAN4 + cp -rp $PATH_TO_BRSCAN4/* $out/$PATH_TO_BRSCAN4 + mkdir -p $out/lib/sane + cp -rp usr/lib64/sane/* $out/lib/sane + + # Symbolic links were absolute. Fix them so that they point to $out. + pushd "$out/lib/sane" > /dev/null + for a in *.so*; do + if test -L $a; then + fixedTargetFileName="$(basename $(readlink $a))" + unlink "$a" + ln -s -T "$fixedTargetFileName" "$a" + fi + done + popd > /dev/null + + # Generate an LD_PRELOAD wrapper to redirect execvp(), open() and open64() + # calls to `/opt/brother/scanner/brscan4`. + preload=$out/libexec/brother/scanner/brscan4/libpreload.so + mkdir -p $(dirname $preload) + gcc -shared ${./preload.c} -o $preload -ldl -DOUT=\"$out\" -fPIC + + makeWrapper \ + "$out/$PATH_TO_BRSCAN4/brsaneconfig4" \ + "$out/bin/brsaneconfig4" \ + --set LD_PRELOAD $preload + + mkdir -p $out/etc/sane.d + echo "brother4" > $out/etc/sane.d/dll.conf + + mkdir -p $out/etc/udev/rules.d + cp -p ${udevRules}/etc/udev/rules.d/*.rules \ + $out/etc/udev/rules.d + ''; + + dontStrip = true; + dontPatchELF = true; + + meta = { + description = "Brother brscan4 sane backend driver"; + homepage = http://www.brother.com; + platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.unfree; + maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; + }; +} diff --git a/pkgs/applications/graphics/sane/backends/brscan4/preload.c b/pkgs/applications/graphics/sane/backends/brscan4/preload.c new file mode 100644 index 00000000000..01616277093 --- /dev/null +++ b/pkgs/applications/graphics/sane/backends/brscan4/preload.c @@ -0,0 +1,170 @@ +/* Brgen4 search for configuration under `/etc/opt/brother/scanner/brscan4`. This + LD_PRELOAD library intercepts execvp(), open and open64 calls to redirect them to + the corresponding location in $out. Also support specifying an alternate + file name for `brsanenetdevice4.cfg` which otherwise is invariable + created at `/etc/opt/brother/scanner/brscan4`*/ + +#define _GNU_SOURCE +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +char origDir [] = "/etc/opt/brother/scanner/brscan4"; +char realDir [] = OUT "/opt/brother/scanner/brscan4"; + +char devCfgFileNameEnvVar [] = "BRSANENETDEVICE4_CFG_FILENAME"; +char devCfgFileName [] = "/etc/opt/brother/scanner/brscan4//brsanenetdevice4.cfg"; + +const char * rewrite(const char * path, char * buf) +{ + if (strncmp(path, devCfgFileName, sizeof(devCfgFileName)) == 0) { + + const char* newCfgFileName = getenv(devCfgFileNameEnvVar); + if (!newCfgFileName) return path; + + if (snprintf(buf, PATH_MAX, "%s", newCfgFileName) >= PATH_MAX) + abort(); + return buf; + } + + if (strncmp(path, origDir, sizeof(origDir) - 1) != 0) return path; + if (snprintf(buf, PATH_MAX, "%s%s", realDir, path + sizeof(origDir) - 1) >= PATH_MAX) + abort(); + return buf; +} + +const char* findAndReplaceFirstOccurence(const char* inStr, const char* subStr, + const char* replaceStr, + char* buf, unsigned maxBuf) +{ + const char* foundStr = strstr(inStr, subStr); + if (!foundStr) + return inStr; + + const unsigned inStrLen = strlen(inStr); + const unsigned subStrLen = strlen(subStr); + const unsigned replaceStrLen = strlen(replaceStr); + + const unsigned precedingStrLen = foundStr - inStr; + if (precedingStrLen + 1 > maxBuf) + return NULL; + + const unsigned followingStrPos = precedingStrLen + subStrLen; + const unsigned followingStrLen = inStrLen - followingStrPos; + + strncpy(buf, inStr, precedingStrLen); + unsigned outLength = precedingStrLen; + + if (outLength + replaceStrLen + 1 > maxBuf) + return NULL; + + strncpy(buf + outLength, replaceStr, replaceStrLen); + outLength += replaceStrLen; + + if (outLength + followingStrLen + 1 > maxBuf) + return NULL; + + strncpy(buf + outLength, inStr + followingStrPos, followingStrLen); + outLength += followingStrLen; + + buf[outLength] = '\0'; + + return buf; +} + +const char* rewriteSystemCall(const char* command, char* buf, unsigned maxBuf) +{ + + const char* foundStr = strstr(command, devCfgFileName); + if (!foundStr) + return command; + + const char* replaceStr = getenv(devCfgFileNameEnvVar); + if (!replaceStr) return command; + + const char* result = + findAndReplaceFirstOccurence(command, devCfgFileName, replaceStr, buf, maxBuf); + + if (!result) + abort(); + + return result; +} + +int execvp(const char * path, char * const argv[]) +{ + int (*_execvp) (const char *, char * const argv[]) = dlsym(RTLD_NEXT, "execvp"); + char buf[PATH_MAX]; + return _execvp(rewrite(path, buf), argv); +} + + +int open(const char *path, int flags, ...) +{ + char buf[PATH_MAX]; + int (*_open) (const char *, int, mode_t) = dlsym(RTLD_NEXT, "open"); + mode_t mode = 0; + if (flags & O_CREAT) { + va_list ap; + va_start(ap, flags); + mode = va_arg(ap, mode_t); + va_end(ap); + } + return _open(rewrite(path, buf), flags, mode); +} + +int open64(const char *path, int flags, ...) +{ + char buf[PATH_MAX]; + int (*_open64) (const char *, int, mode_t) = dlsym(RTLD_NEXT, "open64"); + mode_t mode = 0; + if (flags & O_CREAT) { + va_list ap; + va_start(ap, flags); + mode = va_arg(ap, mode_t); + va_end(ap); + } + return _open64(rewrite(path, buf), flags, mode); +} + +FILE* fopen(const char* path, const char* mode) +{ + char buf[PATH_MAX]; + FILE* (*_fopen) (const char*, const char*) = dlsym(RTLD_NEXT, "fopen"); + + return _fopen(rewrite(path, buf), mode); +} + +FILE *fopen64(const char *path, const char *mode) +{ + char buf[PATH_MAX]; + FILE* (*_fopen64) (const char*, const char*) = dlsym(RTLD_NEXT, "fopen64"); + + return _fopen64(rewrite(path, buf), mode); +} + +DIR* opendir(const char* path) +{ + char buf[PATH_MAX]; + DIR* (*_opendir) (const char*) = dlsym(RTLD_NEXT, "opendir"); + + return _opendir(rewrite(path, buf)); +} + +#define SYSTEM_CMD_MAX 512 + +int system(const char *command) +{ + char buf[SYSTEM_CMD_MAX]; + int (*_system) (const char*) = dlsym(RTLD_NEXT, "system"); + + const char* newCommand = rewriteSystemCall(command, buf, SYSTEM_CMD_MAX); + return _system(newCommand); +} diff --git a/pkgs/applications/graphics/sane/backends/brscan4/udev_rules_type1.nix b/pkgs/applications/graphics/sane/backends/brscan4/udev_rules_type1.nix new file mode 100644 index 00000000000..873240e81fc --- /dev/null +++ b/pkgs/applications/graphics/sane/backends/brscan4/udev_rules_type1.nix @@ -0,0 +1,60 @@ +{ stdenv, fetchurl, libsaneUDevRuleNumber ? "49"}: + + +stdenv.mkDerivation rec { + + name = "brother-udev-rule-type1-1.0.0-1"; + + src = fetchurl { + url = "http://download.brother.com/welcome/dlf006654/${name}.all.deb"; + sha256 = "0i0x5jw135pli4jl9mgnr5n2rrdvml57nw84yq2999r4frza53xi"; + }; + + buildInputs = [ ]; + + unpackPhase = '' + ar x $src + tar xfvz data.tar.gz + ''; + + /* + Fix the following error: + + ~~~ + invalid rule 49-brother-libsane-type1.rules + unknown key 'SYSFS{idVendor}' + ~~~ + + Apparently the udev rules syntax has change and the SYSFS key has to + be changed to ATTR. + + See: + + - + - + */ + patchPhase = '' + sed -i -e s/SYSFS/ATTR/g opt/brother/scanner/udev-rules/type1/*.rules + ''; + + + buildPhase = ":"; + + installPhase = '' + mkdir -p $out/etc/udev/rules.d + cp opt/brother/scanner/udev-rules/type1/NN-brother-mfp-type1.rules \ + $out/etc/udev/rules.d/${libsaneUDevRuleNumber}-brother-libsane-type1.rules + chmod 644 $out/etc/udev/rules.d/${libsaneUDevRuleNumber}-brother-libsane-type1.rules + ''; + + dontStrip = true; + dontPatchELF = true; + + meta = { + description = "Brother type1 scanners udev rules"; + homepage = http://www.brother.com; + platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.unfree; + maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; + }; +} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 586248d04ee..2b922f330bd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16436,6 +16436,8 @@ in snapscanFirmware = config.sane.snapscanFirmware or null; }; + brscan4 = callPackage ../applications/graphics/sane/backends/brscan4 { }; + mkSaneConfig = callPackage ../applications/graphics/sane/config.nix { }; sane-frontends = callPackage ../applications/graphics/sane/frontends.nix { }; From a7c5b1d1107be639febb809957a30cc843832262 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 1 May 2016 20:46:09 +0200 Subject: [PATCH 201/337] buku: 1.8 -> 1.9 --- pkgs/applications/misc/buku/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/buku/default.nix b/pkgs/applications/misc/buku/default.nix index ccebb8bfc11..79b4e787eaa 100644 --- a/pkgs/applications/misc/buku/default.nix +++ b/pkgs/applications/misc/buku/default.nix @@ -3,14 +3,14 @@ }: pythonPackages.buildPythonApplication rec { - version = "1.8"; + version = "1.9"; name = "buku-${version}"; src = fetchFromGitHub { owner = "jarun"; repo = "buku"; - rev = "53d48ee56a3abfb53b94ed25fb620ee759141c96"; - sha256 = "185d3gndw20c3l6f3mf0iq4qapm8g30bl0hn0wsqpp36vl0bpq28"; + rev = "e99844876d0d871df80770b1bd76c161276116eb"; + sha256 = "1qwkff61gdjd6w337a5ipfiybzqdwkxdyfa1l4zzm9dj7lsklgq2"; }; buildInputs = stdenv.lib.optional encryptionSupport pythonPackages.pycrypto; From 1249a4d7507334130dbcba40db5195145bcb1829 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 1 May 2016 20:58:14 +0200 Subject: [PATCH 202/337] securefs: init at 0.3.1 Caveat, as always with such things, emptor. --- pkgs/tools/filesystems/securefs/default.nix | 42 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 44 insertions(+) create mode 100644 pkgs/tools/filesystems/securefs/default.nix diff --git a/pkgs/tools/filesystems/securefs/default.nix b/pkgs/tools/filesystems/securefs/default.nix new file mode 100644 index 00000000000..8e483853672 --- /dev/null +++ b/pkgs/tools/filesystems/securefs/default.nix @@ -0,0 +1,42 @@ +{ stdenv, fetchFromGitHub +, fuse }: + +stdenv.mkDerivation rec { + name = "securefs-${version}"; + version = "0.3.1"; + + src = fetchFromGitHub { + sha256 = "1n9kgrvc600lfclrk8cj2zy8md1brqhs8kvzdwfxgxavdh0wakkc"; + rev = version; + repo = "securefs"; + owner = "netheril96"; + }; + + buildInputs = [ fuse ]; + + enableParallelBuilding = true; + + doCheck = false; # tests require the fuse module to be loaded + + installPhase = '' + install -D -m0755 {.,$out/bin}/securefs + ''; + + meta = with stdenv.lib; { + inherit (src.meta) homepage; + description = "Transparent encryption filesystem"; + longDescription = '' + Securefs is a filesystem in userspace (FUSE) that transparently encrypts + and authenticates data stored. It is particularly designed to secure + data stored in the cloud. + Securefs mounts a regular directory onto a mount point. The mount point + appears as a regular filesystem, where one can read/write/create files, + directories and symbolic links. The underlying directory will be + automatically updated to contain the encrypted and authenticated + contents. + ''; + license = with licenses; [ bsd2 mit ]; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7ac11c62561..dda7e5ce9af 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3191,6 +3191,8 @@ in seccure = callPackage ../tools/security/seccure { }; + securefs = callPackage ../tools/filesystems/securefs { }; + setroot = callPackage ../tools/X11/setroot { }; setserial = callPackage ../tools/system/setserial { }; From 0a04f7a870e4a7e538387b4f8d0a79f9ebe76cb8 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 1 May 2016 21:23:03 +0200 Subject: [PATCH 203/337] torbrowser: fix paths to pluggable transports With this patch I'm at least able to connect using the obfs4 transport --- pkgs/tools/security/tor/torbrowser.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index 11988d9435f..c8f9c3dae97 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -34,6 +34,8 @@ stdenv.mkDerivation rec { patchPhase = '' patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" Browser/firefox patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" Browser/TorBrowser/Tor/tor + + sed -e "s,./TorBrowser,$out/share/tor-browser/Browser/TorBrowser,g" -i Browser/TorBrowser/Data/Tor/torrc-defaults ''; doCheck = true; From 966a790764e46274806c3e24b91f18cf0226d035 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sun, 1 May 2016 20:12:49 +0000 Subject: [PATCH 204/337] nixpkgs: chez scheme update Remove the parallel build[1], and update to the latest commit which updates the .boot files and fixes a few bugs, too. [1] I figured many builds on my dual-socket 12core would expose problems, but I have a suspicion of that being an issue. Signed-off-by: Austin Seipp --- pkgs/development/compilers/chez/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/chez/default.nix b/pkgs/development/compilers/chez/default.nix index f9e0627f8aa..da60ffbb67a 100644 --- a/pkgs/development/compilers/chez/default.nix +++ b/pkgs/development/compilers/chez/default.nix @@ -3,16 +3,15 @@ stdenv.mkDerivation rec { name = "chez-scheme-${version}"; version = "9.4-${dver}"; - dver = "20160430"; + dver = "20160501"; src = fetchgit { - url = "https://github.com/cisco/ChezScheme.git"; - rev = "63a97939896c2a89fcffdf16c8b783efaeb816b5"; - sha256 = "1c58xjslgn7xnfy9j5p9b6sn0wzv2mk7zlmhflydzil7iimchjsi"; + url = "https://github.com/cisco/chezscheme.git"; + rev = "8343b7172532a00d2d19914206fcf83c93798c80"; + sha256 = "1jq55sdk468lckccfnqh0iv868bhw6yb9ba9bakqg2pfydb8r4qf"; fetchSubmodules = true; }; - enableParallelBuilding = true; buildInputs = [ ncurses libX11 ]; /* Chez uses a strange default search path, which completely From d9ad7d529d43c6b6c9f45e913b0408e992d7dfa3 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sun, 1 May 2016 20:17:56 +0000 Subject: [PATCH 205/337] nixpkgs: remove unused hiphopvm/hhvm alias Signed-off-by: Austin Seipp --- pkgs/top-level/all-packages.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dda7e5ce9af..8a1a4fe82f4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4373,7 +4373,6 @@ in hxcpp = callPackage ../development/compilers/haxe/hxcpp.nix { }; hhvm = callPackage ../development/compilers/hhvm { }; - hiphopvm = self.hhvm; /* Compatibility alias */ hop = callPackage ../development/compilers/hop { }; From 452867d149655af77a2bd3c1f5cb63f8425e7155 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 1 May 2016 23:33:13 +0200 Subject: [PATCH 206/337] perl-CryptX: 0.030 -> 0.031 --- 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 7a608ccd8ed..05f2425df57 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2661,10 +2661,10 @@ let self = _self // overrides; _self = with self; { }; CryptX = buildPerlPackage rec { - name = "CryptX-0.030"; + name = "CryptX-0.031"; src = fetchurl { url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz"; - sha256 = "b0e26b4c4de66134f1f1ae4227fdd18cf10f95cecc64a651a8af2710ef7519e5"; + sha256 = "7221a7a824ae07377f7e97c6daafff47524c46204c9b8ff58420a13fc2c104f1"; }; propagatedBuildInputs = [ JSONMaybeXS ]; meta = { From 1612bb412346af7a83935ee0600e62b017c70645 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 1 May 2016 23:33:48 +0200 Subject: [PATCH 207/337] perl-File-Util: 4.132140 -> 4.161200 --- pkgs/top-level/perl-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 05f2425df57..d39dcbbf21f 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5242,12 +5242,12 @@ let self = _self // overrides; _self = with self; { }; FileUtil = buildPerlPackage rec { - name = "File-Util-4.132140"; + name = "File-Util-4.161200"; src = fetchurl { url = "mirror://cpan/authors/id/T/TO/TOMMY/${name}.tar.gz"; - sha256 = "4233c493468da8b34f2df19b191aaa400f328d877c8c023605e43385976a99d1"; + sha256 = "c63be030c15303796d387b290f1f6b59451fb64827e39afeb0e1d0adad72ab8e"; }; - buildInputs = [ TestFatal TestNoWarnings ]; + buildInputs = [ ModuleBuild TestNoWarnings ]; meta = { homepage = https://github.com/tommybutler/file-util/wiki; description = "Easy, versatile, portable file handling"; From 216b04b2470d18d1f9371ff243c967409f76d1ed Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 1 May 2016 23:34:10 +0200 Subject: [PATCH 208/337] perl-Log-Dispatchouli: 2.009 -> 2.012 --- pkgs/top-level/perl-packages.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index d39dcbbf21f..9317cc727cf 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -7144,16 +7144,16 @@ let self = _self // overrides; _self = with self; { }; }; - LogDispatchouli = buildPerlPackage { - name = "Log-Dispatchouli-2.009"; + LogDispatchouli = buildPerlPackage rec { + name = "Log-Dispatchouli-2.012"; src = fetchurl { - url = mirror://cpan/authors/id/R/RJ/RJBS/Log-Dispatchouli-2.009.tar.gz; - sha256 = "09iw27r36gmljlm6gjfczn2sf4s1js697q8na8xw4wlnz7x4bv59"; + url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; + sha256 = "214eca0fe77f2dc74675f9aa542778d5d4618c5bf12283540ca1062fcb967fa0"; }; buildInputs = [ TestDeep TestFatal ]; propagatedBuildInputs = [ LogDispatch LogDispatchArray ParamsUtil StringFlogger SubExporter SubExporterGlobExporter TryTiny ]; meta = { - homepage = https://github.com/rjbs/log-dispatchouli; + homepage = https://github.com/rjbs/Log-Dispatchouli; description = "A simple wrapper around Log::Dispatch"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; From 97e5e01463ebd8eff3154e7837fbed269849ff63 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 1 May 2016 23:34:46 +0200 Subject: [PATCH 209/337] perl-Math-BigInt: 1.999718 -> 1.999722 --- 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 9317cc727cf..c01d2b7e268 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -7355,10 +7355,10 @@ let self = _self // overrides; _self = with self; { }; MathBigInt = buildPerlPackage rec { - name = "Math-BigInt-1.999718"; + name = "Math-BigInt-1.999722"; src = fetchurl { url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz"; - sha256 = "3edb44123d6c03a4031057f449b41a0d05ebc48d25ad64b08a5fe2f4ae2ac240"; + sha256 = "c76a2d5e6a996186a42a7e516b8d82217fb0cd18c7e1e55241322c4a859ccf40"; }; meta = { description = "Arbitrary size integer/float math package"; From 196c4221868a94df30d09605d6bff4faeb47536a Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 1 May 2016 23:34:59 +0200 Subject: [PATCH 210/337] perl-Math-BigRat: 0.260803 -> 0.260804 --- 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 c01d2b7e268..3a70e6cd05d 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -7380,10 +7380,10 @@ let self = _self // overrides; _self = with self; { }; MathBigRat = buildPerlPackage rec { - name = "Math-BigRat-0.260803"; + name = "Math-BigRat-0.260804"; src = fetchurl { url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz"; - sha256 = "0558fab8ffe0de8751ccfa3bd129d6f34b82cf75454de82b051d4ddffd4ec99b"; + sha256 = "f9bf5c007c0f141df7c7887d3482d47033cf7deab094a01e2863f31bacd7ef8a"; }; propagatedBuildInputs = [ MathBigInt ]; meta = { From 50a8d9a6f4861fc2e1ef5745f1e92b8868982d36 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 1 May 2016 23:35:20 +0200 Subject: [PATCH 211/337] perl-Pod-Elemental-PerlMunger: 0.200005 -> 0.200006 --- 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 3a70e6cd05d..cabf9a88018 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -10055,10 +10055,10 @@ let self = _self // overrides; _self = with self; { }; PodElementalPerlMunger = buildPerlPackage rec { - name = "Pod-Elemental-PerlMunger-0.200005"; + name = "Pod-Elemental-PerlMunger-0.200006"; src = fetchurl { url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; - sha256 = "35146bdcf0d3ac271f9ba2a4d4611b98373215c43de43dd4f012f46c44004d57"; + sha256 = "09fd3b5d53119437a01dced66b42eafdcd53895b3c32a2b0f781f36fda0f665b"; }; buildInputs = [ Moose PodElemental ]; propagatedBuildInputs = [ Moose PPI PodElemental namespaceautoclean ]; From ef44e78849a6ae39b1f18f0e7034470e5debff5f Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 1 May 2016 23:35:35 +0200 Subject: [PATCH 212/337] perl-Pod-Weaver: 4.012 -> 4.013 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index cabf9a88018..05ed6d87e4b 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -10242,15 +10242,15 @@ let self = _self // overrides; _self = with self; { }; PodWeaver = buildPerlPackage rec { - name = "Pod-Weaver-4.012"; + name = "Pod-Weaver-4.013"; src = fetchurl { url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; - sha256 = "d801cbfaff22d418943d0c5dcb8c145b8cc4d56741f9c33923ef891241116ad6"; + sha256 = "5f12c5f11d313294520b0a1ab5c0775ef56e222d9181c8dac520cdc77af309e0"; }; buildInputs = [ PPI SoftwareLicense TestDifferences ]; - propagatedBuildInputs = [ ConfigMVP ConfigMVPReaderINI DateTime ListMoreUtils LogDispatchouli MixinLinewise ModuleRuntime Moose ParamsUtil PodElemental StringFlogger StringFormatter StringRewritePrefix namespaceautoclean ]; + propagatedBuildInputs = [ ConfigMVP ConfigMVPReaderINI DateTime ListMoreUtils LogDispatchouli MixinLinewise Moose PodElemental StringFlogger StringFormatter StringRewritePrefix namespaceautoclean ]; meta = { - homepage = https://github.com/rjbs/pod-weaver; + homepage = https://github.com/rjbs/Pod-Weaver; description = "Weave together a Pod document from an outline"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; maintainers = [ maintainers.rycee ]; From 36c4c73575837e1fc87cdee5a793000fb1af7d24 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Mon, 2 May 2016 00:55:08 +0300 Subject: [PATCH 213/337] clang: Add compat `lib` attribute to have `stdenv.cc.cc.lib` always work Fixes tarball evaluation: http://hydra.nixos.org/build/35042997/nixlog/1/raw --- .../compilers/llvm/3.6/clang/default.nix | 86 ++++++++++--------- .../compilers/llvm/3.7/clang/default.nix | 86 ++++++++++--------- .../compilers/llvm/3.8/clang/default.nix | 86 ++++++++++--------- 3 files changed, 132 insertions(+), 126 deletions(-) diff --git a/pkgs/development/compilers/llvm/3.6/clang/default.nix b/pkgs/development/compilers/llvm/3.6/clang/default.nix index 2827e073903..ff0f34391af 100644 --- a/pkgs/development/compilers/llvm/3.6/clang/default.nix +++ b/pkgs/development/compilers/llvm/3.6/clang/default.nix @@ -2,54 +2,56 @@ let gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc; -in stdenv.mkDerivation { - name = "clang-${version}"; + self = stdenv.mkDerivation { + name = "clang-${version}"; - unpackPhase = '' - unpackFile ${fetch "cfe" "1wwr8s6lzr324hv4s1k6na4j5zv6n9kdhi14s4kb9b13d93814df"} - mv cfe-${version}.src clang - sourceRoot=$PWD/clang - unpackFile ${clang-tools-extra_src} - mv clang-tools-extra-* $sourceRoot/tools/extra - ''; + unpackPhase = '' + unpackFile ${fetch "cfe" "1wwr8s6lzr324hv4s1k6na4j5zv6n9kdhi14s4kb9b13d93814df"} + mv cfe-${version}.src clang + sourceRoot=$PWD/clang + unpackFile ${clang-tools-extra_src} + mv clang-tools-extra-* $sourceRoot/tools/extra + ''; - buildInputs = [ cmake libedit libxml2 llvm ]; + buildInputs = [ cmake libedit libxml2 llvm ]; - cmakeFlags = [ - "-DCMAKE_BUILD_TYPE=Release" - "-DCMAKE_CXX_FLAGS=-std=c++11" - ] ++ - # Maybe with compiler-rt this won't be needed? - (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ - (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); + cmakeFlags = [ + "-DCMAKE_BUILD_TYPE=Release" + "-DCMAKE_CXX_FLAGS=-std=c++11" + ] ++ + # Maybe with compiler-rt this won't be needed? + (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ + (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); - patches = [ ./purity.patch ./cmake-exports.patch ]; + patches = [ ./purity.patch ./cmake-exports.patch ]; - postPatch = '' - sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp - sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp - ''; + postPatch = '' + sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp + sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp + ''; - # Clang expects to find LLVMgold in its own prefix - # Clang expects to find sanitizer libraries in its own prefix - postInstall = '' - ln -sv ${llvm}/lib/LLVMgold.so $out/lib - ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ - ln -sv $out/bin/clang $out/bin/cpp - ''; + # Clang expects to find LLVMgold in its own prefix + # Clang expects to find sanitizer libraries in its own prefix + postInstall = '' + ln -sv ${llvm}/lib/LLVMgold.so $out/lib + ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ + ln -sv $out/bin/clang $out/bin/cpp + ''; - enableParallelBuilding = true; + enableParallelBuilding = true; - passthru = { - isClang = true; - } // stdenv.lib.optionalAttrs stdenv.isLinux { - inherit gcc; + passthru = { + lib = self; # compatibility with gcc, so that `stdenv.cc.cc.lib` works on both + isClang = true; + } // stdenv.lib.optionalAttrs stdenv.isLinux { + inherit gcc; + }; + + meta = { + description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; + homepage = http://llvm.org/; + license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; + }; }; - - meta = { - description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; - homepage = http://llvm.org/; - license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.platforms.all; - }; -} +in self diff --git a/pkgs/development/compilers/llvm/3.7/clang/default.nix b/pkgs/development/compilers/llvm/3.7/clang/default.nix index e6369b1167e..aa71bb68553 100644 --- a/pkgs/development/compilers/llvm/3.7/clang/default.nix +++ b/pkgs/development/compilers/llvm/3.7/clang/default.nix @@ -2,54 +2,56 @@ let gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc; -in stdenv.mkDerivation { - name = "clang-${version}"; + self = stdenv.mkDerivation { + name = "clang-${version}"; - unpackPhase = '' - unpackFile ${fetch "cfe" "0x065d0w9b51xvdjxwfzjxng0gzpbx45fgiaxpap45ragi61dqjn"} - mv cfe-${version}.src clang - sourceRoot=$PWD/clang - unpackFile ${clang-tools-extra_src} - mv clang-tools-extra-* $sourceRoot/tools/extra - ''; + unpackPhase = '' + unpackFile ${fetch "cfe" "0x065d0w9b51xvdjxwfzjxng0gzpbx45fgiaxpap45ragi61dqjn"} + mv cfe-${version}.src clang + sourceRoot=$PWD/clang + unpackFile ${clang-tools-extra_src} + mv clang-tools-extra-* $sourceRoot/tools/extra + ''; - buildInputs = [ cmake libedit libxml2 llvm ]; + buildInputs = [ cmake libedit libxml2 llvm ]; - cmakeFlags = [ - "-DCMAKE_BUILD_TYPE=Release" - "-DCMAKE_CXX_FLAGS=-std=c++11" - ] ++ - # Maybe with compiler-rt this won't be needed? - (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ - (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); + cmakeFlags = [ + "-DCMAKE_BUILD_TYPE=Release" + "-DCMAKE_CXX_FLAGS=-std=c++11" + ] ++ + # Maybe with compiler-rt this won't be needed? + (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ + (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); - patches = [ ./purity.patch ]; + patches = [ ./purity.patch ]; - postPatch = '' - sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp - sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp - ''; + postPatch = '' + sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp + sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp + ''; - # Clang expects to find LLVMgold in its own prefix - # Clang expects to find sanitizer libraries in its own prefix - postInstall = '' - ln -sv ${llvm}/lib/LLVMgold.so $out/lib - ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ - ln -sv $out/bin/clang $out/bin/cpp - ''; + # Clang expects to find LLVMgold in its own prefix + # Clang expects to find sanitizer libraries in its own prefix + postInstall = '' + ln -sv ${llvm}/lib/LLVMgold.so $out/lib + ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ + ln -sv $out/bin/clang $out/bin/cpp + ''; - enableParallelBuilding = true; + enableParallelBuilding = true; - passthru = { - isClang = true; - } // stdenv.lib.optionalAttrs stdenv.isLinux { - inherit gcc; + passthru = { + lib = self; # compatibility with gcc, so that `stdenv.cc.cc.lib` works on both + isClang = true; + } // stdenv.lib.optionalAttrs stdenv.isLinux { + inherit gcc; + }; + + meta = { + description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; + homepage = http://llvm.org/; + license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; + }; }; - - meta = { - description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; - homepage = http://llvm.org/; - license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.platforms.all; - }; -} +in self diff --git a/pkgs/development/compilers/llvm/3.8/clang/default.nix b/pkgs/development/compilers/llvm/3.8/clang/default.nix index 047f87c92a9..71420d4cdcc 100644 --- a/pkgs/development/compilers/llvm/3.8/clang/default.nix +++ b/pkgs/development/compilers/llvm/3.8/clang/default.nix @@ -2,54 +2,56 @@ let gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc; -in stdenv.mkDerivation { - name = "clang-${version}"; + self = stdenv.mkDerivation { + name = "clang-${version}"; - unpackPhase = '' - unpackFile ${fetch "cfe" "1ybcac8hlr9vl3wg8s4v6cp0c0qgqnwprsv85lihbkq3vqv94504"} - mv cfe-${version}.src clang - sourceRoot=$PWD/clang - unpackFile ${clang-tools-extra_src} - mv clang-tools-extra-* $sourceRoot/tools/extra - ''; + unpackPhase = '' + unpackFile ${fetch "cfe" "1ybcac8hlr9vl3wg8s4v6cp0c0qgqnwprsv85lihbkq3vqv94504"} + mv cfe-${version}.src clang + sourceRoot=$PWD/clang + unpackFile ${clang-tools-extra_src} + mv clang-tools-extra-* $sourceRoot/tools/extra + ''; - buildInputs = [ cmake libedit libxml2 llvm python ]; + buildInputs = [ cmake libedit libxml2 llvm python ]; - cmakeFlags = [ - "-DCMAKE_BUILD_TYPE=Release" - "-DCMAKE_CXX_FLAGS=-std=c++11" - ] ++ - # Maybe with compiler-rt this won't be needed? - (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ - (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); + cmakeFlags = [ + "-DCMAKE_BUILD_TYPE=Release" + "-DCMAKE_CXX_FLAGS=-std=c++11" + ] ++ + # Maybe with compiler-rt this won't be needed? + (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ + (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); - patches = [ ./purity.patch ]; + patches = [ ./purity.patch ]; - postPatch = '' - sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp - sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp - ''; + postPatch = '' + sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp + sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp + ''; - # Clang expects to find LLVMgold in its own prefix - # Clang expects to find sanitizer libraries in its own prefix - postInstall = '' - ln -sv ${llvm}/lib/LLVMgold.so $out/lib - ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ - ln -sv $out/bin/clang $out/bin/cpp - ''; + # Clang expects to find LLVMgold in its own prefix + # Clang expects to find sanitizer libraries in its own prefix + postInstall = '' + ln -sv ${llvm}/lib/LLVMgold.so $out/lib + ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ + ln -sv $out/bin/clang $out/bin/cpp + ''; - enableParallelBuilding = true; + enableParallelBuilding = true; - passthru = { - isClang = true; - } // stdenv.lib.optionalAttrs stdenv.isLinux { - inherit gcc; + passthru = { + lib = self; # compatibility with gcc, so that `stdenv.cc.cc.lib` works on both + isClang = true; + } // stdenv.lib.optionalAttrs stdenv.isLinux { + inherit gcc; + }; + + meta = { + description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; + homepage = http://llvm.org/; + license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; + }; }; - - meta = { - description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; - homepage = http://llvm.org/; - license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.platforms.all; - }; -} +in self From d19841c46fbd4ffd796510a5e28362937c3a9457 Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Sun, 10 Apr 2016 23:46:40 -0300 Subject: [PATCH 214/337] openra: 20141029 -> 20151224 --- pkgs/games/openra/default.nix | 63 +++++++++++++++++++++++++++++++---- 1 file changed, 56 insertions(+), 7 deletions(-) diff --git a/pkgs/games/openra/default.nix b/pkgs/games/openra/default.nix index c79c0680410..071b200a72e 100644 --- a/pkgs/games/openra/default.nix +++ b/pkgs/games/openra/default.nix @@ -1,9 +1,10 @@ { stdenv, fetchurl, mono, makeWrapper, lua -, SDL2, freetype, openal, systemd, pkgconfig +, SDL2, freetype, openal, systemd, pkgconfig, + dotnetPackages, gnome3 }: let - version = "20141029"; + version = "20151224"; in stdenv.mkDerivation rec { name = "openra-${version}"; @@ -17,17 +18,20 @@ in stdenv.mkDerivation rec { src = fetchurl { name = "${name}.tar.gz"; url = "https://github.com/OpenRA/OpenRA/archive/release-${version}.tar.gz"; - sha256 = "082rwcy866k636s4qhbry3ja2p81mdz58bh1dw2mic5mv2q6p67r"; + sha256 = "0dgaxy1my5r3sr3l3gw79v89dsc7179pasj2bibswlv03wsjgqbi"; }; dontStrip = true; - buildInputs = [ lua ]; + buildInputs = with dotnetPackages; + [ NUnit NewtonsoftJson MonoNat FuzzyLogicLibrary SmartIrc4net SharpZipLib MaxMindGeoIP2 MaxMindDb SharpFont StyleCopMSBuild StyleCopPlusMSBuild RestSharp ] + ++ [ lua gnome3.zenity ]; nativeBuildInputs = [ mono makeWrapper lua pkgconfig ]; patchPhase = '' sed -i 's/^VERSION.*/VERSION = release-${version}/g' Makefile - substituteInPlace configure --replace /bin/bash "$shell" --replace /usr/local/lib "${lua}/lib" + substituteInPlace thirdparty/configure-native-deps.sh --replace "locations=\"" "locations=\"${lua}/lib " + substituteInPlace Makefile --replace "@./thirdparty/fetch-geoip-db.sh" "" ''; preConfigure = '' @@ -35,6 +39,51 @@ in stdenv.mkDerivation rec { make version ''; + preBuild = let dotnetPackagesDlls = with dotnetPackages; [ + "${MonoNat}/lib/dotnet/Mono.Nat/net40/Mono.Nat.dll" + "${FuzzyLogicLibrary}/lib/dotnet/FuzzyLogicLibrary/Release/FuzzyLogicLibrary.dll" + "${SmartIrc4net}/lib/dotnet/SmartIrc4net/net40/SmarIrc4net*" + "${SharpZipLib}/lib/dotnet/SharpZipLib/20/ICSharpCode.SharpZipLib.dll" + "${MaxMindGeoIP2}/lib/dotnet/MaxMind.GeoIP2/net40/MaxMind.GeoIP2*" + "${MaxMindDb}/lib/dotnet/MaxMind.Db/net40/MaxMind.Db.*" + "${SharpFont}/lib/dotnet/SharpFont/net20/SharpFont.dll" + "${SharpFont}/lib/dotnet/SharpFont/SharpFont.dll.config" + "${StyleCopMSBuild}/lib/dotnet/StyleCop.MSBuild/StyleCop*.dll" + "${StyleCopPlusMSBuild}/lib/dotnet/StyleCopPlus.MSBuild/StyleCopPlus.dll" + "${RestSharp}/lib/dotnet/RestSharp/net4-client/RestSharp.dll" + "${NUnit}/lib/dotnet/NUnit/nunit.framework.*" + "${NewtonsoftJson}/lib/dotnet/Newtonsoft.Json/Newtonsoft.Json.dll" + ]; + movePackages = [ + ( let filename = "Eluant.dll"; in { origin = fetchurl { + url = "https://github.com/OpenRA/Eluant/releases/download/20140425/${filename}"; + sha256 = "1c20whz7dzfhg3szd62rvb79745x5iwrd5pp62j3bbj1q9wpddmb"; + }; target = filename; }) + + ( let filename = "SDL2-CS.dll"; in { origin = fetchurl { + url = "https://github.com/OpenRA/SDL2-CS/releases/download/20150709/${filename}"; + sha256 = "0ms75w9w0x3dzpg5g1ym5nb1id7pmagbzqx0am7h8fq4m0cqddmc"; + }; target = filename; }) + + ( let filename = "GeoLite2-Country.mmdb.gz"; in { origin = fetchurl { + url = "http://geolite.maxmind.com/download/geoip/database/${filename}"; + sha256 = "0lr978pipk5q2z3x011ps4fx5nfc3hsal7jb77fc60aa6iscr05m"; + }; target = filename; }) + ]; + in '' + mkdir thirdparty/download/ + + ${stdenv.lib.concatMapStringsSep "\n" (from: "cp ${from} thirdparty/download") dotnetPackagesDlls} + ${stdenv.lib.concatMapStringsSep "\n" ({origin, target}: "cp ${origin} thirdparty/download/${target}") movePackages} + + make dependencies + ''; + + #todo: man-page + buildFlags = [ "DEBUG=false" "default" ]; + + installTargets = [ "install" "install-linux-icons" "install-linux-desktop" "install-linux-appdata" "install-linux-mime" ]; + postInstall = with stdenv.lib; let runtime = makeLibraryPath [ SDL2 freetype openal systemd lua ]; in '' @@ -42,9 +91,9 @@ in stdenv.mkDerivation rec { --prefix PATH : "${mono}/bin" \ --set PWD $out/lib/openra/ \ --prefix LD_LIBRARY_PATH : "${runtime}" - + mkdir -p $out/bin - echo "cd $out/lib/openra && $out/lib/openra/launch-game.sh" > $out/bin/openra + echo -e "#!${stdenv.shell}\ncd $out/lib/openra && $out/lib/openra/launch-game.sh" > $out/bin/openra chmod +x $out/bin/openra ''; } From 42cce6ab1104612eecf6c93f702f6f6fc088927b Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Sat, 30 Apr 2016 22:35:39 -0300 Subject: [PATCH 215/337] openra: my maintainership --- lib/maintainers.nix | 1 + pkgs/games/openra/default.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 63b79ccab0b..b71e0becae1 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -291,6 +291,7 @@ pxc = "Patrick Callahan "; qknight = "Joachim Schiele "; ragge = "Ragnar Dahlen "; + rardiol = "Ricardo Ardissone "; rasendubi = "Alexey Shmalko "; raskin = "Michael Raskin <7c6f434c@mail.ru>"; redbaron = "Maxim Ivanov "; diff --git a/pkgs/games/openra/default.nix b/pkgs/games/openra/default.nix index 071b200a72e..de4858e70c7 100644 --- a/pkgs/games/openra/default.nix +++ b/pkgs/games/openra/default.nix @@ -11,6 +11,7 @@ in stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Real Time Strategy game engine recreates the C&C titles"; homepage = "http://www.open-ra.org/"; + maintainers = [ maintainers.rardiol ]; license = licenses.gpl3; platforms = platforms.linux; }; From 30240ccb9d62ade30e119448332e62112c00795c Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Mon, 2 May 2016 01:06:45 +0300 Subject: [PATCH 216/337] tarball: No need to depend on nix development headers --- pkgs/top-level/make-tarball.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix index ea7e7e89d37..da3579a6595 100644 --- a/pkgs/top-level/make-tarball.nix +++ b/pkgs/top-level/make-tarball.nix @@ -18,7 +18,7 @@ releaseTools.sourceTarball rec { version = builtins.readFile ../../.version; versionSuffix = "pre${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; - buildInputs = [ nix jq ]; + buildInputs = [ nix.out jq ]; configurePhase = '' eval "$preConfigure" From a1d61e736750159f6e860c7649d5f46dcade4d42 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sun, 1 May 2016 22:10:18 +0000 Subject: [PATCH 217/337] nixpkgs: fix chez build failures The Chez build was failing, as usual, due to impurities. The build system refers to absolute paths for tools like `ln` or `true`, which was the real culprit here. Furthermore the build also 'helpfully' suppresses errors in these cases by piping to /dev/null, so you never see any errors at build time until it's too late (otherwise, you'd see failures to call /bin/ln or at ./configure time). This also re-enables parallel builds, as they should be safe from all my testing, I believe. Signed-off-by: Austin Seipp --- pkgs/development/compilers/chez/default.nix | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/chez/default.nix b/pkgs/development/compilers/chez/default.nix index da60ffbb67a..d9e7cc50730 100644 --- a/pkgs/development/compilers/chez/default.nix +++ b/pkgs/development/compilers/chez/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, ncurses, libX11 }: +{ stdenv, fetchgit, coreutils, ncurses, libX11 }: stdenv.mkDerivation rec { name = "chez-scheme-${version}"; @@ -12,6 +12,7 @@ stdenv.mkDerivation rec { fetchSubmodules = true; }; + enableParallelBuilding = true; buildInputs = [ ncurses libX11 ]; /* Chez uses a strange default search path, which completely @@ -19,14 +20,25 @@ stdenv.mkDerivation rec { ** defaults to {/usr,/usr/local,$HOME}/lib for finding the .boot ** file. ** - ** Also, we patch out a very annoying 'feature' in ./configure, too. + ** Also, we patch out a very annoying 'feature' in ./configure, too, + ** which tries to use 'git' to update submodules. + ** + ** Finally, we have to also fix a few occurrences to tools with + ** absolute paths in some helper scripts, otherwise the build will + ** fail on NixOS or in any chroot build. */ patchPhase = '' - substituteInPlace c/scheme.c \ + substituteInPlace ./c/scheme.c \ --replace "/usr/lib/csv" "$out/lib/csv" substituteInPlace ./configure \ --replace "git submodule init && git submodule update || exit 1" "" + + substituteInPlace ./workarea \ + --replace "/bin/ln" "${coreutils}/bin/ln" + + substituteInPlace ./makefiles/installsh \ + --replace "/usr/bin/true" "${coreutils}/bin/true" ''; /* Don't use configureFlags, since that just implicitly appends From ddb4ea19bc185368db241f3eb33d4bb0b23be155 Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Sat, 30 Apr 2016 18:26:54 -0400 Subject: [PATCH 218/337] minecraft: use makeLibraryPath, so we don't use the dev outputs --- pkgs/games/minecraft/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/minecraft/default.nix b/pkgs/games/minecraft/default.nix index 6f3093585b4..f3a8a34fa3b 100644 --- a/pkgs/games/minecraft/default.nix +++ b/pkgs/games/minecraft/default.nix @@ -2,6 +2,7 @@ , jre, libX11, libXext, libXcursor, libXrandr, libXxf86vm , mesa, openal , useAlsa ? false, alsaOss ? null }: +with stdenv.lib; assert useAlsa -> alsaOss != null; @@ -39,8 +40,7 @@ in stdenv.mkDerivation { cat > $out/bin/minecraft << EOF #!${stdenv.shell} - # wrapper for minecraft - export LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:${libX11}/lib/:${libXext}/lib/:${libXcursor}/lib/:${libXrandr}/lib/:${libXxf86vm}/lib/:${mesa}/lib/:${openal}/lib/ + export LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:${makeLibraryPath [ libX11 libXext libXcursor libXrandr libXxf86vm mesa openal ]} ${if useAlsa then "${alsaOss}/bin/aoss" else "" } \ ${jre}/bin/java -jar $out/minecraft.jar EOF From 1b7e3ee14921c0d74da734ceed384292dda69d4a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 1 May 2016 23:11:59 +0200 Subject: [PATCH 219/337] pythonPackages.wcwidth: 0.1.4 -> 0.1.6 --- 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 654bb8d3220..5d713aa3fa9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -22616,11 +22616,11 @@ in modules // { wcwidth = buildPythonPackage rec { name = "wcwidth-${version}"; - version = "0.1.4"; + version = "0.1.6"; src = pkgs.fetchurl { url = "mirror://pypi/w/wcwidth/${name}.tar.gz"; - sha256 = "0awx28xi938nv55qlmai3b5ddqd1w5c294gy95xh4xsx0hik2vch"; + sha256 = "02wjrpf001gjdjsaxxbzcwfg19crlk2dbddayrfc2v06f53yrcyw"; }; # Checks fail due to missing tox.ini file: From b68f09a520371dd53fd1ab370935a2d8001700b3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 00:21:23 +0200 Subject: [PATCH 220/337] pythonPackages.boto3: 1.2.2 -> 1.3.1 --- 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 5d713aa3fa9..7e4b9268305 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2479,13 +2479,13 @@ in modules // { boto3 = buildPythonPackage rec { name = "boto3-${version}"; - version = "1.2.2"; + version = "1.3.1"; src = pkgs.fetchFromGitHub { owner = "boto"; repo = "boto3"; rev = version; - sha256 = "1w53lhhdzi29d31qzhflb5mcwb24mfrj4frv70w6qyn8vmqznnjy"; + sha256 = "1rbwcslk9dgayrg3vy3m0bqj767hdy1aphy5wjgz925bsydgxdg6"; }; propagatedBuildInputs = [ self.botocore From 5689ab480ae5df33ea21398ef75f211e670ec305 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 01:59:03 +0200 Subject: [PATCH 221/337] pythonPackages.prompt_toolkit: 0.46 -> 0.60 --- 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 7e4b9268305..435d5d40a92 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16095,10 +16095,10 @@ in modules // { prompt_toolkit = buildPythonPackage rec { name = "prompt_toolkit-${version}"; - version = "0.46"; + version = "0.60"; src = pkgs.fetchurl { - sha256 = "1yq9nis1b2rgpndi2rqh4divf6j22jjva83r5z8jf7iffywmr8hs"; + sha256 = "0gf3vv8dmj77xv7lrpccw9k3m1bgq3m71q9s6hqp77zvyd6cqjml"; url = "mirror://pypi/p/prompt_toolkit/${name}.tar.gz"; }; From b9e42f1b9aca6080f9f591f34d6612cb43ee0edc Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 02:00:15 +0200 Subject: [PATCH 222/337] pythonPackages.pgspecial: init at 1.3.0 --- pkgs/top-level/python-packages.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 435d5d40a92..7e8a2bc2993 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15642,6 +15642,26 @@ in modules // { }; }; + pgspecial = buildPythonPackage rec { + name = "pgspecial-${version}"; + version = "1.3.0"; + + src = pkgs.fetchurl { + sha256 = "1nxqqkchigrznywmm73n1ksp5hhhwswz8anrlwpi9i75wq792mg1"; + url = "mirror://pypi/p/pgspecial/${name}.tar.gz"; + }; + + propagatedBuildInputs = with self; [ click ]; + + meta = { + description = "Meta-commands handler for Postgres Database"; + homepage = https://pypi.python.org/pypi/pgspecial; + licence = licenses.bsd3; + maintainers = with maintainers; [ nckx ]; + }; + }; + + mycli = buildPythonPackage rec { name = "mycli-${version}"; version = "1.4.0"; From 230a0d4cc60f122f2c45c7870159477e03dd5cf8 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 02:00:51 +0200 Subject: [PATCH 223/337] pythonPackages.pgcli: 0.19.2 -> 0.20.1 --- pkgs/top-level/python-packages.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7e8a2bc2993..aac1a12d033 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15616,21 +15616,25 @@ in modules // { pgcli = buildPythonPackage rec { name = "pgcli-${version}"; - version = "0.19.2"; + version = "0.20.1"; src = pkgs.fetchFromGitHub { - sha256 = "1xl3yqwksnszd2vcgzb576m56613qcl82jfqmb9fbvcqlcpks6ln"; + sha256 = "0f1ff1a1x1qrcv4ygfh29yyknx8hgwck7rp020zz0jrq9dibhjp7"; rev = "v${version}"; repo = "pgcli"; owner = "dbcli"; }; propagatedBuildInputs = with self; [ - click configobj prompt_toolkit psycopg2 pygments sqlparse + click configobj prompt_toolkit psycopg2 + pygments sqlparse pgspecial setproctitle ]; + postPatch = '' + substituteInPlace setup.py --replace "==" ">=" + ''; + meta = { - inherit version; description = "Command-line interface for PostgreSQL"; longDescription = '' Rich command-line interface for PostgreSQL with auto-completion and From 232d2f29ac7f2ec156664514aca0ac57204705e0 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 02:01:28 +0200 Subject: [PATCH 224/337] pythonPackages.mycli: 1.4.0 -> 1.6.0 --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index aac1a12d033..ab45285f1b3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15668,17 +15668,17 @@ in modules // { mycli = buildPythonPackage rec { name = "mycli-${version}"; - version = "1.4.0"; + version = "1.6.0"; src = pkgs.fetchFromGitHub { - sha256 = "175jcfixjkq17fbda9kifbljfd5iwjpjisvhs5xhxsyf6n5ykv2l"; + sha256 = "0vvl36gxawa0h36v119j47fdylj8k73ak6hv04s5cjqn5adcjjbh"; rev = "v${version}"; repo = "mycli"; owner = "dbcli"; }; propagatedBuildInputs = with self; [ - pymysql configobj sqlparse prompt_toolkit pygments click + pymysql configobj sqlparse prompt_toolkit pygments click pycrypto ]; meta = { From 80f923f26fff93a505db228bf8cde0b4bf77424e Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Mon, 2 May 2016 02:29:42 +0100 Subject: [PATCH 225/337] linux-testing: 4.6-rc5 -> 4.6-rc6 --- pkgs/os-specific/linux/kernel/linux-testing.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index df30119b38d..9a948a68c4c 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.6-rc5"; - modDirVersion = "4.6.0-rc5"; + version = "4.6-rc6"; + modDirVersion = "4.6.0-rc6"; extraMeta.branch = "4.6"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "1795yq1bliyvfzb2a8rkldxfcjxq5frspr74cp5v0g37bamdrwvd"; + sha256 = "040sk87zdgqsbma5sk1hk4graga8yafh4rn89vkznkwzdlwa3gyx"; }; features.iwlwifi = true; From 1e84b0c070eabcacc5ab5a25c4606af0837a9f6a Mon Sep 17 00:00:00 2001 From: ryneeverett Date: Mon, 2 May 2016 03:51:56 +0000 Subject: [PATCH 226/337] you-get: init at 0.4.390 --- lib/maintainers.nix | 1 + pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/python-packages.nix | 23 +++++++++++++++++++++++ 3 files changed, 26 insertions(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 2bf60c585fc..2f2f1154177 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -316,6 +316,7 @@ ryanartecona = "Ryan Artecona "; ryantm = "Ryan Mulligan "; rycee = "Robert Helgesson "; + ryneeverett = "Ryne Everett "; samuelrivas = "Samuel Rivas "; sander = "Sander van der Burg "; schmitthenner = "Fabian Schmitthenner "; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5a52289d7e2..ba9876f1fda 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14656,6 +14656,8 @@ in inherit (gnome3) yelp; + inherit (python3Packages) you-get; + inherit (pythonPackages) youtube-dl; qgis = callPackage ../applications/gis/qgis {}; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 654bb8d3220..e52e86da6a3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23203,6 +23203,29 @@ in modules // { }; }; + you-get = buildPythonApplication rec { + version = "0.4.390"; + name = "you-get-${version}"; + disabled = !isPy3k; + + # Tests aren't packaged, but they all hit the real network so + # probably aren't suitable for a build environment anyway. + doCheck = false; + + src = pkgs.fetchurl { + url = "mirror://pypi/y/you-get/${name}.tar.gz"; + sha256 = "17hs0g9yvgvkmr7p1cz39mbbvb40q65qkc31j3ixc2f873gahagw"; + }; + + meta = { + description = "A tiny command line utility to download media contents from the web"; + homepage = https://you-get.org; + license = licenses.mit; + maintainers = with maintainers; [ ryneeverett ]; + platforms = platforms.all; + }; + }; + zope_broken = buildPythonPackage rec { name = "zope.broken-3.6.0"; From 822abc49adc7b130e3bdc99bdfaf2503a6cf699d Mon Sep 17 00:00:00 2001 From: Tobias Pflug Date: Mon, 25 Apr 2016 16:10:10 +0200 Subject: [PATCH 227/337] nodejs-6_x : init at 6.0.0 --- lib/maintainers.nix | 1 + pkgs/development/web/nodejs/nodejs.nix | 59 ++++++++++++++++++++++++ pkgs/development/web/nodejs/v4.nix | 63 ++------------------------ pkgs/development/web/nodejs/v5.nix | 57 ++--------------------- pkgs/development/web/nodejs/v6.nix | 12 +++++ pkgs/top-level/all-packages.nix | 10 ++-- 6 files changed, 87 insertions(+), 115 deletions(-) create mode 100644 pkgs/development/web/nodejs/nodejs.nix create mode 100644 pkgs/development/web/nodejs/v6.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index ae38b7acf6a..69d067b20e1 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -143,6 +143,7 @@ garrison = "Jim Garrison "; gavin = "Gavin Rogers "; gebner = "Gabriel Ebner "; + gilligan = "Tobias Pflug "; giogadi = "Luis G. Torres "; gleber = "Gleb Peregud "; globin = "Robin Gloster "; diff --git a/pkgs/development/web/nodejs/nodejs.nix b/pkgs/development/web/nodejs/nodejs.nix new file mode 100644 index 00000000000..a04a0ed971b --- /dev/null +++ b/pkgs/development/web/nodejs/nodejs.nix @@ -0,0 +1,59 @@ +{ stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser +, pkgconfig, runCommand, which, libtool +, version +, src +, ... +}: + +assert stdenv.system != "armv5tel-linux"; + +let + + deps = { + inherit openssl zlib libuv; + } // (stdenv.lib.optionalAttrs (!stdenv.isDarwin) { + inherit http-parser; + }); + + sharedConfigureFlags = name: [ + "--shared-${name}" + "--shared-${name}-includes=${builtins.getAttr name deps}/include" + "--shared-${name}-libpath=${builtins.getAttr name deps}/lib" + ]; + + inherit (stdenv.lib) concatMap optional optionals maintainers licenses platforms; + +in stdenv.mkDerivation { + + inherit version; + + inherit src; + + name = "nodejs-${version}"; + + configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ]; + dontDisableStatic = true; + prePatch = '' + patchShebangs . + sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' tools/gyp/pylib/gyp/xcode_emulation.py + ''; + + patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode.patch ]; + + buildInputs = [ python which zlib libuv openssl python ] + ++ optionals stdenv.isLinux [ utillinux http-parser ] + ++ optionals stdenv.isDarwin [ pkgconfig openssl libtool ]; + setupHook = ./setup-hook.sh; + + enableParallelBuilding = true; + + passthru.interpreterName = "nodejs"; + + meta = { + description = "Event-driven I/O framework for the V8 JavaScript engine"; + homepage = http://nodejs.org; + license = licenses.mit; + maintainers = [ maintainers.goibhniu maintainers.havvy maintainers.gilligan ]; + platforms = platforms.linux ++ platforms.darwin; + }; +} diff --git a/pkgs/development/web/nodejs/v4.nix b/pkgs/development/web/nodejs/v4.nix index ccb52817367..4332dca2dae 100644 --- a/pkgs/development/web/nodejs/v4.nix +++ b/pkgs/development/web/nodejs/v4.nix @@ -1,67 +1,12 @@ { stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser , pkgconfig, runCommand, which, libtool -}: +, callPackage +}@args: -# nodejs 0.12 can't be built on armv5tel. Armv6 with FPU, minimum I think. -# Related post: http://zo0ok.com/techfindings/archives/1820 -assert stdenv.system != "armv5tel-linux"; - -let +import ./nodejs.nix (args // rec { version = "4.3.1"; - - deps = { - inherit openssl zlib libuv; - - # disabled system v8 because v8 3.14 no longer receives security fixes - # we fall back to nodejs' internal v8 copy which receives backports for now - # inherit v8 - } // (stdenv.lib.optionalAttrs (!stdenv.isDarwin) { - inherit http-parser; - }); - - sharedConfigureFlags = name: [ - "--shared-${name}" - "--shared-${name}-includes=${builtins.getAttr name deps}/include" - "--shared-${name}-libpath=${builtins.getAttr name deps}/lib" - ]; - - inherit (stdenv.lib) concatMap optional optionals maintainers licenses platforms; -in stdenv.mkDerivation { - name = "nodejs-${version}"; - src = fetchurl { url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz"; sha256 = "0wzf5sirbph5kaik3pm9i2dxbjwqh5qlnqn71azrsv0vhs7dbqk1"; }; - - configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ]; - dontDisableStatic = true; - prePatch = '' - patchShebangs . - sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' tools/gyp/pylib/gyp/xcode_emulation.py - ''; - - patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode.patch ]; - - buildInputs = [ python zlib libuv openssl python ] - ++ optionals stdenv.isLinux [ utillinux http-parser ]; - nativeBuildInputs = [ pkgconfig ] - ++ optional stdenv.isDarwin libtool; - - postFixup = '' - sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' $out/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py - ''; - setupHook = ./setup-hook.sh; - - enableParallelBuilding = true; - - passthru.interpreterName = "nodejs"; - - meta = { - description = "Event-driven I/O framework for the V8 JavaScript engine"; - homepage = http://nodejs.org; - license = licenses.mit; - maintainers = [ maintainers.havvy ]; - platforms = platforms.linux ++ platforms.darwin; - }; -} +}) diff --git a/pkgs/development/web/nodejs/v5.nix b/pkgs/development/web/nodejs/v5.nix index d051b4850c1..02a7ba3ef4b 100644 --- a/pkgs/development/web/nodejs/v5.nix +++ b/pkgs/development/web/nodejs/v5.nix @@ -1,61 +1,12 @@ { stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser , pkgconfig, runCommand, which, libtool -}: +, callPackage +}@args: -# nodejs 5.0.0 can't be built on armv5tel. Armv6 with FPU, minimum I think. -assert stdenv.system != "armv5tel-linux"; - -let +import ./nodejs.nix (args // rec { version = "5.11.0"; - - deps = { - inherit openssl zlib libuv; - - # disabled system v8 because v8 3.14 no longer receives security fixes - # we fall back to nodejs' internal v8 copy which receives backports for now - # inherit v8 - } // (stdenv.lib.optionalAttrs (!stdenv.isDarwin) { - inherit http-parser; - }); - - sharedConfigureFlags = name: [ - "--shared-${name}" - "--shared-${name}-includes=${builtins.getAttr name deps}/include" - "--shared-${name}-libpath=${builtins.getAttr name deps}/lib" - ]; - - inherit (stdenv.lib) concatMap optional optionals maintainers licenses platforms; -in stdenv.mkDerivation { - name = "nodejs-${version}"; - src = fetchurl { url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz"; sha256 = "14ayv5rgagc6lj7fil0bdbzwj2qxj5picw802rfmmpj9kqdb0hgg"; }; - - configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ]; - dontDisableStatic = true; - prePatch = '' - patchShebangs . - sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' tools/gyp/pylib/gyp/xcode_emulation.py - ''; - - patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode.patch ]; - - buildInputs = [ python which zlib libuv openssl python ] - ++ optionals stdenv.isLinux [ utillinux http-parser ] - ++ optionals stdenv.isDarwin [ pkgconfig openssl libtool ]; - setupHook = ./setup-hook.sh; - - enableParallelBuilding = true; - - passthru.interpreterName = "nodejs"; - - meta = { - description = "Event-driven I/O framework for the V8 JavaScript engine"; - homepage = http://nodejs.org; - license = licenses.mit; - maintainers = [ maintainers.goibhniu maintainers.havvy ]; - platforms = platforms.linux ++ platforms.darwin; - }; -} +}) diff --git a/pkgs/development/web/nodejs/v6.nix b/pkgs/development/web/nodejs/v6.nix new file mode 100644 index 00000000000..ffb25f0ed59 --- /dev/null +++ b/pkgs/development/web/nodejs/v6.nix @@ -0,0 +1,12 @@ +{ stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser +, pkgconfig, runCommand, which, libtool +, callPackage +}@args: + +import ./nodejs.nix (args // rec { + version = "6.0.0"; + src = fetchurl { + url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.gz"; + sha256 = "0cpw7ng193jgfbw2g1fd0kcglmjjkbj4xb89g00z8zz0lj0nvdbd"; + }; +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index adfd300d3fa..c531a0cf453 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2170,17 +2170,21 @@ in ninka = callPackage ../development/tools/misc/ninka { }; - nodejs-5_x = callPackage ../development/web/nodejs/v5.nix { + nodejs-0_10 = callPackage ../development/web/nodejs/v0_10.nix { libtool = darwin.cctools; + inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices Carbon Foundation; }; nodejs-4_x = callPackage ../development/web/nodejs/v4.nix { libtool = darwin.cctools; }; - nodejs-0_10 = callPackage ../development/web/nodejs/v0_10.nix { + nodejs-5_x = callPackage ../development/web/nodejs/v5.nix { + libtool = darwin.cctools; + }; + + nodejs-6_x = callPackage ../development/web/nodejs/v6.nix { libtool = darwin.cctools; - inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices Carbon Foundation; }; nodejs = if stdenv.system == "armv5tel-linux" then From 69d5f27a138ce571df3088ce00dd4a2abee2b3da Mon Sep 17 00:00:00 2001 From: Bob van der Linden Date: Mon, 2 May 2016 10:46:37 +0200 Subject: [PATCH 228/337] popcorntime: 0.3.8 -> 0.4.0-2 (#15154) --- pkgs/applications/video/popcorntime/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/video/popcorntime/default.nix b/pkgs/applications/video/popcorntime/default.nix index f2bc3e70161..63c5f0460f2 100644 --- a/pkgs/applications/video/popcorntime/default.nix +++ b/pkgs/applications/video/popcorntime/default.nix @@ -1,24 +1,25 @@ { lib, stdenv, fetchurl, makeWrapper, nwjs, zip }: let - arch = if stdenv.system == "x86_64-linux" then "64" - else if stdenv.system == "i686-linux" then "32" + arch = if stdenv.system == "x86_64-linux" then "l64" + else if stdenv.system == "i686-linux" then "l32" else throw "Unsupported system ${stdenv.system}"; in stdenv.mkDerivation rec { name = "popcorntime-${version}"; - version = "0.3.9"; + version = "0.4.0"; + build = "2"; src = fetchurl { - url = "http://get.popcorntime.sh/build/Popcorn-Time-${version}-Linux-${arch}.tar.xz"; + url = "http://popcorntime.ag/download.php?file=popcorn-time-community-v${version}-${build}-${arch}.tar.xz"; sha256 = - if arch == "64" - then "0qaqdz45frgiy440jyz6hikhklx2yp08qp94z82r03dkbf4a2hvx" - else "0y08a42pm681s97lkczdq5dblxl2jbr850hnl85hknl3ynag9kq4"; + if arch == "l64" + then "0a68d0a81d8e97c94afa0c75209056ee4b8486f400854c952bd3ad7251bd80c9" + else "b311c312a29d408a7c661a271d1f3a8fc83865d8a204cf026ee87e9ac173874d"; }; dontPatchELF = true; - sourceRoot = "linux${arch}"; + sourceRoot = "."; buildInputs = [ zip makeWrapper ]; buildPhase = '' From 3829bcf8663b540d5e5ae69e04b196d291dc091b Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Mon, 2 May 2016 11:09:04 +0200 Subject: [PATCH 229/337] vim-go: 2016-04-15 -> 2016-05-01 (#15157) --- pkgs/misc/vim-plugins/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 0d754294cec..e30073339fd 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -453,12 +453,12 @@ rec { }; - vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-go-2016-04-15"; + vim-go = buildVimPluginFrom2Nix { + name = "vim-go-2016-05-01"; src = fetchgit { url = "git://github.com/fatih/vim-go"; - rev = "b3fddb60fdab980d1fc339fbcbc879abd6cbf524"; - sha256 = "1ggjisbc187kyzdizqffkicjdkz67mhgpxmqjcvzaq2wc2w44aja"; + rev = "91ffc410832d0b027f2258c7a91dbbfa378bf71a"; + sha256 = "00793ick6vralihvmmx8np7japxrd3jkbn5ggqzq0ymgr508gxj4"; }; dependencies = []; From fecb56fc3febd6e2bab58f6701f044296cf4835e Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 2 May 2016 07:06:36 +0200 Subject: [PATCH 230/337] linuxPackages_grsec_4_5: init at 3.1-4.5.2-201604290633 --- .../linux/kernel/grsecurity-path-4.5.patch | 14 ++++++++++++++ .../linux/kernel/linux-grsecurity-4.5.nix | 19 +++++++++++++++++++ pkgs/os-specific/linux/kernel/patches.nix | 15 ++++++++++++++- pkgs/top-level/all-packages.nix | 17 +++++++++++++++++ 4 files changed, 64 insertions(+), 1 deletion(-) create mode 100644 pkgs/os-specific/linux/kernel/grsecurity-path-4.5.patch create mode 100644 pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix diff --git a/pkgs/os-specific/linux/kernel/grsecurity-path-4.5.patch b/pkgs/os-specific/linux/kernel/grsecurity-path-4.5.patch new file mode 100644 index 00000000000..e0430a69c95 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/grsecurity-path-4.5.patch @@ -0,0 +1,14 @@ +diff -ru a/kernel/kmod.c b/kernel/kmod.c +--- a/kernel/kmod.c 2016-04-21 17:06:09.882281660 +0200 ++++ b/kernel/kmod.c 2016-04-21 17:08:17.458949309 +0200 +@@ -294,7 +294,9 @@ + strncmp(sub_info->path, "/lib/", 5) && strncmp(sub_info->path, "/lib64/", 7) && + strncmp(sub_info->path, "/usr/libexec/", 13) && strncmp(sub_info->path, "/usr/bin/", 9) && + strncmp(sub_info->path, "/usr/sbin/", 10) && strcmp(sub_info->path, "/bin/false") && +- strcmp(sub_info->path, "/usr/share/apport/apport")) || strstr(sub_info->path, "..")) { ++ strcmp(sub_info->path, "/usr/share/apport/apport") && ++ strncmp(sub_info->path, "/nix/store/", 11) && ++ strncmp(sub_info->path, "/run/current-system/systemd/lib/", 32)) || strstr(sub_info->path, "..")) { + printk(KERN_ALERT "grsec: denied exec of usermode helper binary %.950s located outside of permitted system paths\n", sub_info->path); + retval = -EPERM; + goto out; diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix new file mode 100644 index 00000000000..267d0d58de4 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, perl, buildLinux, ... } @ args: + +import ./generic.nix (args // rec { + version = "4.5.2"; + extraMeta.branch = "4.5"; + + src = fetchurl { + url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; + sha256 = "17r063zx880ka3ayv9cf1yjfilvxlifhja1rhw5z3w35hgdkj8z3"; + }; + + kernelPatches = args.kernelPatches; + + features.iwlwifi = true; + features.efiBootStub = true; + features.needsCifsUtils = true; + features.canDisableNetfilterConntrackHelpers = true; + features.netfilterRPFilter = true; +} // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 707ebb544bf..e84941091cd 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -112,7 +112,15 @@ rec { sha256 = "04k4nhshl6r5n41ha5620s7cd70dmmmvyf9mnn5359jr1720kxpf"; }; - grsecurity_latest = grsecurity_4_4; + grsecurity_4_5 = grsecPatch + { kernel = pkgs.grsecurity_base_linux_4_5; + patches = [ grsecurity_fix_path_4_5 ]; + kversion = "4.5.2"; + revision = "201604290633"; + sha256 = "0qrs4fk6lyqngq3fnsmrv0y3yp1lrbiwadfc6v7hy4lyv77wz107"; + }; + + grsecurity_latest = grsecurity_4_5; grsecurity_fix_path_3_14 = { name = "grsecurity-fix-path-3.14"; @@ -124,6 +132,11 @@ rec { patch = ./grsecurity-path-4.4.patch; }; + grsecurity_fix_path_4_5 = + { name = "grsecurity-fix-path-4.5"; + patch = ./grsecurity-path-4.5.patch; + }; + crc_regression = { name = "crc-backport-regression"; patch = ./crc-regression.patch; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cea479e2adf..5d93c4fa2a4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10655,6 +10655,15 @@ in ]; }; + grsecurity_base_linux_4_5 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.5.nix { + kernelPatches = [ kernelPatches.bridge_stp_helper ] + ++ lib.optionals ((platform.kernelArch or null) == "mips") + [ kernelPatches.mips_fpureg_emu + kernelPatches.mips_fpu_sigill + kernelPatches.mips_ext3_n32 + ]; + }; + grFlavors = import ../build-support/grsecurity/flavors.nix; mkGrsecurity = patch: opts: @@ -10679,6 +10688,10 @@ in linux_grsec_server_4_4 = self.grKernel kernelPatches.grsecurity_4_4 self.grFlavors.server; linux_grsec_server_xen_4_4 = self.grKernel kernelPatches.grsecurity_4_4 self.grFlavors.server_xen; + linux_grsec_desktop_4_5 = self.grKernel kernelPatches.grsecurity_4_5 self.grFlavors.desktop; + linux_grsec_server_4_5 = self.grKernel kernelPatches.grsecurity_4_5 self.grFlavors.server; + linux_grsec_server_xen_4_5 = self.grKernel kernelPatches.grsecurity_4_5 self.grFlavors.server_xen; + linux_grsec_desktop_latest = self.grKernel kernelPatches.grsecurity_latest self.grFlavors.desktop; linux_grsec_server_latest = self.grKernel kernelPatches.grsecurity_latest self.grFlavors.server; linux_grsec_server_xen_latest = self.grKernel kernelPatches.grsecurity_latest self.grFlavors.server_xen; @@ -10850,6 +10863,10 @@ in linuxPackages_grsec_server_4_4 = self.grPackage kernelPatches.grsecurity_4_4 self.grFlavors.server; linuxPackages_grsec_server_xen_4_4 = self.grPackage kernelPatches.grsecurity_4_4 self.grFlavors.server_xen; + linuxPackages_grsec_desktop_4_5 = self.grPackage kernelPatches.grsecurity_4_5 self.grFlavors.desktop; + linuxPackages_grsec_server_4_5 = self.grPackage kernelPatches.grsecurity_4_5 self.grFlavors.server; + linuxPackages_grsec_server_xen_4_5 = self.grPackage kernelPatches.grsecurity_4_5 self.grFlavors.server_xen; + linuxPackages_grsec_desktop_latest = self.grPackage kernelPatches.grsecurity_latest self.grFlavors.desktop; linuxPackages_grsec_server_latest = self.grPackage kernelPatches.grsecurity_latest self.grFlavors.server; linuxPackages_grsec_server_xen_latest = self.grPackage kernelPatches.grsecurity_latest self.grFlavors.server_xen; From 7893cb1aeaa1f561d32b2bb16f0ee025a50ad484 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 2 May 2016 07:13:50 +0200 Subject: [PATCH 231/337] linuxPackages_grsec_4_1: delete Upstream supports 3.14, 4.4, and 4.5 --- .../linux/kernel/linux-grsecurity-4.1.nix | 19 ------------------- pkgs/os-specific/linux/kernel/patches.nix | 8 -------- pkgs/top-level/all-packages.nix | 17 ----------------- 3 files changed, 44 deletions(-) delete mode 100644 pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix deleted file mode 100644 index 4359f4586c5..00000000000 --- a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ stdenv, fetchurl, perl, buildLinux, ... } @ args: - -import ./generic.nix (args // rec { - version = "4.1.7"; - extraMeta.branch = "4.1"; - - src = fetchurl { - url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0g1dnvak0pd03d4miy1025bw64wq71w29a058dzspdr6jcf9qwbn"; - }; - - kernelPatches = args.kernelPatches; - - features.iwlwifi = true; - features.efiBootStub = true; - features.needsCifsUtils = true; - features.canDisableNetfilterConntrackHelpers = true; - features.netfilterRPFilter = true; -} // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index e84941091cd..14b0692dbad 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -96,14 +96,6 @@ rec { sha256 = "1sp1gwa7ahzflq7ayb51bg52abrn5zx1hb3pff3axpjqq7vfai6f"; }; - grsecurity_4_1 = grsecPatch - { kernel = pkgs.grsecurity_base_linux_4_1; - patches = [ grsecurity_fix_path_3_14 ]; - kversion = "4.1.7"; - revision = "201509201149"; - sha256 = "1agv8c3c4vmh5algbzmrq2f6vwk72rikrlcbm4h7jbrb9js6fxk4"; - }; - grsecurity_4_4 = grsecPatch { kernel = pkgs.grsecurity_base_linux_4_4; patches = [ grsecurity_fix_path_4_4 ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5d93c4fa2a4..51ff7bcc935 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10637,15 +10637,6 @@ in ]; }; - grsecurity_base_linux_4_1 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.1.nix { - kernelPatches = [ kernelPatches.bridge_stp_helper ] - ++ lib.optionals ((platform.kernelArch or null) == "mips") - [ kernelPatches.mips_fpureg_emu - kernelPatches.mips_fpu_sigill - kernelPatches.mips_ext3_n32 - ]; - }; - grsecurity_base_linux_4_4 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.4.nix { kernelPatches = [ kernelPatches.bridge_stp_helper ] ++ lib.optionals ((platform.kernelArch or null) == "mips") @@ -10680,10 +10671,6 @@ in linux_grsec_server_3_14 = self.grKernel kernelPatches.grsecurity_3_14 self.grFlavors.server; linux_grsec_server_xen_3_14 = self.grKernel kernelPatches.grsecurity_3_14 self.grFlavors.server_xen; - linux_grsec_desktop_4_1 = self.grKernel kernelPatches.grsecurity_4_1 self.grFlavors.desktop; - linux_grsec_server_4_1 = self.grKernel kernelPatches.grsecurity_4_1 self.grFlavors.server; - linux_grsec_server_xen_4_1 = self.grKernel kernelPatches.grsecurity_4_1 self.grFlavors.server_xen; - linux_grsec_desktop_4_4 = self.grKernel kernelPatches.grsecurity_4_4 self.grFlavors.desktop; linux_grsec_server_4_4 = self.grKernel kernelPatches.grsecurity_4_4 self.grFlavors.server; linux_grsec_server_xen_4_4 = self.grKernel kernelPatches.grsecurity_4_4 self.grFlavors.server_xen; @@ -10855,10 +10842,6 @@ in linuxPackages_grsec_server_3_14 = self.grPackage kernelPatches.grsecurity_3_14 self.grFlavors.server; linuxPackages_grsec_server_xen_3_14 = self.grPackage kernelPatches.grsecurity_3_14 self.grFlavors.server_xen; - linuxPackages_grsec_desktop_4_1 = self.grPackage kernelPatches.grsecurity_4_1 self.grFlavors.desktop; - linuxPackages_grsec_server_4_1 = self.grPackage kernelPatches.grsecurity_4_1 self.grFlavors.server; - linuxPackages_grsec_server_xen_4_1 = self.grPackage kernelPatches.grsecurity_4_1 self.grFlavors.server_xen; - linuxPackages_grsec_desktop_4_4 = self.grPackage kernelPatches.grsecurity_4_4 self.grFlavors.desktop; linuxPackages_grsec_server_4_4 = self.grPackage kernelPatches.grsecurity_4_4 self.grFlavors.server; linuxPackages_grsec_server_xen_4_4 = self.grPackage kernelPatches.grsecurity_4_4 self.grFlavors.server_xen; From a69501a936a6434fbe88fb6a0423dd425563c163 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 2 May 2016 07:27:29 +0200 Subject: [PATCH 232/337] grsecurity: ensure that PaX ELF markings are enabled The upstream default is to enable only xattr markings, breaking the paxmarks facility. --- pkgs/build-support/grsecurity/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index 6c2e98b9cc1..0addb1d3d45 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -90,6 +90,10 @@ let GRKERNSEC y ${grsecMainConfig} + # The paxmarks mechanism relies on ELF header markings, but the default + # grsecurity configuration only enables xattr markings + PAX_PT_PAX_FLAGS y + ${if cfg.config.restrictProc then "GRKERNSEC_PROC_USER y" else From 39db90eaf60999db2ffd13668b4619a2d57f76ad Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 2 May 2016 07:35:19 +0200 Subject: [PATCH 233/337] grsecurity: simplify preConfigure --- pkgs/build-support/grsecurity/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index 0addb1d3d45..0ba27036667 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -121,8 +121,7 @@ let # additional build inputs for gcc plugins, required by some PaX/grsec features nativeBuildInputs = args.nativeBuildInputs ++ (with pkgs; [ gmp libmpc mpfr ]); - preConfigure = args.preConfigure or "" + '' - rm localversion-grsec + preConfigure = (args.preConfigure or "") + '' echo ${localver grkern} > localversion-grsec ''; }; From 60a27781d6d358e0c5cd144c7c90642761c1a31f Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 2 May 2016 07:30:44 +0200 Subject: [PATCH 234/337] grsecurity module: fix grsec-lock unit ordering Requirement without ordering implies parallel execution; it is crucial that sysctl tunables are finalized before the lock is engaged, however. --- nixos/modules/security/grsecurity.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index 236206026c3..11668162808 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -234,7 +234,8 @@ in systemd.services.grsec-lock = mkIf cfg.config.sysctl { description = "grsecurity sysctl-lock Service"; - requires = [ "systemd-sysctl.service" ]; + wants = [ "systemd-sysctl.service" ]; + after = [ "systemd-sysctl.service" ]; wantedBy = [ "multi-user.target" ]; serviceConfig.Type = "oneshot"; serviceConfig.RemainAfterExit = "yes"; From a7886c9189ec81ae37f753760e429649ef8ff741 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 2 May 2016 11:57:17 +0200 Subject: [PATCH 235/337] bittorrentSync20: 2.3.3 -> 2.3.6 (#15147) Note that this changes the domain from getsyncapp.com (no longer valid) to getsync.com. --- .../networking/bittorrentsync/2.0.x.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/networking/bittorrentsync/2.0.x.nix b/pkgs/applications/networking/bittorrentsync/2.0.x.nix index 4f9c7ebf333..ee4d3a436a5 100644 --- a/pkgs/applications/networking/bittorrentsync/2.0.x.nix +++ b/pkgs/applications/networking/bittorrentsync/2.0.x.nix @@ -1,28 +1,27 @@ -{ stdenv, fetchurl, patchelf }: +{ stdenv, fetchurl }: let arch = if stdenv.system == "x86_64-linux" then "x64" else if stdenv.system == "i686-linux" then "i386" else throw "Bittorrent Sync for: ${stdenv.system} not supported!"; - sha256 = if stdenv.system == "x86_64-linux" then "0l6z2fyd7i3i3cr95gkihbf6fwa7mk1b2m1jpf2nq5ispg0qf74n" - else if stdenv.system == "i686-linux" then "06x8f75dh58saqrz2k2xgcilh27v0jmql4k4rs7g361aad9v3pnr" + sha256 = if stdenv.system == "x86_64-linux" then "01yrligi61gxcixh7z6gi427ga0sx97wnmkv08p9ykd4b90hvj7s" + else if stdenv.system == "i686-linux" then "119dll7f4w7h8nrrafmrj1d0lddjzwg5l8hnf74xdjg6g7rhrmd7" else throw "Bittorrent Sync for: ${stdenv.system} not supported!"; libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc ]; in stdenv.mkDerivation rec { name = "btsync-${version}"; - version = "2.3.3"; + version = "2.3.6"; src = fetchurl { - url = "https://download-cdn.getsyncapp.com/${version}/linux-${arch}/BitTorrent-Sync_${arch}.tar.gz"; + url = "https://download-cdn.getsync.com/${version}/linux-${arch}/BitTorrent-Sync_${arch}.tar.gz"; inherit sha256; }; dontStrip = true; # Don't strip, otherwise patching the rpaths breaks sourceRoot = "."; - buildInputs = [ patchelf ]; installPhase = '' mkdir -p "$out/bin/" @@ -34,7 +33,7 @@ stdenv.mkDerivation rec { meta = { description = "Automatically sync files via secure, distributed technology"; - homepage = "http://www.bittorrent.com/sync"; + homepage = https://www.getsync.com/; license = stdenv.lib.licenses.unfreeRedistributable; platforms = stdenv.lib.platforms.linux; maintainers = with stdenv.lib.maintainers; [ iElectric thoughtpolice cwoac ]; From cf224573d6c10d8b0dd854c06ee34e3f494898af Mon Sep 17 00:00:00 2001 From: Jascha Geerds Date: Mon, 2 May 2016 11:59:13 +0200 Subject: [PATCH 236/337] idea.pycharm: 5.0.3 -> 2016.1.2 --- pkgs/applications/editors/idea/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index e93e5840b69..482cbc56bcf 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -233,25 +233,25 @@ in pycharm-community = buildPycharm rec { name = "pycharm-community-${version}"; - version = "5.0.3"; - build = "143.1559.1"; + version = "2016.1.2"; + build = "145.844"; description = "PyCharm Community Edition"; license = stdenv.lib.licenses.asl20; src = fetchurl { url = "https://download.jetbrains.com/python/${name}.tar.gz"; - sha256 = "1xb3qxhl8ln488v0hmjqkzpyypm7wh941c7syi4cs7plbdp6w4c2"; + sha256 = "1kxwjg5l2fzpn6hr0iir0dv1n5l02jl02aff9wrj95186wxivg3a"; }; }; pycharm-professional = buildPycharm rec { name = "pycharm-professional-${version}"; - version = "5.0.3"; - build = "143.1559.1"; + version = "2016.1.2"; + build = "145.844"; description = "PyCharm Professional Edition"; license = stdenv.lib.licenses.unfree; src = fetchurl { url = "https://download.jetbrains.com/python/${name}.tar.gz"; - sha256 = "1v2g9867nn3id1zfbg4zwj0c0z9d72rl9c1dz6vs2c4j0y4gy9xl"; + sha256 = "1kwi9d80r2yp5ivbvslrj70iam966rv4a8diajbwpcc26m7rj3kk"; }; }; From 43e617b487a3b24fb8ba6d77af10bd304837f13a Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Mon, 2 May 2016 12:26:32 +0200 Subject: [PATCH 237/337] matchbox: update source urls + libmatchbox: 1.9 -> 1.11 (#15160) --- pkgs/applications/window-managers/matchbox/default.nix | 5 +++-- pkgs/development/libraries/libmatchbox/default.nix | 7 ++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/window-managers/matchbox/default.nix b/pkgs/applications/window-managers/matchbox/default.nix index 08c1be9f963..0e88944bb69 100644 --- a/pkgs/applications/window-managers/matchbox/default.nix +++ b/pkgs/applications/window-managers/matchbox/default.nix @@ -1,12 +1,13 @@ { stdenv, fetchurl, libmatchbox, pkgconfig}: stdenv.mkDerivation rec { - name = "matchbox-1.2"; + name = "matchbox-${version}"; + version = "1.2"; buildInputs = [ libmatchbox pkgconfig ]; src = fetchurl { - url = http://matchbox-project.org/sources/matchbox-window-manager/1.2/matchbox-window-manager-1.2.tar.bz2; + url = "http://downloads.yoctoproject.org/releases/matchbox/matchbox-window-manager/${version}/matchbox-window-manager-${version}.tar.bz2"; sha256 = "1zyfq438b466ygcz78nvsmnsc5bhg4wcfnpxb43kbkwpyx53m8l1"; }; diff --git a/pkgs/development/libraries/libmatchbox/default.nix b/pkgs/development/libraries/libmatchbox/default.nix index 38702817734..6cb7defb097 100644 --- a/pkgs/development/libraries/libmatchbox/default.nix +++ b/pkgs/development/libraries/libmatchbox/default.nix @@ -1,14 +1,15 @@ { stdenv, fetchurl, libX11, libXext, libpng, libXft, libICE, pango, libjpeg}: stdenv.mkDerivation rec { - name = "libmatchbox-1.9"; + name = "libmatchbox-${version}"; + version = "1.11"; buildInputs = [ libXft libICE pango libjpeg ]; propagatedBuildInputs = [ libX11 libXext libpng ]; src = fetchurl { - url = http://matchbox-project.org/sources/libmatchbox/1.9/libmatchbox-1.9.tar.bz2; - sha256 = "006zdrgs7rgh7dvakjmqsp1q9karq6c5cz4gki2l15fhx0cf40fv"; + url = "http://downloads.yoctoproject.org/releases/matchbox/libmatchbox/${version}/libmatchbox-${version}.tar.bz2"; + sha256 = "0lvv44s3bf96zvkysa4ansxj2ffgj3b5kgpliln538q4wd9ank15"; }; meta = { From 6cff7111d0a1ceaff664b35e7ca97ae6179b67fb Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 13:53:32 +0200 Subject: [PATCH 238/337] geolite-legacy: 2016-04-29 -> 2016-05-02 --- pkgs/data/misc/geolite-legacy/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index 9a07429d4e1..3792047aea1 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,7 +8,7 @@ let in stdenv.mkDerivation rec { name = "geolite-legacy-${version}"; - version = "2016-04-29"; + version = "2016-05-02"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { "1sr2yapsfmdpl4zpf8i5rl3k65dgbq7bb1615g6wf60yw9ngh76x"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" - "1b7w8sdazxq5sv3nz1s28420374vf4wn6h2zasbg68kc2cxwdh2w"; + "04gyrb5qyy3i1p9lgnls90irq3s64y5qfcqj91nx4x68r7dixnai"; srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" - "1iy6myanmx8h4ha493bz80q6wjwgjlbk7cmliyw1806dd7fhqvwi"; + "1l9j97bk3mbv5b6lxva6ig590gl7097xr0vayz5mpsfx5d37r4zw"; meta = with stdenv.lib; { description = "GeoLite Legacy IP geolocation databases"; From 8a1ccb5f7093702afd6ed135539222683bc4d09d Mon Sep 17 00:00:00 2001 From: Kovacsics Robert Date: Mon, 2 May 2016 15:09:06 +0100 Subject: [PATCH 239/337] plover: 2.5.8 -> 3.0.0 (#15140) --- pkgs/top-level/python-packages.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9228ca8feca..c85b1ca2508 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12579,22 +12579,21 @@ in modules // { plover = buildPythonPackage rec { name = "plover-${version}"; - version = "2.5.8"; + version = "3.0.0"; disabled = !isPy27; meta = { description = "OpenSteno Plover stenography software"; - maintainers = [ maintainers.twey ]; + maintainers = with maintainers; [ twey kovirobi ]; license = licenses.gpl2; }; src = pkgs.fetchurl { url = "https://github.com/openstenoproject/plover/archive/v${version}.tar.gz"; - sha256 = "23f7824a715f93eb2c41d5bafd0c6f3adda92998e9321e1ee029abe7a6ab41e5"; + sha256 = "1jja37nhiypdx1z6cazp8ffsf0z3yqmpdbprpdzf668lcb422rl0"; }; - propagatedBuildInputs = with self; [ wxPython pyserial xlib appdirs pkgs.wmctrl ]; - preConfigure = "substituteInPlace setup.py --replace /usr/share usr/share"; + propagatedBuildInputs = with self; [ wxPython30 pyserial hidapi xlib appdirs pkgs.wmctrl mock ]; }; pygal = buildPythonPackage rec { From e8c6b47ee36202e069252807ff14232e3316df60 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 15:18:22 +0200 Subject: [PATCH 240/337] yodl: 3.07.01 -> 3.08.00 --- pkgs/development/tools/misc/yodl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/yodl/default.nix b/pkgs/development/tools/misc/yodl/default.nix index 1efad2d1789..69270f8a518 100644 --- a/pkgs/development/tools/misc/yodl/default.nix +++ b/pkgs/development/tools/misc/yodl/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "yodl-${version}"; - version = "3.07.01"; + version = "3.08.00"; buildInputs = [ perl icmake ]; src = fetchFromGitHub { - sha256 = "1l8igql4dw6jiv8gs4bpfxrdgr2za9a1l2k3paxsajhy6w3a9b3m"; + sha256 = "107jhywx0xdyp7yll1c5zwngzjl3yvg1b4yan8wl2acnbrv6hwa4"; rev = version; repo = "yodl"; owner = "fbb-git"; From 199c998bcc7d5e64a9b8e30a964c2fac31e12848 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Sat, 16 Apr 2016 16:13:51 +0200 Subject: [PATCH 241/337] nsd: 4.1.7 -> 4.1.9 Features ======== * Fix #732: tcp-mss, outgoing-tcp-mss options for nsd.conf, patch from Daisuke Higashi. * Fix #739: zonefile changes when mtime is small are detected on reload, if filesystem supports precision mtime values. * RR type CSYNC (RFC7477) syntax is supported. Bugfixes ======== * Change the nsd.db file version because of nanosecond precision fix. * take advantage of arc4random_uniform if available, patch from Loganaden Velvindron. * Fix flto check for OSX clang. * Define _DEFAULT_SOURCE with _BSD_SOURCE for glibc 2.20 on Linux. * Fix #736: segfault during zone transfer. * Fix #744: Fix that NSD replies for configured but unloaded zone with SERVFAIL, not REFUSED. --- pkgs/servers/dns/nsd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/dns/nsd/default.nix b/pkgs/servers/dns/nsd/default.nix index 646e50c78f9..48dd535382d 100644 --- a/pkgs/servers/dns/nsd/default.nix +++ b/pkgs/servers/dns/nsd/default.nix @@ -13,11 +13,11 @@ }: stdenv.mkDerivation rec { - name = "nsd-4.1.7"; + name = "nsd-4.1.9"; src = fetchurl { url = "http://www.nlnetlabs.nl/downloads/nsd/${name}.tar.gz"; - sha256 = "12hskfgfbkvcgpa1xxkqd8lnc6xvln1amn97x6avfnj9kfrbxa3v"; + sha256 = "1wn8jm5kpp81m88c77j97850mnmd87yaw8qp3xsdwcakcd6j44dq"; }; buildInputs = [ libevent openssl ]; From 2adcd6db807ab6ba5adca5acc86ea61a20b6bc13 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 17:07:30 +0200 Subject: [PATCH 242/337] perlPackages.Pango: 1.226 -> 1.227 --- 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 05ed6d87e4b..923ca77ea8a 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -9398,10 +9398,10 @@ let self = _self // overrides; _self = with self; { }; Pango = buildPerlPackage rec { - name = "Pango-1.226"; + name = "Pango-1.227"; src = fetchurl { url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz"; - sha256 = "0r4jx7d6gj6ixk2r5yr70biy1lpjxir08aywkw02g85wg6zkjw4z"; + sha256 = "0wdcidnfnb6nm79fzfs39ivawj3x8m98a147fmcxgv1zvwia9c1l"; }; buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig pkgs.pango ]; propagatedBuildInputs = [ Cairo Glib ]; From 3a0481d3c48c8b24307aff0ae671c9cce0f43543 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 14:54:41 +0200 Subject: [PATCH 243/337] perlPackages.Glib: 1.320 -> 1.321 --- 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 923ca77ea8a..c8ea7710d5a 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5460,10 +5460,10 @@ let self = _self // overrides; _self = with self; { }; Glib = buildPerlPackage rec { - name = "Glib-1.320"; + name = "Glib-1.321"; src = fetchurl { url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz"; - sha256 = "15mrwscqjgwpkw9n4x6rakr9rjz2ss8d90k574fs5wx9cmgg3np3"; + sha256 = "0h4cfxrxcf1mrdab5n5kk0smsi8vcrfnmcw1k6xw87r4vbifnxdr"; }; buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig pkgs.glib ]; meta = { From f03fdb0f56be4e9bcd203be0315fd54ad50de330 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 15:12:38 +0200 Subject: [PATCH 244/337] perlPackages.Gtk2: 1.2497 -> 1.2498 --- 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 c8ea7710d5a..08b6ccd49d7 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5570,10 +5570,10 @@ let self = _self // overrides; _self = with self; { }; Gtk2 = buildPerlPackage rec { - name = "Gtk2-1.2497"; + name = "Gtk2-1.2498"; src = fetchurl { url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz"; - sha256 = "0j5wm290ihpkx91gbk55qrrb0jhbh5fanbj5fjvs0d2xv6yyh921"; + sha256 = "0gs6lr4clz86838s3klrl37lf48j24zv0p37jlsvsnr927whpq3j"; }; buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Pango pkgs.gtk2 ]; meta = { From 1a350e6b583786c5d45b9d2a2987b82e3c5e08e2 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Mon, 2 May 2016 17:18:07 +0200 Subject: [PATCH 245/337] beets: patch ffmpeg invocation in convert plugin The default convert configuration invokes ffmpeg, so this patches in the right storepath. Since it patches the shlex split, even user config will use the correct path. kudos @aszlig. --- pkgs/tools/audio/beets/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix index 0079270e29f..806cb07c610 100644 --- a/pkgs/tools/audio/beets/default.nix +++ b/pkgs/tools/audio/beets/default.nix @@ -4,6 +4,7 @@ , enableAcousticbrainz ? true , enableAcoustid ? true , enableBadfiles ? true, flac ? null, mp3val ? null +, enableConvert ? true, ffmpeg ? null , enableDiscogs ? true , enableEchonest ? true , enableEmbyupdate ? true @@ -22,6 +23,7 @@ assert enableAcoustid -> pythonPackages.pyacoustid != null; assert enableBadfiles -> flac != null && mp3val != null; +assert enableConvert -> ffmpeg != null; assert enableDiscogs -> pythonPackages.discogs_client != null; assert enableEchonest -> pythonPackages.pyechonest != null; assert enableFetchart -> pythonPackages.responses != null; @@ -38,6 +40,7 @@ let acousticbrainz = enableAcousticbrainz; badfiles = enableBadfiles; chroma = enableAcoustid; + convert = enableConvert; discogs = enableDiscogs; echonest = enableEchonest; embyupdate = enableEmbyupdate; @@ -52,7 +55,7 @@ let }; pluginsWithoutDeps = [ - "bench" "bpd" "bpm" "bucket" "convert" "cue" "duplicates" "edit" "embedart" + "bench" "bpd" "bpm" "bucket" "cue" "duplicates" "edit" "embedart" "filefilter" "freedesktop" "fromfilename" "ftintitle" "fuzzy" "ihate" "importadded" "importfeeds" "info" "inline" "ipfs" "keyfinder" "lyrics" "mbcollection" "mbsubmit" "mbsync" "metasync" "missing" "permissions" "play" @@ -96,6 +99,7 @@ in buildPythonApplication rec { || enableEmbyupdate || enableAcousticbrainz) pythonPackages.requests2 + ++ optional enableConvert ffmpeg ++ optional enableDiscogs pythonPackages.discogs_client ++ optional enableEchonest pythonPackages.pyechonest ++ optional enableLastfm pythonPackages.pylast @@ -131,6 +135,8 @@ in buildPythonApplication rec { s,"flac","${flac.bin}/bin/flac", s,"mp3val","${mp3val}/bin/mp3val", }' beetsplug/badfiles.py + '' + optionalString enableConvert '' + sed -i -e 's,\(util\.command_output(\)\([^)]\+\)),\1[b"${ffmpeg.bin}/bin/ffmpeg" if args[0] == b"ffmpeg" else args[0]] + \2[1:]),' beetsplug/convert.py '' + optionalString enableReplaygain '' sed -i -re ' s!^( *cmd *= *b?['\'''"])(bs1770gain['\'''"])!\1${bs1770gain}/bin/\2! From edb0b7e36f3ac40a17b7421db81206a51af03347 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 2 May 2016 14:19:37 -0400 Subject: [PATCH 246/337] krb5: 1.14 -> 1.14.2 (security updates) --- pkgs/development/libraries/kerberos/krb5.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/kerberos/krb5.nix b/pkgs/development/libraries/kerberos/krb5.nix index 5b2b0954203..332ca526b6b 100644 --- a/pkgs/development/libraries/kerberos/krb5.nix +++ b/pkgs/development/libraries/kerberos/krb5.nix @@ -11,11 +11,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { name = "${type}krb5-${version}"; - version = "1.14"; + version = "1.14.2"; src = fetchurl { url = "${meta.homepage}dist/krb5/1.14/krb5-${version}.tar.gz"; - sha256 = "1sgr61cnkgc5xazijaww6wpn5fnxl9vyj9ixk3r3y7ikv3x0gnyf"; + sha256 = "09wbv969ak4fqlqr1ip5bi62fny1zlp1vwjarvj6a6cdfzkdgjkb"; }; configureFlags = optional stdenv.isFreeBSD ''WARN_CFLAGS=""''; From 014d853f8cfe34a51ec5641691fcb97bf7c6d9a9 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 2 May 2016 13:54:47 -0500 Subject: [PATCH 247/337] julia: remove ttuegel from maintainers ttuegel has not used julia in some time. --- pkgs/development/compilers/julia/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/julia/default.nix b/pkgs/development/compilers/julia/default.nix index 9886dc4d52a..9e90ecfbe21 100644 --- a/pkgs/development/compilers/julia/default.nix +++ b/pkgs/development/compilers/julia/default.nix @@ -159,7 +159,7 @@ stdenv.mkDerivation rec { description = "High-level performance-oriented dynamical language for technical computing"; homepage = "http://julialang.org/"; license = stdenv.lib.licenses.mit; - maintainers = with stdenv.lib.maintainers; [ raskin ttuegel ]; + maintainers = with stdenv.lib.maintainers; [ raskin ]; platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; }; } From bdf7f03c4b007f0810961fda371e5df059de64d8 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Mon, 2 May 2016 21:04:07 +0200 Subject: [PATCH 248/337] MMA: init at 15.12 --- pkgs/applications/audio/MMA/default.nix | 68 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +- 2 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 pkgs/applications/audio/MMA/default.nix diff --git a/pkgs/applications/audio/MMA/default.nix b/pkgs/applications/audio/MMA/default.nix new file mode 100644 index 00000000000..224ae9f6f6f --- /dev/null +++ b/pkgs/applications/audio/MMA/default.nix @@ -0,0 +1,68 @@ +{ stdenv, fetchurl, makeWrapper, python, alsaUtils, timidity }: + + stdenv.mkDerivation rec { + version = "15.12"; + name = "mma-${version}"; + + src = fetchurl { + url = "http://www.mellowood.ca/mma/mma-bin-${version}.tar.gz"; + sha256 = "0k37kcrfaxmwjb8xb1cbqinrkx3g50dbvwqbvwl3l762j4vr8jgx"; + }; + + buildInputs = [ makeWrapper python alsaUtils timidity ]; + + patchPhase = '' + sed -i 's@/usr/bin/aplaymidi@/${alsaUtils}/bin/aplaymidi@g' mma-splitrec + sed -i 's@/usr/bin/aplaymidi@/${alsaUtils}/bin/aplaymidi@g' util/mma-splitrec.py + sed -i 's@/usr/bin/arecord@/${alsaUtils}/bin/arecord@g' mma-splitrec + sed -i 's@/usr/bin/arecord@/${alsaUtils}/bin/arecord@g' util/mma-splitrec.py + sed -i 's@/usr/bin/timidity@/${timidity}/bin/timidity@g' mma-splitrec + sed -i 's@/usr/bin/timidity@/${timidity}/bin/timidity@g' util/mma-splitrec.py + find . -type f | xargs sed -i 's@/usr/bin/env python@${python}/bin/python@g' + ''; + + installPhase = '' + mkdir -p $out/{bin,share/mma,share/man/man1,share/man/man8} + mkdir -p $out/etc + + cp mma.py $out/bin/mma + cp mma-gb $out/bin/mma-gb + cp mma-libdoc $out/bin/mma-libdoc + cp mma-renum $out/bin/mma-renum + cp mma-splitrec $out/bin/mma-splitrec + cp util/mma-mnx.py $out/bin/mma-mnx + cp util/mma-rm2std.py $out/bin/mma-rm2std + cp util/mmatabs.py $out/bin/mmatabs + cp util/mup2mma.py $out/bin/mup2mma + cp util/pg2mma.py $out/bin/pg2mma + cp util/synthsplit.py $out/bin/mma-synthsplit + cp -r {docs,egs,includes,lib,MMA,text} $out/share/mma + rmdir $out/share/mma/includes/aria + + cp util/README.* $out/share/mma/docs + mv $out/share/mma/docs/man/mma-libdoc.8 $out/share/man/man8 + mv $out/share/mma/docs/man/mma-renum.1 $out/share/man/man1 + mv $out/share/mma/docs/man/mma.1 $out/share/man/man1 + mv $out/share/mma/docs/man/mma-gb.1 $out/share/man/man1 + rm -rf $out/share/mma/docs/man + find $out -type f | xargs sed -i "s@/usr/share/mma@$out/share/mma@g" + ''; + + preFixup = '' + PYTHONPATH=$out/share/mma/:$PYTHONPATH + for f in $out/bin/*; do + wrapProgram $f \ + --prefix PYTHONPATH : $PYTHONPATH + done + cd $out/share/mma/ + $out/bin/mma -G + ''; + + meta = { + description = "Creates MIDI tracks for a soloist to perform over from a user supplied file containing chords"; + homepage = http://www.mellowood.ca/mma/index.html; + license = stdenv.lib.licenses.gpl2; + maintainers = [ stdenv.lib.maintainers.magnetophon ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4126d518076..35902c65042 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10003,7 +10003,7 @@ in }; rake = callPackage ../development/tools/build-managers/rake { }; - + redis = callPackage ../servers/nosql/redis { }; redstore = callPackage ../servers/http/redstore { }; @@ -13213,6 +13213,8 @@ in mldonkey = callPackage ../applications/networking/p2p/mldonkey { }; + MMA = callPackage ../applications/audio/MMA { }; + mmex = callPackage ../applications/office/mmex { }; moc = callPackage ../applications/audio/moc { }; From 7ec30231410ae88b5bd1b3a7db9b4cf8c5733115 Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Mon, 2 May 2016 23:00:10 +0200 Subject: [PATCH 249/337] emby: 3.0.5932 -> 3.0.5934 (#15173) --- pkgs/servers/emby/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/emby/default.nix b/pkgs/servers/emby/default.nix index d10d5490fe1..2f416fabe49 100644 --- a/pkgs/servers/emby/default.nix +++ b/pkgs/servers/emby/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "emby-${version}"; - version = "3.0.5932"; + version = "3.0.5934"; src = fetchurl { url = "https://github.com/MediaBrowser/Emby/releases/download/${version}/Emby.Mono.zip"; - sha256 = "1m6p52q2y0rd8m1488h1cgfq7m6y5njlln73n4lmi0knrmlq3w7r"; + sha256 = "1yjplz7i0lwxjnmrra33xxsvza6gj4dblsl4rqjq1qv6i0jarfv1"; }; buildInputs = [ unzip ]; From 57d9fd8f651c6ea408e5d982bb6a2a7a59a991ce Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Mon, 2 May 2016 23:28:32 +0200 Subject: [PATCH 250/337] linuxband: init at 12.02.1 --- pkgs/applications/audio/linuxband/default.nix | 34 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++- 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 pkgs/applications/audio/linuxband/default.nix diff --git a/pkgs/applications/audio/linuxband/default.nix b/pkgs/applications/audio/linuxband/default.nix new file mode 100644 index 00000000000..a3aa133960f --- /dev/null +++ b/pkgs/applications/audio/linuxband/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchurl, makeWrapper, pkgconfig, MMA, libjack2, libsmf, python, pyGtkGlade, pygtksourceview }: + +stdenv.mkDerivation rec { + version = "12.02.1"; + name = "linuxband-${version}"; + + src = fetchurl { + url = "http://linuxband.org/assets/sources/${name}.tar.gz"; + sha256 = "1r71h4yg775m4gax4irrvygmrsclgn503ykmc2qwjsxa42ri4n2n"; + }; + + buildInputs = [ makeWrapper pkgconfig MMA libjack2 libsmf python pyGtkGlade pygtksourceview ]; + + patchPhase = '' + sed -i 's@/usr/@${MMA}/@g' src/main/config/linuxband.rc.in + cat src/main/config/linuxband.rc.in + ''; + + postFixup = '' + PYTHONPATH=$pyGtkGlade/share/:pygtksourceview/share/:$PYTHONPATH + for f in $out/bin/*; do + wrapProgram $f \ + --prefix PYTHONPATH : $PYTHONPATH + done + ''; + + meta = { + description = "A GUI front-end for MMA: Type in the chords, choose the groove and it will play an accompaniment"; + homepage = http://linuxband.org/; + license = stdenv.lib.licenses.gpl2; + maintainers = [ stdenv.lib.maintainers.magnetophon ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4126d518076..d137f6e67ff 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10003,7 +10003,7 @@ in }; rake = callPackage ../development/tools/build-managers/rake { }; - + redis = callPackage ../servers/nosql/redis { }; redstore = callPackage ../servers/http/redstore { }; @@ -13087,6 +13087,8 @@ in inherit (gnome) libglade; }; + linuxband = callPackage ../applications/audio/linuxband { }; + ledger2 = callPackage ../applications/office/ledger/2.6.3.nix { }; ledger3 = callPackage ../applications/office/ledger { boost = boost155; From 5e0e2e669234e9f14b12c55387848faf9e8fe5a0 Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Mon, 2 May 2016 23:09:06 +0100 Subject: [PATCH 251/337] mono: Update libX11 location --- pkgs/development/compilers/mono/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/mono/default.nix b/pkgs/development/compilers/mono/default.nix index 709f0f55788..54e76c731a1 100644 --- a/pkgs/development/compilers/mono/default.nix +++ b/pkgs/development/compilers/mono/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { # In fact I think this line does not help at all to what I # wanted to achieve: have mono to find libgdiplus automatically - configureFlags = "--x-includes=${libX11}/include --x-libraries=${libX11}/lib --with-libgdiplus=${libgdiplus}/lib/libgdiplus.so ${llvmOpts}"; + configureFlags = "--x-includes=${libX11.dev}/include --x-libraries=${libX11.out}/lib --with-libgdiplus=${libgdiplus}/lib/libgdiplus.so ${llvmOpts}"; # Attempt to fix this error when running "mcs --version": # The file /nix/store/xxx-mono-2.4.2.1/lib/mscorlib.dll is an invalid CIL image @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { # http://www.mono-project.com/Config_DllMap postBuild = '' find . -name 'config' -type f | while read i; do - sed -i "s@libX11.so.6@${libX11}/lib/libX11.so.6@g" $i + sed -i "s@libX11.so.6@${libX11.out}/lib/libX11.so.6@g" $i sed -i "s@/.*libgdiplus.so@${libgdiplus}/lib/libgdiplus.so@g" $i done ''; From 94520a25adc6b6bee799ec9dab344cfdad3f7180 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Tue, 3 May 2016 00:26:01 +0200 Subject: [PATCH 252/337] Adding blktrace Tool to get traces of operations in block devices on linux. --- pkgs/os-specific/linux/blktrace/default.nix | 23 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/os-specific/linux/blktrace/default.nix diff --git a/pkgs/os-specific/linux/blktrace/default.nix b/pkgs/os-specific/linux/blktrace/default.nix new file mode 100644 index 00000000000..3871630758c --- /dev/null +++ b/pkgs/os-specific/linux/blktrace/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, libaio }: + +stdenv.mkDerivation { + name = "blktrace-1.1.0"; + + # Official source + # "git://git.kernel.org/pub/scm/linux/kernel/git/axboe/blktrace.git" + src = fetchurl { + url = "http://brick.kernel.dk/snaps/blktrace-1.1.0.tar.bz2"; + sha256 = "15cj9aki7z5i5y6bnchqry6yp40r4lmgmam6ar5gslnx0smgm8jl"; + }; + + buildInputs = [ libaio ]; + + preConfigure = '' + sed s,/usr/local,$out, -i Makefile + ''; + + meta = { + description = "Block layer IO tracing mechanism"; + license = stdenv.lib.licenses.gpl2; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 35902c65042..3137b95b07a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10212,6 +10212,8 @@ in batctl = callPackage ../os-specific/linux/batman-adv/batctl.nix { }; + blktrace = callPackage ../os-specific/linux/blktrace { }; + bluez4 = lowPrio (callPackage ../os-specific/linux/bluez { pygobject = pygobject3; }); From bc4465e23f1c63e8b1165fb1c3c59699bc62bc34 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 14:06:08 +0200 Subject: [PATCH 253/337] pythonPackages.sqlparse: 0.1.16 -> 0.1.18 --- 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 c85b1ca2508..e664ab56703 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21100,14 +21100,14 @@ in modules // { sqlparse = buildPythonPackage rec { name = "sqlparse-${version}"; - version = "0.1.16"; + version = "0.1.18"; # the source wasn't transformed with 2to3 yet doCheck = !isPy3k; src = pkgs.fetchurl { url = "mirror://pypi/s/sqlparse/${name}.tar.gz"; - sha256 = "108gy82x7davjrn3jqn7yv4r5v4jrzp892ysfx8l00abr8v6r337"; + sha256 = "1kypl9l2nkzy3pmr89mvpfl65xk1m5y4aaghhandcxkgl329dc9r"; }; meta = { From 6b6463dbd26397b932b473c076471fcb244d148e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 17:31:07 +0200 Subject: [PATCH 254/337] dpkg: 1.18.4 -> 1.18.5 --- 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 ad351914cb3..bc07f3e536f 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.4"; + version = "1.18.5"; src = fetchurl { url = "mirror://debian/pool/main/d/dpkg/dpkg_${version}.tar.xz"; - sha256 = "1nh6y6xvnq6f4qd6y3dx9m77sxjg4qk1z1j5pwayg348d0w292gy"; + sha256 = "01wb8qa4vv2dpd1gv5bm0qzgzb35wn5ij7daqd7b3977l5k6lkh7"; }; postPatch = '' From d6c3407f7b4b9780418e60519a4a511aa562f46d Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 18:07:32 +0200 Subject: [PATCH 255/337] btrfs-progs: 4.5.1 -> 4.5.2 --- pkgs/tools/filesystems/btrfs-progs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/btrfs-progs/default.nix b/pkgs/tools/filesystems/btrfs-progs/default.nix index d0fda2da414..e88c0088ef3 100644 --- a/pkgs/tools/filesystems/btrfs-progs/default.nix +++ b/pkgs/tools/filesystems/btrfs-progs/default.nix @@ -2,14 +2,14 @@ , asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt }: -let version = "4.5.1"; in +let version = "4.5.2"; in stdenv.mkDerivation rec { name = "btrfs-progs-${version}"; src = fetchurl { url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; - sha256 = "1znf2zhb56zbmdjk3lq107678xwsqwc5gczspypmc5i31qnppy7f"; + sha256 = "09qjz3idz8y3rlrb0sxshc1bnpmrr4v9lqg5aimp09i9ywa8kyxf"; }; buildInputs = [ From 69ef7566a8b4a63cdc4380da37ed9088a1298b60 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 02:00:39 +0200 Subject: [PATCH 256/337] wireless-regdb: 2016-02-08 -> 2016-05-02 --- pkgs/data/misc/wireless-regdb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/misc/wireless-regdb/default.nix b/pkgs/data/misc/wireless-regdb/default.nix index 3c74123d605..37488c550d0 100644 --- a/pkgs/data/misc/wireless-regdb/default.nix +++ b/pkgs/data/misc/wireless-regdb/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "wireless-regdb-${version}"; - version = "2016-02-08"; + version = "2016-05-02"; src = fetchgit { - sha256 = "0cqnkkcni27ya6apy2ba4im7xj4nrhbcgrahlarvrzbbjkp740m9"; + sha256 = "04vqhhqm307bx63ihmli751r15b5vrp3011rj1addlkya56wflby"; url = https://git.kernel.org/pub/scm/linux/kernel/git/sforshee/wireless-regdb.git; rev = "refs/tags/master-${version}"; }; From 84bf43a702026ec02355379490ef881a4ee75af5 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 3 May 2016 00:17:45 +0000 Subject: [PATCH 257/337] openjdk: 8u76 -> 8u92 --- pkgs/development/compilers/openjdk/8.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/development/compilers/openjdk/8.nix b/pkgs/development/compilers/openjdk/8.nix index 7ba6b56a8f3..0eb427754b3 100644 --- a/pkgs/development/compilers/openjdk/8.nix +++ b/pkgs/development/compilers/openjdk/8.nix @@ -18,42 +18,42 @@ let else throw "openjdk requires i686-linux or x86_64 linux"; - update = "76"; - build = "00"; + update = "92"; + build = "14"; baseurl = "http://hg.openjdk.java.net/jdk8u/jdk8u"; repover = "jdk8u${update}-b${build}"; paxflags = if stdenv.isi686 then "msp" else "m"; jdk8 = fetchurl { url = "${baseurl}/archive/${repover}.tar.gz"; - sha256 = "1bzwrm18vdd531xxin7pzsc5dx2ybkdgdxz6jp2ki19ka6pmk1l7"; + sha256 = "05ly2v3b6vr3sxa27m7ahlp8w4w1q68rki2dfczrklcdq4l61g0r"; }; langtools = fetchurl { url = "${baseurl}/langtools/archive/${repover}.tar.gz"; - sha256 = "044gyb7hgrahlr78vah9r3wfv6w569ihqzwqplwzr6m0l1s52994"; + sha256 = "1zb7gvj1b1q3pvq5x7ac98k5dk83m7849ngcy1swfwj18g8i4k9p"; }; hotspot = fetchurl { url = "${baseurl}/hotspot/archive/${repover}.tar.gz"; - sha256 = "1if70s9wjsvmrdj92ky88ngpmigi9c5gfpkilpydzdibs38f05f8"; + sha256 = "057qrhm9gbz672qgb85al9p3qvgvbviadppf5a9b8hp5sg322f35"; }; corba = fetchurl { url = "${baseurl}/corba/archive/${repover}.tar.gz"; - sha256 = "0fl852x25cjzz3lrhjnhj59qbb4m3ywwc2f9vbj6mqdnpzl7cg83"; + sha256 = "0s9h61jw42nbvrw24qaizp7pp063ala37sjgl547zfglhk1dlzi8"; }; jdk = fetchurl { url = "${baseurl}/jdk/archive/${repover}.tar.gz"; - sha256 = "11ql3p5fsizrn1fiylfkgrw0lgf6snwyich18hggsmd00bhvv3ah"; + sha256 = "0sgyjdmxsrdj8b8y2ri3c70x9l9m777v559cq8rmaz1jpc9lld4s"; }; jaxws = fetchurl { url = "${baseurl}/jaxws/archive/${repover}.tar.gz"; - sha256 = "1d2q4bbvlz557caqciwpd5ms9f14bjk8jl5zlfflqnww9b097qy4"; + sha256 = "12aajlswn5nkm4nbrdh3jff2sz81wdczrgliwd5lnqfnh73sbbkp"; }; jaxp = fetchurl { url = "${baseurl}/jaxp/archive/${repover}.tar.gz"; - sha256 = "0nrd4c77ggxkyv2271k30afbjjcp0kybc8gcypmhy8by54w4ap0j"; + sha256 = "133r5wicgva6mklrlnvb09p9izyw0fj281s51kndf3ba3zzggvv3"; }; nashorn = fetchurl { url = "${baseurl}/nashorn/archive/${repover}.tar.gz"; - sha256 = "11idvkzk4nqhhw4xq5pl03g4gwnaiq021xxj2yx54rixr59zl0q6"; + sha256 = "1rmk868qg7kgv7f5lhj1b7wdnql0bj2bfqd2lg9ci64418j8x8bn"; }; openjdk8 = stdenv.mkDerivation { name = "openjdk-8u${update}b${build}"; From 8536d8b4ed935e48ec5d6b4b1f22b0ff2b79f6b8 Mon Sep 17 00:00:00 2001 From: obadz Date: Tue, 3 May 2016 01:39:46 +0100 Subject: [PATCH 258/337] tcpflow: 1.4.5 -> 1.4.6 (#15151) Switch to fetchFromGitHub as website does not have latest version. Default to not building against cairo to avoid dependencies on lots of graphic libraries for a predominently command-line application. --- pkgs/tools/networking/tcpflow/default.nix | 80 ++++++++++++++++------- 1 file changed, 56 insertions(+), 24 deletions(-) diff --git a/pkgs/tools/networking/tcpflow/default.nix b/pkgs/tools/networking/tcpflow/default.nix index 935251ba057..52727f1c49e 100644 --- a/pkgs/tools/networking/tcpflow/default.nix +++ b/pkgs/tools/networking/tcpflow/default.nix @@ -1,29 +1,61 @@ -{stdenv, fetchurl, openssl, zlib, libpcap, boost, cairo}: -let - s = # Generated upstream information - rec { - baseName="tcpflow"; - version="1.4.5"; - name="${baseName}-${version}"; - hash="0whcyykq710s84jyiaqp6rsr19prd0pr1g1pg74mif0ig51yv7zk"; - url="http://www.digitalcorpora.org/downloads/tcpflow/tcpflow-1.4.5.tar.gz"; - sha256="0whcyykq710s84jyiaqp6rsr19prd0pr1g1pg74mif0ig51yv7zk"; +{ stdenv, lib, fetchFromGitHub, openssl, zlib, libpcap, boost, cairo, automake, autoconf, useCairo ? false }: + +stdenv.mkDerivation rec { + baseName = "tcpflow"; + version = "1.4.6"; + name = "${baseName}-${version}"; + + src = fetchFromGitHub { + owner = "simsong"; + repo = "tcpflow"; + rev = "017687365b8233d16260f4afd7572c8ad8873cf6"; + sha256 = "002cqmn786sjysf59xnbb7lgr23nqqslb2gvy29q2xpnq6my9w38"; }; - buildInputs = [ - openssl zlib libpcap boost cairo - ]; -in -stdenv.mkDerivation { - inherit (s) name version; - inherit buildInputs; - src = fetchurl { - inherit (s) url sha256; + + be13_api = fetchFromGitHub { + owner = "simsong"; + repo = "be13_api"; + rev = "8f4f4b3fe0b4815babb3a6fb595eb9a6d07e8a2e"; + sha256 = "1dlys702x3m8cr9kf4b9j8n28yh6knhwgqkm6a5yhh1grd8r3ksm"; }; - meta = { - inherit (s) version; + + dfxml = fetchFromGitHub { + owner = "simsong"; + repo = "dfxml"; + rev = "13a8cc22189a8336d16777f2897ada6ae2ee59de"; + sha256 = "0wzhbkp4c8sp6wrk4ilz3skxp14scdnm3mw2xmxxrsifymzs2f5n"; + }; + + httpparser = fetchFromGitHub { + owner = "nodejs"; + repo = "http-parser"; + rev = "8d9e5db981b623fffc93657abacdc80270cbee58"; + sha256 = "0x17wwhrc7b2ngiqy0clnzn1zz2gbcz5n9m29pcyrcplly782k52"; + }; + + buildInputs = [ openssl zlib libpcap boost automake autoconf ] ++ lib.optional useCairo cairo; + + postUnpack = '' + pushd tcpflow-*-src/src + cp -rv ${be13_api}/* be13_api/ + cp -rv ${dfxml}/* dfxml/ + cp -rv ${httpparser}/* http-parser/ + chmod -R u+w dfxml + popd + ''; + + prePatch = '' + substituteInPlace ./bootstrap.sh \ + --replace \ git 'echo git' \ + --replace /bin/rm rm + ''; + + preConfigure = "bash ./bootstrap.sh"; + + meta = with stdenv.lib; { description = ''TCP stream extractor''; - license = stdenv.lib.licenses.gpl3 ; - maintainers = [stdenv.lib.maintainers.raskin]; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl3 ; + maintainers = with maintainers; [ raskin obadz ]; + platforms = platforms.linux; }; } From 21b667e066400ed91b40ffa00ce5b451a967f866 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 02:42:41 +0200 Subject: [PATCH 259/337] rescuetime: 2.8.9.1170 -> 2.9.10.1255 --- pkgs/applications/misc/rescuetime/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/rescuetime/default.nix b/pkgs/applications/misc/rescuetime/default.nix index a5b90890df2..b74d2716f98 100644 --- a/pkgs/applications/misc/rescuetime/default.nix +++ b/pkgs/applications/misc/rescuetime/default.nix @@ -5,18 +5,18 @@ let if stdenv.system == "i686-linux" then fetchurl { name = "rescuetime-installer.deb"; url = "https://www.rescuetime.com/installers/rescuetime_current_i386.deb"; - sha256 = "15x3nvhxk4f0rga0i99c6lhaa1rwdi446kxnx1l4jprhbl788sx6"; + sha256 = "1wi9ikwmc9jfilj8adad3rcb7rmmxkpkfcp2gkfxvdyw6n0mzcnf"; } else fetchurl { name = "rescuetime-installer.deb"; url = "https://www.rescuetime.com/installers/rescuetime_current_amd64.deb"; - sha256 = "0ibdlx8fdlmh81908d1syb7c5lf88pqp49fl7r43cj6bybpdx411"; + sha256 = "074yivz7rz1ac1962dix0aahpyqvsrkizh32kk5hyw5az0vqpcjs"; }; in stdenv.mkDerivation { # https://www.rescuetime.com/updates/linux_release_notes.html - name = "rescuetime-2.8.9.1170"; + name = "rescuetime-2.9.10.1255"; inherit src; buildInputs = [ dpkg makeWrapper ]; unpackPhase = '' From 5d25d7d9876d34f843e5ab6b727e04551ae04ca7 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 03:01:45 +0200 Subject: [PATCH 260/337] rescuetime: use makeLibraryPath for LD_PRELOAD hack --- pkgs/applications/misc/rescuetime/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/rescuetime/default.nix b/pkgs/applications/misc/rescuetime/default.nix index b74d2716f98..974c593d37c 100644 --- a/pkgs/applications/misc/rescuetime/default.nix +++ b/pkgs/applications/misc/rescuetime/default.nix @@ -24,7 +24,11 @@ stdenv.mkDerivation { dpkg-deb -x $src pkg sourceRoot=pkg ''; - installPhase = '' + installPhase = let + + lib = p: stdenv.lib.makeLibraryPath [ p ]; + + in '' mkdir -p $out/bin cp usr/bin/rescuetime $out/bin @@ -33,7 +37,7 @@ stdenv.mkDerivation { $out/bin/rescuetime wrapProgram $out/bin/rescuetime \ - --prefix LD_PRELOAD : ${qt4}/lib/libQtGui.so.4:${qt4}/lib/libQtCore.so.4:${libXtst}/lib/libXtst.so.6:${libXext}/lib/libXext.so.6:${libX11}/lib/libX11.so.6:${libXScrnSaver}/lib/libXss.so.1 + --prefix LD_PRELOAD : ${lib qt4}/libQtGui.so.4:${lib qt4}/libQtCore.so.4:${lib libXtst}/libXtst.so.6:${lib libXext}/libXext.so.6:${lib libX11}/libX11.so.6:${lib libXScrnSaver}/libXss.so.1 ''; meta = with lib; { description = "Helps you understand your daily habits so you can focus and be more productive"; From 78c500a8d1f3dc8220c199d3357e0c0cac48db71 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 03:29:34 +0200 Subject: [PATCH 261/337] perlPackages.PerlIO-eol: 0.14 -> 0.16 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 08b6ccd49d7..5f29264b29d 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -9637,11 +9637,11 @@ let self = _self // overrides; _self = with self; { }; }; - PerlIOeol = buildPerlPackage { - name = "PerlIO-eol-0.14"; + PerlIOeol = buildPerlPackage rec { + name = "PerlIO-eol-0.16"; src = fetchurl { - url = mirror://cpan/authors/id/A/AU/AUDREYT/PerlIO-eol-0.14.tar.gz; - sha256 = "1rwj0r075jfvvd0fnzgdqldc7qdb94wwsi21rs2l6yhcv0380fs2"; + url = "mirror://cpan/authors/id/S/SH/SHLOMIF/${name}.tar.gz"; + sha256 = "159zrrf44469sjklsi0pb4c005q74d9242q7mqawvbwnxjqbh0a5"; }; }; From b2ea81bd0f7e3a8c70f846502e54f3a01f628bbf Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 03:30:27 +0200 Subject: [PATCH 262/337] perlPackages.threads: 2.02 -> 2.07 --- 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 5f29264b29d..3b58f0fcdc1 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -13047,10 +13047,10 @@ let self = _self // overrides; _self = with self; { }; threads = buildPerlPackage rec { - name = "threads-2.02"; + name = "threads-2.07"; src = fetchurl { url = "mirror://cpan/authors/id/J/JD/JDHEDDEN/${name}.tar.gz"; - sha256 = "0vij8lagq4x6gv88x9gg23jd7i0s5fyyzs2wrxacih2ppj6kkiff"; + sha256 = "0fgprp2ghrh1ryxmr0y9bpsjl1ifbf4lqml8k017cbl4zbn21lim"; }; meta = { description = "Perl interpreter-based threads"; From 15af160ec021bae8603d57416836bbf09186ad9e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 03:30:56 +0200 Subject: [PATCH 263/337] perlPackages.threads-shared: 1.48 -> 1.51 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 3b58f0fcdc1..45a4eb5a1f3 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -13058,11 +13058,11 @@ let self = _self // overrides; _self = with self; { }; }; - threadsshared = buildPerlPackage { - name = "threads-shared-1.48"; + threadsshared = buildPerlPackage rec { + name = "threads-shared-1.51"; src = fetchurl { - url = mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-shared-1.48.tar.gz; - sha256 = "7378a72bae424705e354476da69995fb8f62432bca8e98eab0fb9842da5120f8"; + url = "mirror://cpan/authors/id/J/JD/JDHEDDEN/${name}.tar.gz"; + sha256 = "0qsbl8rx8p09cb5vj1yhwf1h2awvimfyckw1qwrqbk7dxjldrimn"; }; meta = { description = "Perl extension for sharing data structures between threads"; From 41de2cacb895e1a8c40a0d0162b1e8bd276d673d Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 03:31:25 +0200 Subject: [PATCH 264/337] perlPackages.Thread-Queue: 3.05 -> 3.09 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 45a4eb5a1f3..ef9207f14af 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -13070,11 +13070,11 @@ let self = _self // overrides; _self = with self; { }; }; - ThreadQueue = buildPerlPackage { - name = "Thread-Queue-3.05"; + ThreadQueue = buildPerlPackage rec { + name = "Thread-Queue-3.09"; src = fetchurl { - url = mirror://cpan/authors/id/J/JD/JDHEDDEN/Thread-Queue-3.05.tar.gz; - sha256 = "36bc1e50b5de47ff827fbaa1d7f028016e3ef115972cac84ed8cd73a0ef95300"; + url = "mirror://cpan/authors/id/J/JD/JDHEDDEN/${name}.tar.gz"; + sha256 = "0f03v10rsasi2j4lh8xw44jac8nfbw66274qgsz5lsmfd6wqvj12"; }; meta = { description = "Thread-safe queues"; From 95aab50e81012f58901682bb7d40183baada4176 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 03:50:13 +0200 Subject: [PATCH 265/337] efivar: 0.21 -> 0.23 --- pkgs/tools/system/efivar/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/system/efivar/default.nix b/pkgs/tools/system/efivar/default.nix index a9c3ebd0252..b4da2044f69 100644 --- a/pkgs/tools/system/efivar/default.nix +++ b/pkgs/tools/system/efivar/default.nix @@ -1,21 +1,21 @@ -{ stdenv, fetchFromGitHub, popt }: +{ stdenv, fetchFromGitHub, pkgconfig, popt }: stdenv.mkDerivation rec { name = "efivar-${version}"; - version = "0.21"; + version = "0.23"; src = fetchFromGitHub { owner = "rhinstaller"; repo = "efivar"; rev = version; - sha256 = "0iakv8prvl61mb2wnll02sxlg3kfzh3d4qb41d0bklmnljjkqr8p"; + sha256 = "1fdqi053v335pjwj1i3yi9f1kasdzg3agfcp36bxsbhqjp4imlid"; }; + nativeBuildInputs = [ pkgconfig ]; buildInputs = [ popt ]; - # 0.21 Has build warnings so disable -Werror postPatch = '' - sed -i 's,-Werror,,g' Make.defaults + substituteInPlace src/Makefile --replace "-static" "" ''; installFlags = [ @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { ]; meta = with stdenv.lib; { - homepage = http://github.com/vathpela/efivar; + inherit (src.meta) homepage; description = "Tools and library to manipulate EFI variables"; platforms = platforms.linux; license = licenses.lgpl21; From 9c7f71cd618b8ca7b97e130bf01d526730faa5b2 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 04:00:25 +0200 Subject: [PATCH 266/337] unarj: 2.63a -> 2.65 --- pkgs/tools/archivers/unarj/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/archivers/unarj/default.nix b/pkgs/tools/archivers/unarj/default.nix index 546f398bec3..c8e4e92a404 100644 --- a/pkgs/tools/archivers/unarj/default.nix +++ b/pkgs/tools/archivers/unarj/default.nix @@ -1,11 +1,12 @@ {stdenv, fetchurl}: stdenv.mkDerivation rec { - name = "unarj-2.63a"; + name = "unarj-${version}"; + version = "2.65"; src = fetchurl { - url = http://www.ibiblio.org/pub/Linux/utils/compress/unarj-2.63a.tar.gz; - sha256 = "0j4sn57fq2p23pcq4ck06pm618q4vq09wgm89ilfn4c9l9x2ky1k"; + sha256 = "0r027z7a0azrd5k885xvwhrxicpd0ah57jzmaqlypxha2qjw7p6p"; + url = "http://pkgs.fedoraproject.org/repo/pkgs/unarj/${name}.tar.gz/c6fe45db1741f97155c7def322aa74aa/${name}.tar.gz"; }; preInstall = '' From 7a595cdfc308b85bbc49e5f318a0809fe734c5f6 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 04:11:44 +0200 Subject: [PATCH 267/337] libpwquality: 1.2.3 -> 1.3.0 --- pkgs/development/libraries/libpwquality/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libpwquality/default.nix b/pkgs/development/libraries/libpwquality/default.nix index aaa39783fa7..fa272f2ec6f 100644 --- a/pkgs/development/libraries/libpwquality/default.nix +++ b/pkgs/development/libraries/libpwquality/default.nix @@ -1,11 +1,12 @@ -{ stdenv, cracklib, fetchurl, python }: +{ stdenv, fetchurl, cracklib, python }: stdenv.mkDerivation rec { - name = "libpwquality-1.2.3"; + name = "libpwquality-${version}"; + version = "1.3.0"; src = fetchurl { url = "https://fedorahosted.org/releases/l/i/libpwquality/${name}.tar.bz2"; - sha256 = "0sjiabvl5277nfxyy96jdz65a0a3pmkkwrfbziwgik83gg77j75i"; + sha256 = "0aidriag6h0syfm33nzdfdsqgrnsgihwjv3a5lgkqch3w68fmlkl"; }; buildInputs = [ cracklib python ]; From 49fd7d9d086483bf83911fbf292bd2f229c2ff21 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 04:21:44 +0200 Subject: [PATCH 268/337] autoconf-archive: 2015.09.25 -> 2016.03.20 --- pkgs/development/tools/misc/autoconf-archive/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/autoconf-archive/default.nix b/pkgs/development/tools/misc/autoconf-archive/default.nix index 31bd4fb1c43..70dccdcd626 100644 --- a/pkgs/development/tools/misc/autoconf-archive/default.nix +++ b/pkgs/development/tools/misc/autoconf-archive/default.nix @@ -1,12 +1,14 @@ { stdenv, fetchurl, xz }: + stdenv.mkDerivation rec { name = "autoconf-archive-${version}"; - version = "2015.09.25"; + version = "2016.03.20"; src = fetchurl { url = "mirror://gnu/autoconf-archive/autoconf-archive-${version}.tar.xz"; - sha256 = "02im1jn0igzn2qpxkgiwxvcm3jgvjaypg955pi9h2d6jvfjnf13w"; + sha256 = "0dz4fnc723jqn3by22ds5fys7g31apzm1r9allldvva0yvzjxyw8"; }; + buildInputs = [ xz ]; meta = with stdenv.lib; { From 078f14e058df0abd27957d86548e8602c1df94e3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 04:31:20 +0200 Subject: [PATCH 269/337] hicolor_icon_theme: 0.14 -> 0.15 --- pkgs/data/icons/hicolor-icon-theme/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/icons/hicolor-icon-theme/default.nix b/pkgs/data/icons/hicolor-icon-theme/default.nix index a0c9920177d..5d089315448 100644 --- a/pkgs/data/icons/hicolor-icon-theme/default.nix +++ b/pkgs/data/icons/hicolor-icon-theme/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "hicolor-icon-theme-0.14"; + name = "hicolor-icon-theme-0.15"; src = fetchurl { url = "http://icon-theme.freedesktop.org/releases/${name}.tar.xz"; - sha256 = "1k9fj0lb9b44inb5q5m04910x5nfkzrxl3ys9ckihqrixzk0dvbv"; + sha256 = "1k1kf2c5zbqh31nglc3nxs9j6wr083k9kjyql8p22ccc671mmi4w"; }; setupHook = ./setup-hook.sh; From be3d012da424d4efb2e3d23a0f7a4559377397a6 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 04:33:49 +0200 Subject: [PATCH 270/337] highlight: 3.18 -> 3.28 --- pkgs/tools/text/highlight/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/text/highlight/default.nix b/pkgs/tools/text/highlight/default.nix index debf862672c..81995705b52 100644 --- a/pkgs/tools/text/highlight/default.nix +++ b/pkgs/tools/text/highlight/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, getopt, lua, boost, pkgconfig }: stdenv.mkDerivation rec { - name = "highlight-3.18"; + name = "highlight-${version}"; + version = "3.28"; src = fetchurl { url = "http://www.andre-simon.de/zip/${name}.tar.bz2"; - sha256 = "0jsq78qb75sawwggbpx5pdqxk00wgjr1a0la0w8wihmamsjzgijm"; + sha256 = "1kg73isgz3czb1k6ccajqzifahr3zs9ci8168k0dlj31j1nlndin"; }; buildInputs = [ getopt lua boost pkgconfig ]; From 19ce448380af5dfc5f8254ca0470807c543fdca7 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Mon, 2 May 2016 22:57:45 +0200 Subject: [PATCH 271/337] bind: 9.10.3-P4 -> 9.10.4 --- pkgs/servers/dns/bind/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index 61ca93184dd..ac96b3c353a 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, openssl, libtool, perl, libxml2 }: -let version = "9.10.3-P4"; in +let version = "9.10.4"; in stdenv.mkDerivation rec { name = "bind-${version}"; src = fetchurl { url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz"; - sha256 = "0giys46ifypysf799w9v58kbaz1v3fbdzw3s212znifzzfsl9h1a"; + sha256 = "0mmhzi4483mkak47wj255a36g3v0yilxwfwlbckr1hssinri5m7q"; }; patches = [ ./libressl.patch ./remove-mkdir-var.patch ]; From 5be72c23eadfcd8c459a43a828389c8bf0d893b2 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Mon, 2 May 2016 23:09:27 +0200 Subject: [PATCH 272/337] bind: LibreSSL compatibility added upstream --- pkgs/servers/dns/bind/default.nix | 2 +- pkgs/servers/dns/bind/libressl.patch | 102 --------------------------- 2 files changed, 1 insertion(+), 103 deletions(-) delete mode 100644 pkgs/servers/dns/bind/libressl.patch diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index ac96b3c353a..a92da7f35ed 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { sha256 = "0mmhzi4483mkak47wj255a36g3v0yilxwfwlbckr1hssinri5m7q"; }; - patches = [ ./libressl.patch ./remove-mkdir-var.patch ]; + patches = [ ./remove-mkdir-var.patch ]; buildInputs = [ openssl libtool perl libxml2 ]; diff --git a/pkgs/servers/dns/bind/libressl.patch b/pkgs/servers/dns/bind/libressl.patch deleted file mode 100644 index b77f24ee429..00000000000 --- a/pkgs/servers/dns/bind/libressl.patch +++ /dev/null @@ -1,102 +0,0 @@ -$OpenBSD: patch-lib_dns_openssl_link_c,v 1.1 2015/09/16 15:28:16 sthen Exp $ ---- a/lib/dns/openssl_link.c Wed Sep 16 14:01:23 2015 -+++ b/lib/dns/openssl_link.c Wed Sep 16 14:01:46 2015 -@@ -88,7 +88,7 @@ entropy_getpseudo(unsigned char *buf, int num) { - return (result == ISC_R_SUCCESS ? 1 : -1); - } - --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - static void - entropy_add(const void *buf, int num, double entropy) { - /* -@@ -121,7 +121,7 @@ lock_callback(int mode, int type, const char *file, in - UNLOCK(&locks[type]); - } - --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - static unsigned long - id_callback(void) { - return ((unsigned long)isc_thread_self()); -@@ -187,7 +187,7 @@ dst__openssl_init(const char *engine) { - if (result != ISC_R_SUCCESS) - goto cleanup_mutexalloc; - CRYPTO_set_locking_callback(lock_callback); --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - CRYPTO_set_id_callback(id_callback); - #endif - -@@ -287,7 +287,7 @@ dst__openssl_destroy(void) { - CRYPTO_cleanup_all_ex_data(); - #endif - ERR_clear_error(); --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - ERR_remove_state(0); - #endif - ERR_free_strings(); ---- a/lib/dns/dst_openssl.h Wed Sep 16 14:00:47 2015 -+++ b/lib/dns/dst_openssl.h Wed Sep 16 14:02:42 2015 -@@ -36,7 +36,7 @@ - #define USE_ENGINE 1 - #endif - --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - /* - * These are new in OpenSSL 1.1.0. BN_GENCB _cb needs to be declared in - * the function like this before the BN_GENCB_new call: ---- a/lib/dns/openssldh_link.c Wed Sep 16 14:01:23 2015 -+++ b/lib/dns/openssldh_link.c Wed Sep 16 14:02:06 2015 -@@ -173,7 +173,7 @@ openssldh_generate(dst_key_t *key, int generator, void - DH *dh = NULL; - #if OPENSSL_VERSION_NUMBER > 0x00908000L - BN_GENCB *cb; --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - BN_GENCB _cb; - #endif - union { -@@ -210,7 +210,7 @@ openssldh_generate(dst_key_t *key, int generator, void - if (dh == NULL) - return (dst__openssl_toresult(ISC_R_NOMEMORY)); - cb = BN_GENCB_new(); --#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) - if (cb == NULL) { - DH_free(dh); - return (dst__openssl_toresult(ISC_R_NOMEMORY)); ---- a/lib/dns/openssldsa_link.c Wed Sep 16 14:01:23 2015 -+++ b/lib/dns/openssldsa_link.c Wed Sep 16 14:02:22 2015 -@@ -359,7 +359,7 @@ openssldsa_generate(dst_key_t *key, int unused, void ( - isc_result_t result; - #if OPENSSL_VERSION_NUMBER > 0x00908000L - BN_GENCB *cb; --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - BN_GENCB _cb; - #endif - union { -@@ -383,7 +383,7 @@ openssldsa_generate(dst_key_t *key, int unused, void ( - if (dsa == NULL) - return (dst__openssl_toresult(DST_R_OPENSSLFAILURE)); - cb = BN_GENCB_new(); --#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) - if (cb == NULL) { - DSA_free(dsa); - return (dst__openssl_toresult(DST_R_OPENSSLFAILURE)); -$OpenBSD: patch-lib_dns_opensslrsa_link_c,v 1.1 2015/09/16 15:28:16 sthen Exp $ ---- a/lib/dns/opensslrsa_link.c Wed Sep 16 14:01:23 2015 -+++ b/lib/dns/opensslrsa_link.c Wed Sep 16 14:02:31 2015 -@@ -771,7 +771,7 @@ opensslrsa_generate(dst_key_t *key, int exp, void (*ca - } u; - RSA *rsa = RSA_new(); - BIGNUM *e = BN_new(); --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - BN_GENCB _cb; - #endif - BN_GENCB *cb = BN_GENCB_new(); From 6ca5c3667b68ed6a7f11a68201ef59730179c3e9 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 3 May 2016 08:59:18 +0200 Subject: [PATCH 273/337] kde: cleanup from closure-size merge (#15179) part of 98d8e1a160d3138e9ef3a51f727b04315ab9e285 and 7049bde4d5ffc9475eab99c490e6c35d71eb1534 got lost --- .../kde-5/frameworks-5.19/kdelibs4support.nix | 32 - .../libraries/kde-frameworks-5.19/attica.nix | 11 - .../libraries/kde-frameworks-5.19/baloo.nix | 25 - .../kde-frameworks-5.19/bluez-qt.nix | 17 - .../kde-frameworks-5.19/breeze-icons.nix | 10 - .../libraries/kde-frameworks-5.19/default.nix | 114 ---- .../extra-cmake-modules/default.nix | 20 - .../extra-cmake-modules/nix-lib-path.patch | 37 -- .../extra-cmake-modules/series | 1 - .../extra-cmake-modules/setup-hook.sh | 81 --- .../kde-frameworks-5.19/fetchsrcs.sh | 57 -- .../frameworkintegration.nix | 17 - .../kde-frameworks-5.19/kactivities.nix | 22 - .../libraries/kde-frameworks-5.19/kapidox.nix | 12 - .../kde-frameworks-5.19/karchive.nix | 11 - .../kauth/cmake-install-paths.patch | 17 - .../kde-frameworks-5.19/kauth/default.nix | 16 - .../kde-frameworks-5.19/kauth/series | 1 - .../kde-frameworks-5.19/kbookmarks.nix | 25 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kde-frameworks-5.19/kcmutils/default.nix | 17 - .../libraries/kde-frameworks-5.19/kcodecs.nix | 11 - .../kde-frameworks-5.19/kcompletion.nix | 14 - .../libraries/kde-frameworks-5.19/kconfig.nix | 16 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kconfigwidgets/default.nix | 17 - .../kde-frameworks-5.19/kcoreaddons.nix | 16 - .../libraries/kde-frameworks-5.19/kcrash.nix | 16 - .../kde-frameworks-5.19/kdbusaddons.nix | 17 - .../kde-frameworks-5.19/kdeclarative.nix | 22 - .../libraries/kde-frameworks-5.19/kded.nix | 19 - .../kdelibs4support/default.nix | 36 -- .../kdelibs4support/nix-kde-include-dir.patch | 13 - .../kdelibs4support/series | 1 - .../kdelibs4support/setup-hook.sh | 1 - .../kde-frameworks-5.19/kdesignerplugin.nix | 34 -- .../libraries/kde-frameworks-5.19/kdesu.nix | 13 - .../kde-frameworks-5.19/kdewebkit.nix | 13 - .../libraries/kde-frameworks-5.19/kdnssd.nix | 13 - .../kde-frameworks-5.19/kdoctools/default.nix | 19 - .../kdoctools-no-find-docbook-xml.patch | 12 - .../kde-frameworks-5.19/kemoticons.nix | 17 - .../kfilemetadata/cmake-install-paths.patch | 13 - .../kfilemetadata/default.nix | 14 - .../kde-frameworks-5.19/kfilemetadata/series | 1 - .../kde-frameworks-5.19/kglobalaccel.nix | 23 - .../kde-frameworks-5.19/kguiaddons.nix | 13 - .../libraries/kde-frameworks-5.19/khtml.nix | 21 - .../libraries/kde-frameworks-5.19/ki18n.nix | 17 - .../kiconthemes/default-theme-breeze.patch | 13 - .../kiconthemes/default.nix | 18 - .../kde-frameworks-5.19/kiconthemes/series | 1 - .../kde-frameworks-5.19/kidletime.nix | 15 - .../kde-frameworks-5.19/kimageformats.nix | 13 - .../kinit/0001-kinit-libpath.patch | 42 -- .../kde-frameworks-5.19/kinit/default.nix | 17 - .../kde-frameworks-5.19/kio/default.nix | 33 - .../kio/samba-search-path.patch | 28 - .../libraries/kde-frameworks-5.19/kio/series | 1 - .../kde-frameworks-5.19/kitemmodels.nix | 11 - .../kde-frameworks-5.19/kitemviews.nix | 11 - .../kde-frameworks-5.19/kjobwidgets.nix | 16 - .../libraries/kde-frameworks-5.19/kjs.nix | 16 - .../kde-frameworks-5.19/kjsembed.nix | 17 - .../kde-frameworks-5.19/kmediaplayer.nix | 15 - .../kde-frameworks-5.19/knewstuff.nix | 17 - .../kde-frameworks-5.19/knotifications.nix | 21 - .../kde-frameworks-5.19/knotifyconfig.nix | 13 - .../kpackage/allow-external-paths.patch | 13 - .../kde-frameworks-5.19/kpackage/default.nix | 23 - .../qdiriterator-follow-symlinks.patch | 26 - .../kde-frameworks-5.19/kpackage/series | 2 - .../libraries/kde-frameworks-5.19/kparts.nix | 17 - .../libraries/kde-frameworks-5.19/kpeople.nix | 15 - .../kde-frameworks-5.19/kplotting.nix | 11 - .../libraries/kde-frameworks-5.19/kpty.nix | 10 - .../libraries/kde-frameworks-5.19/kross.nix | 14 - .../libraries/kde-frameworks-5.19/krunner.nix | 16 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kservice/0002-no-canonicalize-path.patch | 25 - .../kde-frameworks-5.19/kservice/default.nix | 18 - .../ktexteditor/default.nix | 22 - .../ktexteditor/no-qcoreapplication.patch | 36 -- .../kde-frameworks-5.19/ktexteditor/series | 1 - .../kde-frameworks-5.19/ktextwidgets.nix | 16 - .../kde-frameworks-5.19/kunitconversion.nix | 10 - .../libraries/kde-frameworks-5.19/kwallet.nix | 21 - .../kde-frameworks-5.19/kwidgetsaddons.nix | 11 - .../kde-frameworks-5.19/kwindowsystem.nix | 13 - .../libraries/kde-frameworks-5.19/kxmlgui.nix | 18 - .../kde-frameworks-5.19/kxmlrpcclient.nix | 10 - .../kde-frameworks-5.19/modemmanager-qt.nix | 13 - .../kde-frameworks-5.19/networkmanager-qt.nix | 13 - .../kde-frameworks-5.19/oxygen-icons5.nix | 13 - .../plasma-framework/default.nix | 25 - .../libraries/kde-frameworks-5.19/solid.nix | 17 - .../libraries/kde-frameworks-5.19/sonnet.nix | 13 - .../libraries/kde-frameworks-5.19/srcs.nix | 565 ------------------ .../kde-frameworks-5.19/threadweaver.nix | 11 - 99 files changed, 2376 deletions(-) delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/attica.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/baloo.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/bluez-qt.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/breeze-icons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/nix-lib-path.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/setup-hook.sh delete mode 100755 pkgs/development/libraries/kde-frameworks-5.19/fetchsrcs.sh delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/frameworkintegration.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kactivities.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kapidox.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/karchive.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kauth/cmake-install-paths.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kauth/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kauth/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kbookmarks.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kcmutils/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kcodecs.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kcompletion.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kconfig.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kcoreaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kcrash.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdbusaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdeclarative.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kded.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/setup-hook.sh delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdesignerplugin.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdesu.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdewebkit.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdnssd.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdoctools/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kemoticons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/cmake-install-paths.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kglobalaccel.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kguiaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/khtml.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/ki18n.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default-theme-breeze.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kidletime.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kimageformats.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kinit/0001-kinit-libpath.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kinit/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kio/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kio/samba-search-path.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kio/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kitemmodels.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kitemviews.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kjobwidgets.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kjs.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kjsembed.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kmediaplayer.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/knewstuff.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/knotifications.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/knotifyconfig.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kpackage/allow-external-paths.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kpackage/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kpackage/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kparts.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kpeople.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kplotting.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kpty.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kross.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/krunner.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kservice/0002-no-canonicalize-path.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kservice/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/no-qcoreapplication.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/ktextwidgets.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kunitconversion.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kwallet.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kwidgetsaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kwindowsystem.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kxmlgui.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kxmlrpcclient.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/modemmanager-qt.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/networkmanager-qt.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/oxygen-icons5.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/plasma-framework/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/solid.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/sonnet.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/srcs.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/threadweaver.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support.nix b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support.nix deleted file mode 100644 index e61c4bb86e7..00000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45, kauth -, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kcrash, kdbusaddons, kded, kdesignerplugin, kdoctools, kemoticons -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels -, kinit, knotifications, kparts, kservice, ktextwidgets -, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui -, networkmanager, qtsvg, qtx11extras, xlibs -}: - -# TODO: debug docbook detection - -kdeFramework { - name = "kdelibs4support"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcompletion kconfig kded kservice kwidgetsaddons - kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM - ]; - propagatedBuildInputs = [ - kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons - kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio - kiconthemes kitemmodels kinit knotifications kparts ktextwidgets - kunitconversion kwindowsystem - ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXML4_DTD_VERSION=4.5" - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/attica.nix b/pkgs/development/libraries/kde-frameworks-5.19/attica.nix deleted file mode 100644 index 98721876c12..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/attica.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "attica"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/baloo.nix b/pkgs/development/libraries/kde-frameworks-5.19/baloo.nix deleted file mode 100644 index 38c41d9271d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/baloo.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kauth, kconfig -, kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n, kidletime -, kio, lmdb, makeQtWrapper, qtbase, qtquick1, solid -}: - -kdeFramework { - name = "baloo"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - kconfig kcrash kdbusaddons lmdb qtquick1 solid - ]; - propagatedBuildInputs = [ - kauth kcoreaddons kfilemetadata ki18n kio kidletime qtbase - ]; - postInstall = '' - wrapQtProgram "$out/bin/baloo_file" - wrapQtProgram "$out/bin/baloo_file_extractor" - wrapQtProgram "$out/bin/balooctl" - wrapQtProgram "$out/bin/baloosearch" - wrapQtProgram "$out/bin/balooshow" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/bluez-qt.nix b/pkgs/development/libraries/kde-frameworks-5.19/bluez-qt.nix deleted file mode 100644 index f981b0516f7..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/bluez-qt.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtdeclarative -}: - -kdeFramework { - name = "bluez-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtdeclarative ]; - preConfigure = '' - substituteInPlace CMakeLists.txt \ - --replace /lib/udev/rules.d "$out/lib/udev/rules.d" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/breeze-icons.nix b/pkgs/development/libraries/kde-frameworks-5.19/breeze-icons.nix deleted file mode 100644 index 44cc99daf26..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/breeze-icons.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework -, extra-cmake-modules -, qtsvg -}: - -kdeFramework { - name = "breeze-icons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtsvg ]; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/default.nix deleted file mode 100644 index bb96048d6ff..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/default.nix +++ /dev/null @@ -1,114 +0,0 @@ -# Maintainer's Notes: -# -# How To Update -# 1. Edit the URL in ./manifest.sh -# 2. Run ./manifest.sh -# 3. Fix build errors. - -{ pkgs, debug ? false }: - -let - - inherit (pkgs) lib makeSetupHook stdenv; - - mirror = "mirror://kde"; - srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - - packages = self: with self; { - kdeFramework = args: - let - inherit (args) name; - inherit (srcs."${name}") src version; - in stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; - - outputs = args.outputs or [ "dev" "out" ]; - - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = { - license = with lib.licenses; [ - lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 - ]; - platforms = lib.platforms.linux; - homepage = "http://www.kde.org"; - } // (args.meta or {}); - }); - - attica = callPackage ./attica.nix {}; - baloo = callPackage ./baloo.nix {}; - bluez-qt = callPackage ./bluez-qt.nix {}; - breeze-icons = callPackage ./breeze-icons.nix {}; - extra-cmake-modules = callPackage ./extra-cmake-modules {}; - frameworkintegration = callPackage ./frameworkintegration.nix {}; - kactivities = callPackage ./kactivities.nix {}; - kapidox = callPackage ./kapidox.nix {}; - karchive = callPackage ./karchive.nix {}; - kauth = callPackage ./kauth {}; - kbookmarks = callPackage ./kbookmarks.nix {}; - kcmutils = callPackage ./kcmutils {}; - kcodecs = callPackage ./kcodecs.nix {}; - kcompletion = callPackage ./kcompletion.nix {}; - kconfig = callPackage ./kconfig.nix {}; - kconfigwidgets = callPackage ./kconfigwidgets {}; - kcoreaddons = callPackage ./kcoreaddons.nix {}; - kcrash = callPackage ./kcrash.nix {}; - kdbusaddons = callPackage ./kdbusaddons.nix {}; - kdeclarative = callPackage ./kdeclarative.nix {}; - kded = callPackage ./kded.nix {}; - kdelibs4support = callPackage ./kdelibs4support {}; - kdesignerplugin = callPackage ./kdesignerplugin.nix {}; - kdewebkit = callPackage ./kdewebkit.nix {}; - kdesu = callPackage ./kdesu.nix {}; - kdnssd = callPackage ./kdnssd.nix {}; - kdoctools = callPackage ./kdoctools {}; - kemoticons = callPackage ./kemoticons.nix {}; - kfilemetadata = callPackage ./kfilemetadata {}; - kglobalaccel = callPackage ./kglobalaccel.nix {}; - kguiaddons = callPackage ./kguiaddons.nix {}; - khtml = callPackage ./khtml.nix {}; - ki18n = callPackage ./ki18n.nix {}; - kiconthemes = callPackage ./kiconthemes {}; - kidletime = callPackage ./kidletime.nix {}; - kimageformats = callPackage ./kimageformats.nix {}; - kinit = callPackage ./kinit {}; - kio = callPackage ./kio {}; - kitemmodels = callPackage ./kitemmodels.nix {}; - kitemviews = callPackage ./kitemviews.nix {}; - kjobwidgets = callPackage ./kjobwidgets.nix {}; - kjs = callPackage ./kjs.nix {}; - kjsembed = callPackage ./kjsembed.nix {}; - kmediaplayer = callPackage ./kmediaplayer.nix {}; - knewstuff = callPackage ./knewstuff.nix {}; - knotifications = callPackage ./knotifications.nix {}; - knotifyconfig = callPackage ./knotifyconfig.nix {}; - kpackage = callPackage ./kpackage {}; - kparts = callPackage ./kparts.nix {}; - kpeople = callPackage ./kpeople.nix {}; - kplotting = callPackage ./kplotting.nix {}; - kpty = callPackage ./kpty.nix {}; - kross = callPackage ./kross.nix {}; - krunner = callPackage ./krunner.nix {}; - kservice = callPackage ./kservice {}; - ktexteditor = callPackage ./ktexteditor {}; - ktextwidgets = callPackage ./ktextwidgets.nix {}; - kunitconversion = callPackage ./kunitconversion.nix {}; - kwallet = callPackage ./kwallet.nix {}; - kwidgetsaddons = callPackage ./kwidgetsaddons.nix {}; - kwindowsystem = callPackage ./kwindowsystem.nix {}; - kxmlgui = callPackage ./kxmlgui.nix {}; - kxmlrpcclient = callPackage ./kxmlrpcclient.nix {}; - modemmanager-qt = callPackage ./modemmanager-qt.nix {}; - networkmanager-qt = callPackage ./networkmanager-qt.nix {}; - oxygen-icons5 = callPackage ./oxygen-icons5.nix {}; - plasma-framework = callPackage ./plasma-framework {}; - solid = callPackage ./solid.nix {}; - sonnet = callPackage ./sonnet.nix {}; - threadweaver = callPackage ./threadweaver.nix {}; - }; - -in packages diff --git a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/default.nix deleted file mode 100644 index 1c2ea70442d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore, cmake, pkgconfig, qttools }: - -kdeFramework { - name = "extra-cmake-modules"; - - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - - outputs = [ "out" ]; # this package has no runtime components - setupHook = ./setup-hook.sh; - - # It is OK to propagate these inputs as long as - # extra-cmake-modules is never a propagated input - # of some other derivation. - propagatedNativeBuildInputs = [ cmake pkgconfig qttools ]; - - meta = with lib; { - license = licenses.bsd2; - maintainers = [ maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/nix-lib-path.patch b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/nix-lib-path.patch deleted file mode 100644 index a74340a6dc9..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/nix-lib-path.patch +++ /dev/null @@ -1,37 +0,0 @@ -Index: extra-cmake-modules-5.18.0/kde-modules/KDEInstallDirs.cmake -=================================================================== ---- extra-cmake-modules-5.18.0.orig/kde-modules/KDEInstallDirs.cmake -+++ extra-cmake-modules-5.18.0/kde-modules/KDEInstallDirs.cmake -@@ -200,32 +200,6 @@ - # GNUInstallDirs code deals with re-configuring, but that is dealt with - # by the _define_* macros in this module). - set(_LIBDIR_DEFAULT "lib") --# Override this default 'lib' with 'lib64' iff: --# - we are on a Linux, kFreeBSD or Hurd system but NOT cross-compiling --# - we are NOT on debian --# - we are on a 64 bits system --# reason is: amd64 ABI: http://www.x86-64.org/documentation/abi.pdf --# For Debian with multiarch, use 'lib/${CMAKE_LIBRARY_ARCHITECTURE}' if --# CMAKE_LIBRARY_ARCHITECTURE is set (which contains e.g. "i386-linux-gnu" --# See http://wiki.debian.org/Multiarch --if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "GNU") -- AND NOT CMAKE_CROSSCOMPILING) -- if (EXISTS "/etc/debian_version") # is this a debian system ? -- if(CMAKE_LIBRARY_ARCHITECTURE) -- set(_LIBDIR_DEFAULT "lib/${CMAKE_LIBRARY_ARCHITECTURE}") -- endif() -- else() # not debian, rely on CMAKE_SIZEOF_VOID_P: -- if(NOT DEFINED CMAKE_SIZEOF_VOID_P) -- message(AUTHOR_WARNING -- "Unable to determine default LIB_INSTALL_LIBDIR directory because no target architecture is known. " -- "Please enable at least one language before including KDEInstallDirs.") -- else() -- if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8") -- set(_LIBDIR_DEFAULT "lib64") -- endif() -- endif() -- endif() --endif() - - set(_gnu_install_dirs_vars - BINDIR diff --git a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/series b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/series deleted file mode 100644 index b4569e50a5f..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/series +++ /dev/null @@ -1 +0,0 @@ -nix-lib-path.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/setup-hook.sh deleted file mode 100644 index 56ed09f4ea5..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/setup-hook.sh +++ /dev/null @@ -1,81 +0,0 @@ -_ecmSetXdgDirs() { - addToSearchPathOnce XDG_DATA_DIRS "$1/share" - addToSearchPathOnce XDG_CONFIG_DIRS "$1/etc/xdg" - addToSearchPathOnce NIX_WRAP_XDG_CONFIG_DIRS "$1/etc/xdg" -} - -_ecmPropagateSharedData() { - local sharedPaths=( \ - "config.cfg" \ - "doc" \ - "kconf_update" \ - "kservices5" \ - "kservicetypes5" \ - "kxmlgui5" \ - "knotifications5" \ - "icons" \ - "sounds" \ - "templates" \ - "wallpapers" \ - "applications" \ - "desktop-directories" \ - "mime" \ - "info" \ - "dbus-1" \ - "interfaces" \ - "services" \ - "system-services" ) - for dir in ${sharedPaths[@]}; do - if [ -d "$1/share/$dir" ]; then - addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share" - propagateOnce propagatedUserEnvPkgs "$1" - break - fi - done -} - -_ecmConfig() { - # Because we need to use absolute paths here, we must set *all* the paths. - cmakeFlags+=" -DKDE_INSTALL_EXECROOTDIR=${!outputBin}" - cmakeFlags+=" -DKDE_INSTALL_BINDIR=${!outputBin}/bin" - cmakeFlags+=" -DKDE_INSTALL_SBINDIR=${!outputBin}/sbin" - cmakeFlags+=" -DKDE_INSTALL_LIBDIR=${!outputLib}/lib" - cmakeFlags+=" -DKDE_INSTALL_LIBEXECDIR=${!outputLib}/lib/libexec" - cmakeFlags+=" -DKDE_INSTALL_CMAKEPACKAGEDIR=${!outputDev}/lib/cmake" - cmakeFlags+=" -DKDE_INSTALL_QTPLUGINDIR=${!outputLib}/lib/qt5/plugins" - cmakeFlags+=" -DKDE_INSTALL_PLUGINDIR=${!outputLib}/lib/qt5/plugins" - cmakeFlags+=" -DKDE_INSTALL_QTQUICKIMPORTSDIR=${!outputLib}/lib/qt5/imports" - cmakeFlags+=" -DKDE_INSTALL_QMLDIR=${!outputLib}/lib/qt5/qml" - cmakeFlags+=" -DKDE_INSTALL_INCLUDEDIR=${!outputInclude}/include" - cmakeFlags+=" -DKDE_INSTALL_LOCALSTATEDIR=/var" - cmakeFlags+=" -DKDE_INSTALL_DATAROOTDIR=${!outputLib}/share" - cmakeFlags+=" -DKDE_INSTALL_DATADIR=${!outputLib}/share" - cmakeFlags+=" -DKDE_INSTALL_DOCBUNDLEDIR=${!outputLib}/share/doc/HTML" - cmakeFlags+=" -DKDE_INSTALL_KCFGDIR=${!outputLib}/share/config.kcfg" - cmakeFlags+=" -DKDE_INSTALL_KCONFUPDATEDIR=${!outputLib}/share/kconf_update" - cmakeFlags+=" -DKDE_INSTALL_KSERVICES5DIR=${!outputLib}/share/kservices5" - cmakeFlags+=" -DKDE_INSTALL_KSERVICETYPES5DIR=${!outputLib}/share/kservicetypes5" - cmakeFlags+=" -DKDE_INSTALL_KXMLGUI5DIR=${!outputLib}/share/kxmlgui5" - cmakeFlags+=" -DKDE_INSTALL_KNOTIFY5RCDIR=${!outputLib}/share/knotifications5" - cmakeFlags+=" -DKDE_INSTALL_ICONDIR=${!outputLib}/share/icons" - cmakeFlags+=" -DKDE_INSTALL_LOCALEDIR=${!outputLib}/share/locale" - cmakeFlags+=" -DKDE_INSTALL_SOUNDDIR=${!outputLib}/share/sounds" - cmakeFlags+=" -DKDE_INSTALL_TEMPLATEDIR=${!outputLib}/share/templates" - cmakeFlags+=" -DKDE_INSTALL_WALLPAPERDIR=${!outputLib}/share/wallpapers" - cmakeFlags+=" -DKDE_INSTALL_APPDIR=${!outputLib}/share/applications" - cmakeFlags+=" -DKDE_INSTALL_DESKTOPDIR=${!outputLib}/share/desktop-directories" - cmakeFlags+=" -DKDE_INSTALL_MIMEDIR=${!outputLib}/share/mime/packages" - cmakeFlags+=" -DKDE_INSTALL_METAINFODIR=${!outputLib}/share/appdata" - cmakeFlags+=" -DKDE_INSTALL_MANDIR=${!outputLib}/share/man" - cmakeFlags+=" -DKDE_INSTALL_INFODIR=${!outputLib}/share/info" - cmakeFlags+=" -DKDE_INSTALL_DBUSDIR=${!outputLib}/share/dbus-1" - cmakeFlags+=" -DKDE_INSTALL_DBUSINTERFACEDIR=${!outputLib}/share/dbus-1/interfaces" - cmakeFlags+=" -DKDE_INSTALL_DBUSSERVICEDIR=${!outputLib}/share/dbus-1/services" - cmakeFlags+=" -DKDE_INSTALL_DBUSSYSTEMSERVICEDIR=${!outputLib}/share/dbus-1/system-services" - cmakeFlags+=" -DKDE_INSTALL_SYSCONFDIR=${!outputLib}/etc" - cmakeFlags+=" -DKDE_INSTALL_CONFDIR=${!outputLib}/etc/xdg" - cmakeFlags+=" -DKDE_INSTALL_AUTOSTARTDIR=${!outputLib}/etc/xdg/autostart" -} - -envHooks+=(_ecmSetXdgDirs _ecmPropagateSharedData) -preConfigureHooks+=(_ecmConfig) diff --git a/pkgs/development/libraries/kde-frameworks-5.19/fetchsrcs.sh b/pkgs/development/libraries/kde-frameworks-5.19/fetchsrcs.sh deleted file mode 100755 index 7937e6f8bed..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/fetchsrcs.sh +++ /dev/null @@ -1,57 +0,0 @@ -#! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils findutils gnused nix wget - -set -x - -# The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/frameworks/5.19/" -EXTRA_WGET_ARGS='-A *.tar.xz' - -mkdir tmp; cd tmp - -rm -f ../srcs.csv - -wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS - -find . | while read src; do - if [[ -f "${src}" ]]; then - # Sanitize file name - filename=$(basename "$src" | tr '@' '_') - nameVersion="${filename%.tar.*}" - name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') - version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') - echo "$name,$version,$src,$filename" >>../srcs.csv - fi -done - -cat >../srcs.nix <>../srcs.nix <>../srcs.nix - -rm -f ../srcs.csv - -cd .. diff --git a/pkgs/development/libraries/kde-frameworks-5.19/frameworkintegration.nix b/pkgs/development/libraries/kde-frameworks-5.19/frameworkintegration.nix deleted file mode 100644 index 26987c385ad..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/frameworkintegration.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kbookmarks, kcompletion -, kconfig, kconfigwidgets, ki18n, kiconthemes, kio, knotifications -, kwidgetsaddons, libXcursor, qtx11extras -}: - -kdeFramework { - name = "frameworkintegration"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kbookmarks kcompletion kconfig knotifications kwidgetsaddons - libXcursor - ]; - propagatedBuildInputs = [ kconfigwidgets ki18n kio kiconthemes qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kactivities.nix b/pkgs/development/libraries/kde-frameworks-5.19/kactivities.nix deleted file mode 100644 index 3225098f439..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kactivities.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, boost, kcmutils, kconfig -, kcoreaddons, kdbusaddons, kdeclarative, kglobalaccel, ki18n -, kio, kservice, kwindowsystem, kxmlgui, makeQtWrapper, qtdeclarative -}: - -kdeFramework { - name = "kactivities"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - boost kcmutils kconfig kcoreaddons kdbusaddons kservice - kxmlgui - ]; - propagatedBuildInputs = [ - kdeclarative kglobalaccel ki18n kio kwindowsystem qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kactivitymanagerd" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kapidox.nix b/pkgs/development/libraries/kde-frameworks-5.19/kapidox.nix deleted file mode 100644 index 647be8f052c..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kapidox.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, python -}: - -kdeFramework { - name = "kapidox"; - nativeBuildInputs = [ extra-cmake-modules python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/karchive.nix b/pkgs/development/libraries/kde-frameworks-5.19/karchive.nix deleted file mode 100644 index a8d9a0003c3..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/karchive.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "karchive"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kauth/cmake-install-paths.patch b/pkgs/development/libraries/kde-frameworks-5.19/kauth/cmake-install-paths.patch deleted file mode 100644 index c66f5ecd008..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kauth/cmake-install-paths.patch +++ /dev/null @@ -1,17 +0,0 @@ -Index: kauth-5.18.0/KF5AuthConfig.cmake.in -=================================================================== ---- kauth-5.18.0.orig/KF5AuthConfig.cmake.in -+++ kauth-5.18.0/KF5AuthConfig.cmake.in -@@ -4,9 +4,9 @@ set(KAUTH_STUB_FILES_DIR "@PACKAGE_KDE_I - - set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@") - set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@") --set(KAUTH_POLICY_FILES_INSTALL_DIR "@KAUTH_POLICY_FILES_INSTALL_DIR@") --set(KAUTH_HELPER_INSTALL_DIR "@KAUTH_HELPER_INSTALL_DIR@") --set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR "@KAUTH_HELPER_INSTALL_ABSOLUTE_DIR@") -+set(KAUTH_POLICY_FILES_INSTALL_DIR "${KDE_INSTALL_DATADIR}/polkit-1/actions") -+set(KAUTH_HELPER_INSTALL_DIR "${KDE_INSTALL_LIBEXECDIR}") -+set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR "${KDE_INSTALL_LIBEXECDIR}") - - find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@") - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kauth/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kauth/default.nix deleted file mode 100644 index 1352d8c5821..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kauth/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules -, kcoreaddons -, polkit-qt -}: - -kdeFramework { - name = "kauth"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ polkit-qt ]; - propagatedBuildInputs = [ kcoreaddons ]; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kauth/series b/pkgs/development/libraries/kde-frameworks-5.19/kauth/series deleted file mode 100644 index d2689425c38..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kauth/series +++ /dev/null @@ -1 +0,0 @@ -cmake-install-paths.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kbookmarks.nix b/pkgs/development/libraries/kde-frameworks-5.19/kbookmarks.nix deleted file mode 100644 index 1a469ab4db6..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kbookmarks.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcodecs -, kconfig -, kconfigwidgets -, kcoreaddons -, kiconthemes -, kxmlgui -}: - -kdeFramework { - name = "kbookmarks"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs - kconfig - kconfigwidgets - kcoreaddons - kiconthemes - kxmlgui - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 0d861fa9501..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From f14d2a275323a47104b33eb61c5b6910ae1a9f59 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:43:53 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - src/kpluginselector.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/kpluginselector.cpp b/src/kpluginselector.cpp -index 9c3431d..d6b1ee2 100644 ---- a/src/kpluginselector.cpp -+++ b/src/kpluginselector.cpp -@@ -305,7 +305,7 @@ void KPluginSelector::addPlugins(const QString &componentName, - QStringList desktopFileNames; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, componentName + QStringLiteral("/kpartplugins"), QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { -- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - desktopFileNames.append(it.next()); - } --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/default.nix deleted file mode 100644 index dbbb783ac61..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfigwidgets -, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews -, kpackage, kservice, kxmlgui -}: - -kdeFramework { - name = "kcmutils"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcoreaddons kiconthemes kitemviews kpackage kxmlgui - ]; - propagatedBuildInputs = [ kconfigwidgets kdeclarative ki18n kservice ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcodecs.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcodecs.nix deleted file mode 100644 index 53a69a69b69..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kcodecs.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kcodecs"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcompletion.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcompletion.nix deleted file mode 100644 index e393774f16a..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kcompletion.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kwidgetsaddons -}: - -kdeFramework { - name = "kcompletion"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kwidgetsaddons ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kconfig.nix b/pkgs/development/libraries/kde-frameworks-5.19/kconfig.nix deleted file mode 100644 index e132afe5988..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kconfig.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -}: - -kdeFramework { - name = "kconfig"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - postInstall = '' - wrapQtProgram "$out/bin/kreadconfig5" - wrapQtProgram "$out/bin/kwriteconfig5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 7a6c0ee9053..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 4f84780893d505b2d62a14633dd983baa8ec6e28 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:47:01 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - src/khelpclient.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/khelpclient.cpp b/src/khelpclient.cpp -index 53a331e..80fbb01 100644 ---- a/src/khelpclient.cpp -+++ b/src/khelpclient.cpp -@@ -48,7 +48,7 @@ void KHelpClient::invokeHelp(const QString &anchor, const QString &_appname) - QString docPath; - const QStringList desktopDirs = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation); - Q_FOREACH (const QString &dir, desktopDirs) { -- QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - const QString desktopPath(it.next()); - KDesktopFile desktopFile(desktopPath); --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/default.nix deleted file mode 100644 index 0e14d06edd3..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kauth, kcodecs, kconfig -, kdoctools, kguiaddons, ki18n, kwidgetsaddons, makeQtWrapper -}: - -kdeFramework { - name = "kconfigwidgets"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ kguiaddons ]; - propagatedBuildInputs = [ kauth kconfig kcodecs ki18n kwidgetsaddons ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - postInstall = '' - wrapQtProgram "$out/bin/preparetips5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcoreaddons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcoreaddons.nix deleted file mode 100644 index f3a1db7bd48..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kcoreaddons.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, makeQtWrapper -, extra-cmake-modules -, shared_mime_info -}: - -kdeFramework { - name = "kcoreaddons"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ shared_mime_info ]; - postInstall = '' - wrapQtProgram "$out/bin/desktoptojson" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcrash.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcrash.nix deleted file mode 100644 index bbab78ccb40..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kcrash.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, kwindowsystem -, qtx11extras -}: - -kdeFramework { - name = "kcrash"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdbusaddons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdbusaddons.nix deleted file mode 100644 index d2ceab31d14..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdbusaddons.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -, qtx11extras -}: - -kdeFramework { - name = "kdbusaddons"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - propagatedBuildInputs = [ qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kquitapp5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdeclarative.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdeclarative.nix deleted file mode 100644 index 74d107466cf..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdeclarative.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage -, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig -, qtdeclarative -}: - -kdeFramework { - name = "kdeclarative"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - epoxy kguiaddons kiconthemes kwidgetsaddons - ]; - propagatedBuildInputs = [ - kconfig kglobalaccel ki18n kio kpackage kwindowsystem qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kpackagelauncherqml" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kded.nix b/pkgs/development/libraries/kde-frameworks-5.19/kded.nix deleted file mode 100644 index 47ae2d68c68..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kded.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kcoreaddons -, kcrash -, kdbusaddons -, kdoctools -, kinit -, kservice -}: - -kdeFramework { - name = "kded"; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ]; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/default.nix deleted file mode 100644 index 843db83a99b..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, docbook_xml_dtd_45, kauth -, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kcrash, kdbusaddons, kded, kdesignerplugin, kdoctools, kemoticons -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels -, kinit, knotifications, kparts, kservice, ktextwidgets -, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui -, networkmanager, qtsvg, qtx11extras, xlibs -}: - -# TODO: debug docbook detection - -kdeFramework { - name = "kdelibs4support"; - outputs = [ "dev" "out" ]; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - setupHook = ./setup-hook.sh; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcompletion kconfig kded kservice kwidgetsaddons - kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM - ]; - propagatedBuildInputs = [ - kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons - kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio - kiconthemes kitemmodels kinit knotifications kparts ktextwidgets - kunitconversion kwindowsystem - ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXML4_DTD_VERSION=4.5" - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch deleted file mode 100644 index eabb7025448..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: kdelibs4support-5.18.0/src/kdecore/kstandarddirs.cpp -=================================================================== ---- kdelibs4support-5.18.0.orig/src/kdecore/kstandarddirs.cpp -+++ kdelibs4support-5.18.0/src/kdecore/kstandarddirs.cpp -@@ -292,7 +292,7 @@ static QString relativeInstallPath(const - return QFile::decodeName(ICON_INSTALL_DIR "/"); - } - if (strcmp("include", type) == 0) { -- return QFile::decodeName(INCLUDE_INSTALL_DIR "/"); -+ return QFile::decodeName(qgetenv("NIX_KDE_INCLUDE_DIR")); - } - break; - case 'l': diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/series b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/series deleted file mode 100644 index 9b08ab20877..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/series +++ /dev/null @@ -1 +0,0 @@ -nix-kde-include-dir.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/setup-hook.sh deleted file mode 100644 index 21ac2e83b5d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/setup-hook.sh +++ /dev/null @@ -1 +0,0 @@ -export NIX_KDE_INCLUDE_DIR="@dev@/include/" # trailing slash is required! diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdesignerplugin.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdesignerplugin.nix deleted file mode 100644 index cbc114ccca0..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdesignerplugin.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ kdeFramework, lib, makeQtWrapper -, extra-cmake-modules -, kcompletion -, kconfig -, kconfigwidgets -, kcoreaddons -, kdewebkit -, kdoctools -, kiconthemes -, kio -, kitemviews -, kplotting -, ktextwidgets -, kwidgetsaddons -, kxmlgui -, sonnet -}: - -kdeFramework { - name = "kdesignerplugin"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit - kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons - kxmlgui - ]; - propagatedBuildInputs = [ kio sonnet ]; - postInstall = '' - wrapQtProgram "$out/bin/kgendesignerplugin" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdesu.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdesu.nix deleted file mode 100644 index 364fbd6a720..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdesu.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n, kpty -, kservice -}: - -kdeFramework { - name = "kdesu"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kservice ]; - propagatedBuildInputs = [ ki18n kpty ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdewebkit.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdewebkit.nix deleted file mode 100644 index d361313d1d4..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdewebkit.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, ki18n, kio, kjobwidgets, kparts, kservice, kwallet, qtwebkit -}: - -kdeFramework { - name = "kdewebkit"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kcoreaddons kjobwidgets kparts kservice kwallet ]; - propagatedBuildInputs = [ ki18n kio qtwebkit ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdnssd.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdnssd.nix deleted file mode 100644 index f00432b0c9c..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdnssd.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, avahi -}: - -kdeFramework { - name = "kdnssd"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ avahi ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/default.nix deleted file mode 100644 index f67c19f4239..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/default.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45 -, docbook5_xsl, karchive, ki18n, makeQtWrapper, perl, perlPackages -}: - -kdeFramework { - name = "kdoctools"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive ]; - propagatedBuildInputs = [ ki18n ]; - propagatedNativeBuildInputs = [ makeQtWrapper perl perlPackages.URI ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXSL_DIR=${docbook5_xsl}/xml/xsl/docbook" - ]; - patches = [ ./kdoctools-no-find-docbook-xml.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch deleted file mode 100644 index 4e3a33efab3..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 5c4863c..f731775 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -46,7 +46,6 @@ set_package_properties(LibXml2 PROPERTIES - ) - - --find_package(DocBookXML4 "4.5") - - set_package_properties(DocBookXML4 PROPERTIES - TYPE REQUIRED diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kemoticons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kemoticons.nix deleted file mode 100644 index d165f84e3a2..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kemoticons.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, karchive -, kconfig -, kcoreaddons -, kservice -}: - -kdeFramework { - name = "kemoticons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive kconfig kcoreaddons ]; - propagatedBuildInputs = [ kservice ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/cmake-install-paths.patch b/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/cmake-install-paths.patch deleted file mode 100644 index 732f7b69c82..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/cmake-install-paths.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: kfilemetadata-5.18.0/src/CMakeLists.txt -=================================================================== ---- kfilemetadata-5.18.0.orig/src/CMakeLists.txt -+++ kfilemetadata-5.18.0/src/CMakeLists.txt -@@ -49,7 +49,7 @@ install(TARGETS KF5FileMetaData EXPORT K - - install(EXPORT KF5FileMetaDataTargets - NAMESPACE KF5:: -- DESTINATION ${LIB_INSTALL_DIR}/cmake/KF5FileMetaData -+ DESTINATION ${KDE_INSTALL_FULL_CMAKEPACKAGEDIR}/KF5FileMetaData - FILE KF5FileMetaDataTargets.cmake) - - install(FILES diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/default.nix deleted file mode 100644 index 9bb4831cf8d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/default.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules -, attr, ebook_tools, exiv2, ffmpeg, karchive, ki18n, poppler, qtbase, taglib -}: - -kdeFramework { - name = "kfilemetadata"; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive poppler taglib ]; - propagatedBuildInputs = [ qtbase ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/series b/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/series deleted file mode 100644 index d2689425c38..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/series +++ /dev/null @@ -1 +0,0 @@ -cmake-install-paths.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kglobalaccel.nix b/pkgs/development/libraries/kde-frameworks-5.19/kglobalaccel.nix deleted file mode 100644 index c535b3590a3..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kglobalaccel.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kcoreaddons -, kcrash -, kdbusaddons -, kwindowsystem -, makeQtWrapper -, qtx11extras -}: - -kdeFramework { - name = "kglobalaccel"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kglobalaccel5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kguiaddons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kguiaddons.nix deleted file mode 100644 index bc4e9ab1184..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kguiaddons.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtx11extras -}: - -kdeFramework { - name = "kguiaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/khtml.nix b/pkgs/development/libraries/kde-frameworks-5.19/khtml.nix deleted file mode 100644 index d40df466ebb..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/khtml.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, giflib, karchive -, kcodecs, kglobalaccel, ki18n, kiconthemes, kio, kjs -, knotifications, kparts, ktextwidgets, kwallet, kwidgetsaddons -, kwindowsystem, kxmlgui, perl, phonon, qtx11extras, sonnet -}: - -kdeFramework { - name = "khtml"; - nativeBuildInputs = [ extra-cmake-modules perl ]; - buildInputs = [ - giflib karchive kiconthemes knotifications kwallet kwidgetsaddons - kxmlgui phonon - ]; - propagatedBuildInputs = [ - kcodecs kglobalaccel ki18n kio kjs kparts ktextwidgets - kwindowsystem qtx11extras sonnet - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ki18n.nix b/pkgs/development/libraries/kde-frameworks-5.19/ki18n.nix deleted file mode 100644 index 268006512e7..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/ki18n.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, gettext -, python -, qtdeclarative -, qtscript -}: - -kdeFramework { - name = "ki18n"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtdeclarative qtscript ]; - propagatedNativeBuildInputs = [ gettext python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default-theme-breeze.patch b/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default-theme-breeze.patch deleted file mode 100644 index 5b3b15d5d5b..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default-theme-breeze.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: kiconthemes-5.17.0/src/kicontheme.cpp -=================================================================== ---- kiconthemes-5.17.0.orig/src/kicontheme.cpp -+++ kiconthemes-5.17.0/src/kicontheme.cpp -@@ -557,7 +557,7 @@ void KIconTheme::reconfigure() - // static - QString KIconTheme::defaultThemeName() - { -- return QStringLiteral("oxygen"); -+ return QStringLiteral("breeze"); - } - - void KIconTheme::assignIconsToContextMenu(ContextMenus type, diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default.nix deleted file mode 100644 index b78b25582be..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, makeQtWrapper -, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg -}: - -kdeFramework { - name = "kiconthemes"; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ kconfigwidgets kitemviews qtsvg ]; - propagatedBuildInputs = [ breeze-icons ki18n ]; - postInstall = '' - wrapQtProgram "$out/bin/kiconfinder5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/series b/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/series deleted file mode 100644 index ab5cc8a3edb..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/series +++ /dev/null @@ -1 +0,0 @@ -default-theme-breeze.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kidletime.nix b/pkgs/development/libraries/kde-frameworks-5.19/kidletime.nix deleted file mode 100644 index fc086560023..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kidletime.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtbase -, qtx11extras -}: - -kdeFramework { - name = "kidletime"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - propagatedBuildInputs = [ qtbase ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kimageformats.nix b/pkgs/development/libraries/kde-frameworks-5.19/kimageformats.nix deleted file mode 100644 index 49d66bbcc2c..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kimageformats.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, ilmbase -}: - -kdeFramework { - name = "kimageformats"; - nativeBuildInputs = [ extra-cmake-modules ]; - NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kinit/0001-kinit-libpath.patch b/pkgs/development/libraries/kde-frameworks-5.19/kinit/0001-kinit-libpath.patch deleted file mode 100644 index 9c76079a382..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kinit/0001-kinit-libpath.patch +++ /dev/null @@ -1,42 +0,0 @@ -From 723c9b1268a04127647a1c20eebe9804150566dd Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sat, 13 Jun 2015 08:57:55 -0500 -Subject: [PATCH] kinit libpath - ---- - src/kdeinit/kinit.cpp | 18 ++++++++++-------- - 1 file changed, 10 insertions(+), 8 deletions(-) - -diff --git a/src/kdeinit/kinit.cpp b/src/kdeinit/kinit.cpp -index 9e775b6..0ac5646 100644 ---- a/src/kdeinit/kinit.cpp -+++ b/src/kdeinit/kinit.cpp -@@ -660,15 +660,17 @@ static pid_t launch(int argc, const char *_name, const char *args, - if (!libpath.isEmpty()) { - if (!l.load()) { - if (libpath_relative) { -- // NB: Because Qt makes the actual dlopen() call, the -- // RUNPATH of kdeinit is *not* respected - see -- // https://sourceware.org/bugzilla/show_bug.cgi?id=13945 -- // - so we try hacking it in ourselves -- QString install_lib_dir = QFile::decodeName( -- CMAKE_INSTALL_PREFIX "/" LIB_INSTALL_DIR "/"); -- libpath = install_lib_dir + libpath; -- l.setFileName(libpath); -+ // Use QT_PLUGIN_PATH to find shared library directories -+ // For KF5, the plugin path is /lib/qt5/plugins/, so kdeinit5 -+ // shared libraries should be in /lib/qt5/plugins/../../ -+ const QRegExp pathSepRegExp(QString::fromLatin1("[:\b]")); -+ const QString up = QString::fromLocal8Bit("/../../"); -+ const QStringList paths = QString::fromLocal8Bit(qgetenv("QT_PLUGIN_PATH")).split(pathSepRegExp, QString::KeepEmptyParts); -+ Q_FOREACH (const QString &path, paths) { -+ l.setFileName(path + up + libpath); - l.load(); -+ if (l.isLoaded()) break; -+ } - } - } - if (!l.isLoaded()) { --- -2.4.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kinit/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kinit/default.nix deleted file mode 100644 index 5f644d7c424..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kinit/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcrash -, kdoctools, ki18n, kio, kservice, kwindowsystem, libcap -, libcap_progs -}: - -# TODO: setuid wrapper - -kdeFramework { - name = "kinit"; - nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ]; - buildInputs = [ kconfig kcrash kservice libcap ]; - propagatedBuildInputs = [ ki18n kio kwindowsystem ]; - patches = [ ./0001-kinit-libpath.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kio/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kio/default.nix deleted file mode 100644 index a2131ff3385..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kio/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, acl, karchive -, kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kdbusaddons, kdoctools, ki18n, kiconthemes, kitemviews -, kjobwidgets, knotifications, kservice, ktextwidgets, kwallet -, kwidgetsaddons, kwindowsystem, kxmlgui, makeQtWrapper -, qtscript, qtx11extras, solid -}: - -kdeFramework { - name = "kio"; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - acl karchive kconfig kcoreaddons kdbusaddons kiconthemes - knotifications ktextwidgets kwallet kwidgetsaddons - qtscript - ]; - propagatedBuildInputs = [ - kbookmarks kcompletion kconfigwidgets ki18n kitemviews kjobwidgets - kservice kwindowsystem kxmlgui solid qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/kcookiejar5" - wrapQtProgram "$out/bin/ktelnetservice5" - wrapQtProgram "$out/bin/ktrash5" - wrapQtProgram "$out/bin/kmailservice5" - wrapQtProgram "$out/bin/protocoltojson" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kio/samba-search-path.patch b/pkgs/development/libraries/kde-frameworks-5.19/kio/samba-search-path.patch deleted file mode 100644 index c9ad46b41bb..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kio/samba-search-path.patch +++ /dev/null @@ -1,28 +0,0 @@ -Index: kio-5.17.0/src/core/ksambashare.cpp -=================================================================== ---- kio-5.17.0.orig/src/core/ksambashare.cpp -+++ kio-5.17.0/src/core/ksambashare.cpp -@@ -67,13 +67,18 @@ KSambaSharePrivate::~KSambaSharePrivate( - - bool KSambaSharePrivate::isSambaInstalled() - { -- if (QFile::exists(QStringLiteral("/usr/sbin/smbd")) -- || QFile::exists(QStringLiteral("/usr/local/sbin/smbd"))) { -- return true; -+ const QByteArray pathEnv = qgetenv("PATH"); -+ if (!pathEnv.isEmpty()) { -+ QLatin1Char pathSep(':'); -+ QStringList paths = QFile::decodeName(pathEnv).split(pathSep, QString::SkipEmptyParts); -+ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { -+ it->append("/smbd"); -+ if (QFile::exists(*it)) { -+ return true; -+ } -+ } - } - -- //qDebug() << "Samba is not installed!"; -- - return false; - } - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kio/series b/pkgs/development/libraries/kde-frameworks-5.19/kio/series deleted file mode 100644 index 77ca1545004..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kio/series +++ /dev/null @@ -1 +0,0 @@ -samba-search-path.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kitemmodels.nix b/pkgs/development/libraries/kde-frameworks-5.19/kitemmodels.nix deleted file mode 100644 index a9024d771cc..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kitemmodels.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kitemmodels"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kitemviews.nix b/pkgs/development/libraries/kde-frameworks-5.19/kitemviews.nix deleted file mode 100644 index 931019ce495..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kitemviews.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kitemviews"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kjobwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.19/kjobwidgets.nix deleted file mode 100644 index 746edf12eea..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kjobwidgets.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, kwidgetsaddons -, qtx11extras -}: - -kdeFramework { - name = "kjobwidgets"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kwidgetsaddons ]; - propagatedBuildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kjs.nix b/pkgs/development/libraries/kde-frameworks-5.19/kjs.nix deleted file mode 100644 index 768720f178c..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kjs.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -}: - -kdeFramework { - name = "kjs"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - postInstall = '' - wrapQtProgram "$out/bin/kjs5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kjsembed.nix b/pkgs/development/libraries/kde-frameworks-5.19/kjsembed.nix deleted file mode 100644 index 22eef2d47bd..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kjsembed.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kdoctools, ki18n, kjs -, makeQtWrapper, qtsvg -}: - -kdeFramework { - name = "kjsembed"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ qtsvg ]; - propagatedBuildInputs = [ ki18n kjs ]; - postInstall = '' - wrapQtProgram "$out/bin/kjscmd5" - wrapQtProgram "$out/bin/kjsconsole" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kmediaplayer.nix b/pkgs/development/libraries/kde-frameworks-5.19/kmediaplayer.nix deleted file mode 100644 index 460458b2232..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kmediaplayer.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kparts -, kxmlgui -}: - -kdeFramework { - name = "kmediaplayer"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kxmlgui ]; - propagatedBuildInputs = [ kparts ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/knewstuff.nix b/pkgs/development/libraries/kde-frameworks-5.19/knewstuff.nix deleted file mode 100644 index 5bcd6f30146..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/knewstuff.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attica, karchive -, kcompletion, kconfig, kcoreaddons, ki18n, kiconthemes, kio -, kitemviews, kservice, ktextwidgets, kwidgetsaddons, kxmlgui -}: - -kdeFramework { - name = "knewstuff"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - karchive kcompletion kconfig kcoreaddons kiconthemes - kitemviews ktextwidgets kwidgetsaddons - ]; - propagatedBuildInputs = [ attica ki18n kio kservice kxmlgui ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/knotifications.nix b/pkgs/development/libraries/kde-frameworks-5.19/knotifications.nix deleted file mode 100644 index 7e301dd0f26..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/knotifications.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcodecs -, kconfig -, kcoreaddons -, kwindowsystem -, phonon -, qtx11extras -}: - -kdeFramework { - name = "knotifications"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs kconfig kcoreaddons phonon - ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/knotifyconfig.nix b/pkgs/development/libraries/kde-frameworks-5.19/knotifyconfig.nix deleted file mode 100644 index dd99d2d4f1e..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/knotifyconfig.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig -, ki18n, kio, phonon -}: - -kdeFramework { - name = "knotifyconfig"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcompletion kconfig phonon ]; - propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/allow-external-paths.patch b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/allow-external-paths.patch deleted file mode 100644 index e9d74444814..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/allow-external-paths.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: kpackage-5.18.0/src/kpackage/package.cpp -=================================================================== ---- kpackage-5.18.0.orig/src/kpackage/package.cpp -+++ kpackage-5.18.0/src/kpackage/package.cpp -@@ -808,7 +808,7 @@ PackagePrivate::PackagePrivate() - : QSharedData(), - fallbackPackage(0), - metadata(0), -- externalPaths(false), -+ externalPaths(true), - valid(false), - checkedValid(false) - { diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/default.nix deleted file mode 100644 index aea1b0d31a0..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules -, karchive -, kconfig -, kcoreaddons -, kdoctools -, ki18n -, makeQtWrapper -}: - -kdeFramework { - name = "kpackage"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ karchive kconfig ]; - propagatedBuildInputs = [ kcoreaddons ki18n ]; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - postInstall = '' - wrapQtProgram "$out/bin/kpackagetool5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch deleted file mode 100644 index ddbf17d0006..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,26 +0,0 @@ -Index: kpackage-5.18.0/src/kpackage/packageloader.cpp -=================================================================== ---- kpackage-5.18.0.orig/src/kpackage/packageloader.cpp -+++ kpackage-5.18.0/src/kpackage/packageloader.cpp -@@ -241,7 +241,7 @@ QList PackageLoader::li - } else { - //qDebug() << "Not cached"; - // If there's no cache file, fall back to listing the directory -- const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories; -+ const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories | QDirIterator::FollowSymlinks; - const QStringList nameFilters = QStringList(QStringLiteral("metadata.desktop")) << QStringLiteral("metadata.json"); - - QDirIterator it(plugindir, nameFilters, QDir::Files, flags); -Index: kpackage-5.18.0/src/kpackage/private/packagejobthread.cpp -=================================================================== ---- kpackage-5.18.0.orig/src/kpackage/private/packagejobthread.cpp -+++ kpackage-5.18.0/src/kpackage/private/packagejobthread.cpp -@@ -146,7 +146,7 @@ bool indexDirectory(const QString& dir, - - QJsonArray plugins; - -- QDirIterator it(dir, *metaDataFiles, QDir::Files, QDirIterator::Subdirectories); -+ QDirIterator it(dir, *metaDataFiles, QDir::Files, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - it.next(); - const QString path = it.fileInfo().absoluteFilePath(); diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/series b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/series deleted file mode 100644 index 9b7f076efc7..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/series +++ /dev/null @@ -1,2 +0,0 @@ -allow-external-paths.patch -qdiriterator-follow-symlinks.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kparts.nix b/pkgs/development/libraries/kde-frameworks-5.19/kparts.nix deleted file mode 100644 index 1c3e0b2cbc5..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kparts.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, ki18n, kiconthemes, kio, kjobwidgets, knotifications, kservice -, ktextwidgets, kwidgetsaddons, kxmlgui -}: - -kdeFramework { - name = "kparts"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kconfig kcoreaddons kiconthemes kjobwidgets knotifications - kservice kwidgetsaddons - ]; - propagatedBuildInputs = [ ki18n kio ktextwidgets kxmlgui ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpeople.nix b/pkgs/development/libraries/kde-frameworks-5.19/kpeople.nix deleted file mode 100644 index 4c3877e7efd..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kpeople.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n -, kitemviews, kservice, kwidgetsaddons, qtdeclarative -}: - -kdeFramework { - name = "kpeople"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcoreaddons kitemviews kservice kwidgetsaddons - ]; - propagatedBuildInputs = [ ki18n qtdeclarative ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kplotting.nix b/pkgs/development/libraries/kde-frameworks-5.19/kplotting.nix deleted file mode 100644 index c16f51b5ac3..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kplotting.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kplotting"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpty.nix b/pkgs/development/libraries/kde-frameworks-5.19/kpty.nix deleted file mode 100644 index 2e34e6f674c..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kpty.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n }: - -kdeFramework { - name = "kpty"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ kcoreaddons ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kross.nix b/pkgs/development/libraries/kde-frameworks-5.19/kross.nix deleted file mode 100644 index 7c6f079feaa..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kross.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kcoreaddons -, kdoctools, ki18n, kiconthemes, kio, kparts, kwidgetsaddons -, kxmlgui, qtscript -}: - -kdeFramework { - name = "kross"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ kcompletion kcoreaddons kxmlgui ]; - propagatedBuildInputs = [ ki18n kiconthemes kio kparts kwidgetsaddons qtscript ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/krunner.nix b/pkgs/development/libraries/kde-frameworks-5.19/krunner.nix deleted file mode 100644 index 12d2b54d0eb..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/krunner.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, ki18n, kio, kservice, plasma-framework, qtquick1, solid -, threadweaver -}: - -kdeFramework { - name = "krunner"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kconfig kcoreaddons kservice qtquick1 solid threadweaver - ]; - propagatedBuildInputs = [ ki18n kio plasma-framework ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 3d8397d8ee2..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From ae8919eb81abad369e4a26ffcd845b140983398d Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:28:57 -0500 -Subject: [PATCH 1/2] qdiriterator follow symlinks - ---- - src/sycoca/kbuildsycoca.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/kbuildsycoca.cpp b/src/sycoca/kbuildsycoca.cpp -index 1deae14..250baa8 100644 ---- a/src/sycoca/kbuildsycoca.cpp -+++ b/src/sycoca/kbuildsycoca.cpp -@@ -208,7 +208,7 @@ bool KBuildSycoca::build() - QStringList relFiles; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, m_resourceSubdir, QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { -- QDirIterator it(dir, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - const QString filePath = it.next(); - Q_ASSERT(filePath.startsWith(dir)); // due to the line below... --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kservice/0002-no-canonicalize-path.patch b/pkgs/development/libraries/kde-frameworks-5.19/kservice/0002-no-canonicalize-path.patch deleted file mode 100644 index 685c6852611..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kservice/0002-no-canonicalize-path.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 46d124da602d84b7611a7ff0ac0862168d451cdb Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:31:29 -0500 -Subject: [PATCH 2/2] no canonicalize path - ---- - src/sycoca/vfolder_menu.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/vfolder_menu.cpp b/src/sycoca/vfolder_menu.cpp -index d3e31c3..d15d743 100644 ---- a/src/sycoca/vfolder_menu.cpp -+++ b/src/sycoca/vfolder_menu.cpp -@@ -415,7 +415,7 @@ VFolderMenu::absoluteDir(const QString &_dir, const QString &baseDir, bool keepR - } - - if (!relative) { -- QString resolved = QDir(dir).canonicalPath(); -+ QString resolved = QDir::cleanPath(dir); - if (!resolved.isEmpty()) { - dir = resolved; - } --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kservice/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kservice/default.nix deleted file mode 100644 index 3a27d85b916..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kservice/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem -}: - -kdeFramework { - name = "kservice"; - propagatedNativeBuildInputs = [ extra-cmake-modules ]; - nativeBuildInputs = [ kdoctools ]; - buildInputs = [ kcrash kdbusaddons ]; - propagatedBuildInputs = [ kconfig kcoreaddons ki18n kwindowsystem ]; - patches = [ - ./0001-qdiriterator-follow-symlinks.patch - ./0002-no-canonicalize-path.patch - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/default.nix deleted file mode 100644 index b8df6a5f4c0..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/default.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, makeQtWrapper, perl -, karchive, kconfig, kguiaddons, kiconthemes, kparts -, libgit2 -, qtscript, qtxmlpatterns -, ki18n, kio, sonnet -}: - -kdeFramework { - name = "ktexteditor"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper perl ]; - buildInputs = [ - karchive kconfig kguiaddons kiconthemes kparts - libgit2 - qtscript qtxmlpatterns - ]; - propagatedBuildInputs = [ ki18n kio sonnet ]; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/no-qcoreapplication.patch b/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/no-qcoreapplication.patch deleted file mode 100644 index 19ab1e1e551..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/no-qcoreapplication.patch +++ /dev/null @@ -1,36 +0,0 @@ -Index: ktexteditor-5.18.0/src/syntax/data/katehighlightingindexer.cpp -=================================================================== ---- ktexteditor-5.18.0.orig/src/syntax/data/katehighlightingindexer.cpp -+++ ktexteditor-5.18.0/src/syntax/data/katehighlightingindexer.cpp -@@ -55,19 +55,16 @@ QStringList readListing(const QString &f - - int main(int argc, char *argv[]) - { -- // get app instance -- QCoreApplication app(argc, argv); -- - // ensure enough arguments are passed -- if (app.arguments().size() < 3) -+ if (argc < 3) - return 1; - - // open schema - QXmlSchema schema; -- if (!schema.load(QUrl::fromLocalFile(app.arguments().at(2)))) -+ if (!schema.load(QUrl::fromLocalFile(QString::fromLocal8Bit(argv[2])))) - return 2; - -- const QString hlFilenamesListing = app.arguments().value(3); -+ const QString hlFilenamesListing = QString::fromLocal8Bit(argv[3]); - if (hlFilenamesListing.isEmpty()) { - return 1; - } -@@ -152,7 +149,7 @@ int main(int argc, char *argv[]) - return anyError; - - // create outfile, after all has worked! -- QFile outFile(app.arguments().at(1)); -+ QFile outFile(QString::fromLocal8Bit(argv[1])); - if (!outFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) - return 7; - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/series b/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/series deleted file mode 100644 index 46cd23829a2..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/series +++ /dev/null @@ -1 +0,0 @@ -no-qcoreapplication.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ktextwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.19/ktextwidgets.nix deleted file mode 100644 index e332d4ff9a8..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/ktextwidgets.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig -, kconfigwidgets, ki18n, kiconthemes, kservice, kwindowsystem -, sonnet -}: - -kdeFramework { - name = "ktextwidgets"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kiconthemes kservice - ]; - propagatedBuildInputs = [ ki18n kwindowsystem sonnet ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kunitconversion.nix b/pkgs/development/libraries/kde-frameworks-5.19/kunitconversion.nix deleted file mode 100644 index 3cf0f847d83..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kunitconversion.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, ki18n }: - -kdeFramework { - name = "kunitconversion"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kwallet.nix b/pkgs/development/libraries/kde-frameworks-5.19/kwallet.nix deleted file mode 100644 index 5ade5f63a8d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kwallet.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kconfigwidgets -, kcoreaddons , kdbusaddons, kdoctools, ki18n, kiconthemes -, knotifications , kservice, kwidgetsaddons, kwindowsystem, libgcrypt -, makeQtWrapper }: - -kdeFramework { - name = "kwallet"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kconfig kconfigwidgets kcoreaddons kdbusaddons kiconthemes - knotifications kservice kwidgetsaddons libgcrypt - ]; - propagatedBuildInputs = [ ki18n kwindowsystem ]; - postInstall = '' - wrapQtProgram "$out/bin/kwalletd5" - wrapQtProgram "$out/bin/kwallet-query" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kwidgetsaddons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kwidgetsaddons.nix deleted file mode 100644 index d95f44d3fec..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kwidgetsaddons.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kwidgetsaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kwindowsystem.nix b/pkgs/development/libraries/kde-frameworks-5.19/kwindowsystem.nix deleted file mode 100644 index 09ab1f2200d..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kwindowsystem.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtx11extras -}: - -kdeFramework { - name = "kwindowsystem"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kxmlgui.nix b/pkgs/development/libraries/kde-frameworks-5.19/kxmlgui.nix deleted file mode 100644 index f081d5f9170..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kxmlgui.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attica, kconfig -, kconfigwidgets, kglobalaccel, ki18n, kiconthemes, kitemviews -, ktextwidgets, kwindowsystem, sonnet -}: - -kdeFramework { - name = "kxmlgui"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - attica kconfig kiconthemes kitemviews ktextwidgets - ]; - propagatedBuildInputs = [ - kconfigwidgets kglobalaccel ki18n kwindowsystem sonnet - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kxmlrpcclient.nix b/pkgs/development/libraries/kde-frameworks-5.19/kxmlrpcclient.nix deleted file mode 100644 index 20a300b68bc..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kxmlrpcclient.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, ki18n, kio }: - -kdeFramework { - name = "kxmlrpcclient"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/modemmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.19/modemmanager-qt.nix deleted file mode 100644 index 7d7f769d6a9..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/modemmanager-qt.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, modemmanager -}: - -kdeFramework { - name = "modemmanager-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ modemmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/networkmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.19/networkmanager-qt.nix deleted file mode 100644 index 333378bd143..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/networkmanager-qt.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, networkmanager -}: - -kdeFramework { - name = "networkmanager-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ networkmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/oxygen-icons5.nix b/pkgs/development/libraries/kde-frameworks-5.19/oxygen-icons5.nix deleted file mode 100644 index ee350f8e153..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/oxygen-icons5.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework -, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "oxygen-icons5"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - license = lib.licenses.lgpl3Plus; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/plasma-framework/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/plasma-framework/default.nix deleted file mode 100644 index d8846f77723..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/plasma-framework/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive -, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative -, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio -, knotifications, kpackage, kservice, kwindowsystem, kxmlgui -, makeQtWrapper, qtscript, qtx11extras -}: - -kdeFramework { - name = "plasma-framework"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons - kiconthemes knotifications kxmlgui qtscript - ]; - propagatedBuildInputs = [ - kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem - qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/plasmapkg2" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/solid.nix b/pkgs/development/libraries/kde-frameworks-5.19/solid.nix deleted file mode 100644 index afd125e3c59..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/solid.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -, qtdeclarative -}: - -kdeFramework { - name = "solid"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ qtdeclarative ]; - postInstall = '' - wrapQtProgram "$out/bin/solid-hardware5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/sonnet.nix b/pkgs/development/libraries/kde-frameworks-5.19/sonnet.nix deleted file mode 100644 index 943fe04a1c9..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/sonnet.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, hunspell -}: - -kdeFramework { - name = "sonnet"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ hunspell ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/srcs.nix b/pkgs/development/libraries/kde-frameworks-5.19/srcs.nix deleted file mode 100644 index b86c0b71224..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/srcs.nix +++ /dev/null @@ -1,565 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - attica = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/attica-5.19.0.tar.xz"; - sha256 = "0cbvjnv2fcqsxspiy5pzmnnzrpfamlsc9j927kd6gpzai1ckf1lv"; - name = "attica-5.19.0.tar.xz"; - }; - }; - baloo = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/baloo-5.19.0.tar.xz"; - sha256 = "02yy0w13h5wxm74a87zi439f6yd9miid6rb54nia0pgvcka98svg"; - name = "baloo-5.19.0.tar.xz"; - }; - }; - bluez-qt = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/bluez-qt-5.19.0.tar.xz"; - sha256 = "0609i7rzhnnnp4fqnwscwp6y646ji8kl2hw5sy7azc87yllisnyv"; - name = "bluez-qt-5.19.0.tar.xz"; - }; - }; - breeze-icons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/breeze-icons-5.19.0.tar.xz"; - sha256 = "0bwix0jl1dscqfb7ygn9drpd9ivfx4g15vz6h01mswvxa9lz1vj0"; - name = "breeze-icons-5.19.0.tar.xz"; - }; - }; - extra-cmake-modules = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/extra-cmake-modules-5.19.0.tar.xz"; - sha256 = "1dl3hhbara7iswb5wsc5dp17ar3ljw5f0nrncl8vry9smaz2zl63"; - name = "extra-cmake-modules-5.19.0.tar.xz"; - }; - }; - frameworkintegration = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/frameworkintegration-5.19.0.tar.xz"; - sha256 = "00la7p7wcyqpxyi73h4fjrmm9d2gqzdaljn4468xya4bfns5ijy3"; - name = "frameworkintegration-5.19.0.tar.xz"; - }; - }; - kactivities = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kactivities-5.19.0.tar.xz"; - sha256 = "0yml1sbn3z4jd4vsfs25kqrl03pmlcgamzbgpw3248sabhyg7ks3"; - name = "kactivities-5.19.0.tar.xz"; - }; - }; - kapidox = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kapidox-5.19.0.tar.xz"; - sha256 = "0a9731xrkd6mnqh72592rx6gfnxxdfd7xl8pdpgdn7qs3394k1yz"; - name = "kapidox-5.19.0.tar.xz"; - }; - }; - karchive = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/karchive-5.19.0.tar.xz"; - sha256 = "043spmi7s2d1bj8d3wbgzbhisip6h92kqjhlvg8gyv0a7vy54ymv"; - name = "karchive-5.19.0.tar.xz"; - }; - }; - kauth = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kauth-5.19.0.tar.xz"; - sha256 = "0fm9ih2hkh2rpmlf98yw8z1r5bn2qmpva2k7mrv6ijd5h767fxss"; - name = "kauth-5.19.0.tar.xz"; - }; - }; - kbookmarks = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kbookmarks-5.19.0.tar.xz"; - sha256 = "0q418jpdc348nqgdavsmxxka4g8sldpdi9n89i1pllfmq10kw9sd"; - name = "kbookmarks-5.19.0.tar.xz"; - }; - }; - kcmutils = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcmutils-5.19.0.tar.xz"; - sha256 = "0qhdjb3zvqq9ycfgb52lz4flgipyplj5ksz8h8y71bbs4w6lazd8"; - name = "kcmutils-5.19.0.tar.xz"; - }; - }; - kcodecs = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcodecs-5.19.0.tar.xz"; - sha256 = "1rzp314fv9n5168j7nhv1c8fjaszpmgdx6javrx4w0hyrjdfkg66"; - name = "kcodecs-5.19.0.tar.xz"; - }; - }; - kcompletion = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcompletion-5.19.0.tar.xz"; - sha256 = "05n0y5kf3bcc4wgn6k0js5cravv1k93xxzrgapm21323qgvfagwd"; - name = "kcompletion-5.19.0.tar.xz"; - }; - }; - kconfig = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kconfig-5.19.0.tar.xz"; - sha256 = "0nk5hfl8yh0kgaa7xi0cc05dl6nf7prvbvxv0i99207xh9dafdmm"; - name = "kconfig-5.19.0.tar.xz"; - }; - }; - kconfigwidgets = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kconfigwidgets-5.19.0.tar.xz"; - sha256 = "1nld27chcjwjgwv76s2j77ifmca235yp10bm08rjmvnfn6778ypv"; - name = "kconfigwidgets-5.19.0.tar.xz"; - }; - }; - kcoreaddons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcoreaddons-5.19.0.tar.xz"; - sha256 = "07sm0givfdx28p302fkynzsd3xkpn1hbs43d4rscyx18yxfsldcw"; - name = "kcoreaddons-5.19.0.tar.xz"; - }; - }; - kcrash = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcrash-5.19.0.tar.xz"; - sha256 = "1dy03gp1sj96wn0zfa0dpbvz8pz0ia1j7p1wcif3iqk55pjxdgyl"; - name = "kcrash-5.19.0.tar.xz"; - }; - }; - kdbusaddons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdbusaddons-5.19.0.tar.xz"; - sha256 = "1bb5aik0kl3kab5399drfjxrm8iysgkf813xgr0y4k64c9kwfp28"; - name = "kdbusaddons-5.19.0.tar.xz"; - }; - }; - kdeclarative = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdeclarative-5.19.0.tar.xz"; - sha256 = "03g02zy7wjzmpvqzxx32z8ap7jyj9sf432g1d3csb0dcbx2ny52g"; - name = "kdeclarative-5.19.0.tar.xz"; - }; - }; - kded = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kded-5.19.0.tar.xz"; - sha256 = "0nyvg0h2aqy7qr57bad6wyc2rmcv9nhdq0py4fxc3irb6516p9hz"; - name = "kded-5.19.0.tar.xz"; - }; - }; - kdelibs4support = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kdelibs4support-5.19.0.tar.xz"; - sha256 = "0iqnb2j6gfy8006arwv65vljfhxdnk6aia0zppngb481jnd9n2pn"; - name = "kdelibs4support-5.19.0.tar.xz"; - }; - }; - kdesignerplugin = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdesignerplugin-5.19.0.tar.xz"; - sha256 = "11inmvyair796rx4842naf1dnxqvc6bqqzrv700ycvisad646ws5"; - name = "kdesignerplugin-5.19.0.tar.xz"; - }; - }; - kdesu = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdesu-5.19.0.tar.xz"; - sha256 = "19w8m7ji61bpd368lzkwlizcwa1l968l568lksgm2mm9pnyjjhgz"; - name = "kdesu-5.19.0.tar.xz"; - }; - }; - kdewebkit = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdewebkit-5.19.0.tar.xz"; - sha256 = "04b5qanhxggffnvmi28lspyi8kj4kq7mxhxndar9fmkzzgvy70hj"; - name = "kdewebkit-5.19.0.tar.xz"; - }; - }; - kdnssd = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdnssd-5.19.0.tar.xz"; - sha256 = "15a8w2i29mrbhadw6y123mr0cc45ijabnwdfp3lbkd40lk8nq314"; - name = "kdnssd-5.19.0.tar.xz"; - }; - }; - kdoctools = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdoctools-5.19.0.tar.xz"; - sha256 = "06g77n9wxpiv4skc1kz794ppfb2mkmd3fgn6an5kr301xc76cnpn"; - name = "kdoctools-5.19.0.tar.xz"; - }; - }; - kemoticons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kemoticons-5.19.0.tar.xz"; - sha256 = "0fiix2sf2wrvmrpx8whdr1bzm7gbv7pvg02y47w5bl6s9gh176g5"; - name = "kemoticons-5.19.0.tar.xz"; - }; - }; - kfilemetadata = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kfilemetadata-5.19.0.tar.xz"; - sha256 = "11j8if3xhp3xxwibwm6nxb4lh8wx40ni3zf5hki327pxv4vpq3qr"; - name = "kfilemetadata-5.19.0.tar.xz"; - }; - }; - kglobalaccel = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kglobalaccel-5.19.0.tar.xz"; - sha256 = "021j98f7217m83aqxpamg0lzlaiskdaqsd9iabc8wrp1g0nkm05d"; - name = "kglobalaccel-5.19.0.tar.xz"; - }; - }; - kguiaddons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kguiaddons-5.19.0.tar.xz"; - sha256 = "019xaf7vpgifcw8wibli9d2b50brhgdaypsqknh6mqq8q9g06jhy"; - name = "kguiaddons-5.19.0.tar.xz"; - }; - }; - khtml = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/khtml-5.19.0.tar.xz"; - sha256 = "0hqa54a9nxy954vy8gf52y89xd3ibz9b4jgh6w347b1alp1zn145"; - name = "khtml-5.19.0.tar.xz"; - }; - }; - ki18n = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/ki18n-5.19.0.tar.xz"; - sha256 = "0v3arc20y5d8afm9zfrz1skd2xg3ng62cq1xvxiq645w6mxf7y05"; - name = "ki18n-5.19.0.tar.xz"; - }; - }; - kiconthemes = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kiconthemes-5.19.0.tar.xz"; - sha256 = "0riicirgda3w2b30dzsa2lq9xrr4y04qwhxyzq1p8gn2x4pp3g3n"; - name = "kiconthemes-5.19.0.tar.xz"; - }; - }; - kidletime = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kidletime-5.19.0.tar.xz"; - sha256 = "0jlbzqv36ddhfhk8xkkgw0xhq8s371z9ama1cyv2xq8kk4vjywc6"; - name = "kidletime-5.19.0.tar.xz"; - }; - }; - kimageformats = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kimageformats-5.19.0.tar.xz"; - sha256 = "1ydizc6b0ncndazk62h8y249yfcx381pwzyivfpka1f69zfgyvv5"; - name = "kimageformats-5.19.0.tar.xz"; - }; - }; - kinit = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kinit-5.19.0.tar.xz"; - sha256 = "03l7pijqdnnsfg6yz9p73p7xa86sldayggl6rc5hpkzmgyczcfzm"; - name = "kinit-5.19.0.tar.xz"; - }; - }; - kio = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kio-5.19.0.tar.xz"; - sha256 = "0c7smp7cajivx53shy65mp9zcc51pha9iyvh37dggfflxy3xf9nv"; - name = "kio-5.19.0.tar.xz"; - }; - }; - kitemmodels = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kitemmodels-5.19.0.tar.xz"; - sha256 = "0skmim986qnncbzd84vm1wp1fr41jn04af2dgckirsk23d35bln7"; - name = "kitemmodels-5.19.0.tar.xz"; - }; - }; - kitemviews = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kitemviews-5.19.0.tar.xz"; - sha256 = "118zv46mvrfwbvl06bb1m8axv92wnp4pfs36hsxvnjl7gfjk5xjn"; - name = "kitemviews-5.19.0.tar.xz"; - }; - }; - kjobwidgets = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kjobwidgets-5.19.0.tar.xz"; - sha256 = "1qzf8nzy8rxkdai9aj2lyrww90245v0p2q115xiz73bsg9rahmji"; - name = "kjobwidgets-5.19.0.tar.xz"; - }; - }; - kjs = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kjs-5.19.0.tar.xz"; - sha256 = "08m01762hb25vm020g3v37bh40cgvcfrj45ql135klx96x9imfaf"; - name = "kjs-5.19.0.tar.xz"; - }; - }; - kjsembed = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kjsembed-5.19.0.tar.xz"; - sha256 = "1wmkgy8jgm21y2cvcbv1fdv29dxxla8n6ws78kzzbbw4cgqwwl48"; - name = "kjsembed-5.19.0.tar.xz"; - }; - }; - kmediaplayer = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kmediaplayer-5.19.0.tar.xz"; - sha256 = "1vhqr2c7q8vwzdj29vpmfjfhyal8wp9ffirrnqc98vb6sffs85ay"; - name = "kmediaplayer-5.19.0.tar.xz"; - }; - }; - knewstuff = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/knewstuff-5.19.0.tar.xz"; - sha256 = "12acd12vxk9z83zg3yz8lvmmb8737z9lzd4hs9a3jcs1z5k2nhb4"; - name = "knewstuff-5.19.0.tar.xz"; - }; - }; - knotifications = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/knotifications-5.19.0.tar.xz"; - sha256 = "0grgm0ws16gp2j77nslqpl1jpxbi0m6g59zr7v1xnmzdk2j6n4av"; - name = "knotifications-5.19.0.tar.xz"; - }; - }; - knotifyconfig = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/knotifyconfig-5.19.0.tar.xz"; - sha256 = "161brvryxzdkny7sf6icn1jpyi6rnw6jc808gdf5g41v50xpnxfj"; - name = "knotifyconfig-5.19.0.tar.xz"; - }; - }; - kpackage = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kpackage-5.19.0.tar.xz"; - sha256 = "1km4sjgxfljp2pnjnzj48q3c574zvj7341a57n4ifhjwj37yzxdv"; - name = "kpackage-5.19.0.tar.xz"; - }; - }; - kparts = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kparts-5.19.0.tar.xz"; - sha256 = "05g59x2mrqygawzcwgw3igl5n96l649h0kpzh37sfq4i8kg15g7l"; - name = "kparts-5.19.0.tar.xz"; - }; - }; - kpeople = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kpeople-5.19.0.tar.xz"; - sha256 = "1ksf6g71li1xk4q98cvwkam8m8g32x2815kj1gfwbg4g6iw74w98"; - name = "kpeople-5.19.0.tar.xz"; - }; - }; - kplotting = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kplotting-5.19.0.tar.xz"; - sha256 = "169x4m9ms8yhfha8zclnl8wrnfhfqshpwwg4b5bd046pcrkqmnqq"; - name = "kplotting-5.19.0.tar.xz"; - }; - }; - kpty = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kpty-5.19.0.tar.xz"; - sha256 = "0289vzfjwppwqj9h03flzhwm18dnxz11hqhdhr9990x7rw6a4n03"; - name = "kpty-5.19.0.tar.xz"; - }; - }; - kross = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kross-5.19.0.tar.xz"; - sha256 = "1nv7mrhn7wa4bs2a164x42d3b37akyvhkxqs8cg5fqp4vr2wkw0p"; - name = "kross-5.19.0.tar.xz"; - }; - }; - krunner = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/krunner-5.19.0.tar.xz"; - sha256 = "054s8309lxi27gpbg7iygbcxsp0pwrzbzww3h8zp2a9yiic4s5mx"; - name = "krunner-5.19.0.tar.xz"; - }; - }; - kservice = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kservice-5.19.0.tar.xz"; - sha256 = "02lbia26r2462nwksizaxjfkhxfqqs732dp495yx8bjc7wcv3srm"; - name = "kservice-5.19.0.tar.xz"; - }; - }; - ktexteditor = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/ktexteditor-5.19.0.tar.xz"; - sha256 = "0v3l44w4k43ajs81i8386hszk3x7rajjlb6z3jb7q98vhp91b5dp"; - name = "ktexteditor-5.19.0.tar.xz"; - }; - }; - ktextwidgets = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/ktextwidgets-5.19.0.tar.xz"; - sha256 = "1xydb76r6x1p10bkr2nlqg3md78jw8zvqad0h42dgvl4f5xvjknp"; - name = "ktextwidgets-5.19.0.tar.xz"; - }; - }; - kunitconversion = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kunitconversion-5.19.0.tar.xz"; - sha256 = "11g1vhqkrb1k748drj7klkbb7jca3dybakcmcgqf53g8vxfih8kb"; - name = "kunitconversion-5.19.0.tar.xz"; - }; - }; - kwallet = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kwallet-5.19.0.tar.xz"; - sha256 = "0z0c62fdfx9syrq6z7bk0ihac4yqyxpycll7h3mijj29km4jnpjm"; - name = "kwallet-5.19.0.tar.xz"; - }; - }; - kwidgetsaddons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kwidgetsaddons-5.19.0.tar.xz"; - sha256 = "0b85ng0dj5gpzifqmhyzgx61nb37vq7d0gvfpfazlcp5n27ywivm"; - name = "kwidgetsaddons-5.19.0.tar.xz"; - }; - }; - kwindowsystem = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kwindowsystem-5.19.0.tar.xz"; - sha256 = "115xs34r74j9zcsw69glnh8w59iyh764n3gniawwrk23c6yb8fch"; - name = "kwindowsystem-5.19.0.tar.xz"; - }; - }; - kxmlgui = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kxmlgui-5.19.0.tar.xz"; - sha256 = "1al2xifiyvl3zpva9nqap8gb6vqfgmf2fnhkmymm02rwg4yn4gah"; - name = "kxmlgui-5.19.0.tar.xz"; - }; - }; - kxmlrpcclient = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kxmlrpcclient-5.19.0.tar.xz"; - sha256 = "0lji7cxvh2lmjz42lx6ymz962gr4cyqfzksz0n5vgzfk5z0vq98g"; - name = "kxmlrpcclient-5.19.0.tar.xz"; - }; - }; - modemmanager-qt = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/modemmanager-qt-5.19.0.tar.xz"; - sha256 = "05x9jicryjw9fj02arpya8xsh79rsnljnqjfpwbb7pi38f9i8v4w"; - name = "modemmanager-qt-5.19.0.tar.xz"; - }; - }; - networkmanager-qt = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/networkmanager-qt-5.19.0.tar.xz"; - sha256 = "0wi0mkygzbvvyil1nyzc3ihgilvpx6j7caqaa9k38p85g93vsq13"; - name = "networkmanager-qt-5.19.0.tar.xz"; - }; - }; - oxygen-icons5 = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/oxygen-icons5-5.19.0.tar.xz"; - sha256 = "09vfwcyidj3bl0qr4sq78bkc69zp9x8dwp8bsay5y05q8591dkg0"; - name = "oxygen-icons5-5.19.0.tar.xz"; - }; - }; - plasma-framework = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/plasma-framework-5.19.0.tar.xz"; - sha256 = "1588r1jag0s9hhw4qq7mr2mcdd3d9az5ngb3z1l58xdhvfcc4497"; - name = "plasma-framework-5.19.0.tar.xz"; - }; - }; - solid = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/solid-5.19.0.tar.xz"; - sha256 = "02bnvhscb55r6q5hkyh7rqi6zsc3r974y3x9shi8l0xbs78snkgz"; - name = "solid-5.19.0.tar.xz"; - }; - }; - sonnet = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/sonnet-5.19.0.tar.xz"; - sha256 = "02ringh0wyiq1n19c200bcyf5x2w5jhw0pcxvfjzjai1sjig03x7"; - name = "sonnet-5.19.0.tar.xz"; - }; - }; - threadweaver = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/threadweaver-5.19.0.tar.xz"; - sha256 = "1jm1sw7xq76s2ggghm6qqdn7452myy9n7p5zzdb01qbaw2y1x4pw"; - name = "threadweaver-5.19.0.tar.xz"; - }; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/threadweaver.nix b/pkgs/development/libraries/kde-frameworks-5.19/threadweaver.nix deleted file mode 100644 index 52817921cc7..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/threadweaver.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "threadweaver"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} From a42f8459253d8f226d7d4611f057fc4d578a658c Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 2 May 2016 09:53:29 +0200 Subject: [PATCH 274/337] coq-dpdgraph: init at 0.5 --- .../coq-modules/dpdgraph/default.nix | 31 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/development/coq-modules/dpdgraph/default.nix diff --git a/pkgs/development/coq-modules/dpdgraph/default.nix b/pkgs/development/coq-modules/dpdgraph/default.nix new file mode 100644 index 00000000000..0dec05ebd3f --- /dev/null +++ b/pkgs/development/coq-modules/dpdgraph/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchFromGitHub, coq, ocamlPackages }: + +stdenv.mkDerivation { + name = "coq${coq.coq-version}-dpdgraph-0.5"; + src = fetchFromGitHub { + owner = "Karmaki"; + repo = "coq-dpdgraph"; + rev = "227a6a28bf11cf1ea56f359160558965154dd176"; + sha256 = "1vxf7qq37mnmlclkr394147xvrky3p98ar08c4wndwrp41gfbxhq"; + }; + + buildInputs = [ coq ] + ++ (with ocamlPackages; [ ocaml findlib ocamlgraph ]); + + preInstall = '' + mkdir -p $out/bin + ''; + + installFlags = '' + COQLIB=$(out)/lib/coq/${coq.coq-version}/ + BINDIR=$(out)/bin + ''; + + meta = { + description = "Build dependency graphs between Coq objects"; + license = stdenv.lib.licenses.lgpl21; + homepage = https://github.com/Karmaki/coq-dpdgraph/; + maintainers = with stdenv.lib.maintainers; [ vbgl ]; + platforms = coq.meta.platforms; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3137b95b07a..85c2afd4a54 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15882,6 +15882,8 @@ in coquelicot = callPackage ../development/coq-modules/coquelicot {}; + dpdgraph = callPackage ../development/coq-modules/dpdgraph {}; + flocq = callPackage ../development/coq-modules/flocq {}; interval = callPackage ../development/coq-modules/interval {}; From 372782d1f02138ffd5b1518a38545e88014c63c8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 24 Apr 2016 23:44:10 +0200 Subject: [PATCH 275/337] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160406-5-gcb85ef4 using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/24af5f79f4ffadbce08f69dbf99adc9e779763ea - LTS Haskell: https://github.com/fpco/lts-haskell/commit/4d628b7b7ec70abdaf5868f8a818e2ebdc05c2bd - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/2b431f312c0ceebe82f72afb748a4a052e4ff6f6 --- .../haskell-modules/configuration-lts-0.0.nix | 36 + .../haskell-modules/configuration-lts-0.1.nix | 36 + .../haskell-modules/configuration-lts-0.2.nix | 36 + .../haskell-modules/configuration-lts-0.3.nix | 36 + .../haskell-modules/configuration-lts-0.4.nix | 36 + .../haskell-modules/configuration-lts-0.5.nix | 36 + .../haskell-modules/configuration-lts-0.6.nix | 36 + .../haskell-modules/configuration-lts-0.7.nix | 36 + .../haskell-modules/configuration-lts-1.0.nix | 36 + .../haskell-modules/configuration-lts-1.1.nix | 36 + .../configuration-lts-1.10.nix | 36 + .../configuration-lts-1.11.nix | 36 + .../configuration-lts-1.12.nix | 36 + .../configuration-lts-1.13.nix | 36 + .../configuration-lts-1.14.nix | 37 + .../configuration-lts-1.15.nix | 37 + .../haskell-modules/configuration-lts-1.2.nix | 36 + .../haskell-modules/configuration-lts-1.4.nix | 36 + .../haskell-modules/configuration-lts-1.5.nix | 36 + .../haskell-modules/configuration-lts-1.7.nix | 36 + .../haskell-modules/configuration-lts-1.8.nix | 36 + .../haskell-modules/configuration-lts-1.9.nix | 36 + .../haskell-modules/configuration-lts-2.0.nix | 37 + .../haskell-modules/configuration-lts-2.1.nix | 37 + .../configuration-lts-2.10.nix | 37 + .../configuration-lts-2.11.nix | 37 + .../configuration-lts-2.12.nix | 37 + .../configuration-lts-2.13.nix | 37 + .../configuration-lts-2.14.nix | 37 + .../configuration-lts-2.15.nix | 37 + .../configuration-lts-2.16.nix | 38 + .../configuration-lts-2.17.nix | 38 + .../configuration-lts-2.18.nix | 38 + .../configuration-lts-2.19.nix | 38 + .../haskell-modules/configuration-lts-2.2.nix | 37 + .../configuration-lts-2.20.nix | 38 + .../configuration-lts-2.21.nix | 39 + .../configuration-lts-2.22.nix | 39 + .../haskell-modules/configuration-lts-2.3.nix | 37 + .../haskell-modules/configuration-lts-2.4.nix | 37 + .../haskell-modules/configuration-lts-2.5.nix | 37 + .../haskell-modules/configuration-lts-2.6.nix | 37 + .../haskell-modules/configuration-lts-2.7.nix | 37 + .../haskell-modules/configuration-lts-2.8.nix | 37 + .../haskell-modules/configuration-lts-2.9.nix | 37 + .../haskell-modules/configuration-lts-3.0.nix | 44 + .../haskell-modules/configuration-lts-3.1.nix | 45 + .../configuration-lts-3.10.nix | 52 + .../configuration-lts-3.11.nix | 52 + .../configuration-lts-3.12.nix | 52 + .../configuration-lts-3.13.nix | 52 + .../configuration-lts-3.14.nix | 55 + .../configuration-lts-3.15.nix | 55 + .../configuration-lts-3.16.nix | 55 + .../configuration-lts-3.17.nix | 55 + .../configuration-lts-3.18.nix | 56 + .../configuration-lts-3.19.nix | 57 + .../haskell-modules/configuration-lts-3.2.nix | 46 + .../configuration-lts-3.20.nix | 57 + .../configuration-lts-3.21.nix | 58 + .../configuration-lts-3.22.nix | 59 + .../haskell-modules/configuration-lts-3.3.nix | 46 + .../haskell-modules/configuration-lts-3.4.nix | 46 + .../haskell-modules/configuration-lts-3.5.nix | 47 + .../haskell-modules/configuration-lts-3.6.nix | 48 + .../haskell-modules/configuration-lts-3.7.nix | 48 + .../haskell-modules/configuration-lts-3.8.nix | 51 + .../haskell-modules/configuration-lts-3.9.nix | 51 + .../haskell-modules/configuration-lts-4.0.nix | 76 + .../haskell-modules/configuration-lts-4.1.nix | 78 + .../haskell-modules/configuration-lts-4.2.nix | 81 + .../haskell-modules/configuration-lts-5.0.nix | 88 + .../haskell-modules/configuration-lts-5.1.nix | 90 + .../configuration-lts-5.10.nix | 114 + .../configuration-lts-5.11.nix | 120 + .../configuration-lts-5.12.nix | 123 + .../configuration-lts-5.13.nix | 128 + .../configuration-lts-5.14.nix | 8149 +++++++++++++++++ .../configuration-lts-5.15.nix | 8129 ++++++++++++++++ .../haskell-modules/configuration-lts-5.2.nix | 91 + .../haskell-modules/configuration-lts-5.3.nix | 93 + .../haskell-modules/configuration-lts-5.4.nix | 97 + .../haskell-modules/configuration-lts-5.5.nix | 98 + .../haskell-modules/configuration-lts-5.6.nix | 99 + .../haskell-modules/configuration-lts-5.7.nix | 100 + .../haskell-modules/configuration-lts-5.8.nix | 102 + .../haskell-modules/configuration-lts-5.9.nix | 108 + .../haskell-modules/hackage-packages.nix | 3968 +++++--- 88 files changed, 23748 insertions(+), 1025 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-5.14.nix create mode 100644 pkgs/development/haskell-modules/configuration-lts-5.15.nix diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 5d5e07c3a48..20e87e83c29 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -822,6 +823,7 @@ self: super: { "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"; @@ -1346,6 +1348,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2035,6 +2038,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2116,6 +2120,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2191,6 +2196,7 @@ self: super: { "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"; @@ -2502,6 +2508,7 @@ self: super: { "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"; @@ -2645,6 +2652,7 @@ self: super: { "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"; @@ -3376,6 +3384,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4423,6 +4432,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4790,6 +4800,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4849,6 +4860,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4903,6 +4915,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5071,6 +5084,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5107,6 +5121,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5440,6 +5455,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5538,6 +5554,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5808,6 +5825,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5971,6 +5989,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -6000,6 +6019,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6414,6 +6434,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6513,6 +6534,7 @@ self: super: { "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"; @@ -6609,6 +6631,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6617,6 +6640,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_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"; @@ -6655,6 +6679,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6830,6 +6855,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6846,6 +6872,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6876,6 +6903,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6976,6 +7004,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7129,6 +7158,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7880,6 +7910,7 @@ self: super: { "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"; @@ -8187,6 +8218,7 @@ self: super: { "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"; @@ -8213,6 +8245,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8221,6 +8254,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8311,6 +8345,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8839,6 +8874,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 994ca185089..8142d61db1f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -822,6 +823,7 @@ self: super: { "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"; @@ -1346,6 +1348,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2035,6 +2038,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2116,6 +2120,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2191,6 +2196,7 @@ self: super: { "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"; @@ -2502,6 +2508,7 @@ self: super: { "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"; @@ -2645,6 +2652,7 @@ self: super: { "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"; @@ -3376,6 +3384,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4423,6 +4432,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4790,6 +4800,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4849,6 +4860,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4903,6 +4915,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5071,6 +5084,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5107,6 +5121,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5440,6 +5455,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5538,6 +5554,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5808,6 +5825,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5971,6 +5989,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -6000,6 +6019,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6414,6 +6434,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6513,6 +6534,7 @@ self: super: { "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"; @@ -6609,6 +6631,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6617,6 +6640,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_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"; @@ -6655,6 +6679,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6830,6 +6855,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6846,6 +6872,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6876,6 +6903,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6976,6 +7004,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7129,6 +7158,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7880,6 +7910,7 @@ self: super: { "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"; @@ -8187,6 +8218,7 @@ self: super: { "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"; @@ -8213,6 +8245,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8221,6 +8254,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8311,6 +8345,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8839,6 +8874,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 13288cf6eef..93da6c8ea26 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -822,6 +823,7 @@ self: super: { "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"; @@ -1346,6 +1348,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2035,6 +2038,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2116,6 +2120,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2191,6 +2196,7 @@ self: super: { "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"; @@ -2502,6 +2508,7 @@ self: super: { "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"; @@ -2645,6 +2652,7 @@ self: super: { "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"; @@ -3376,6 +3384,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4423,6 +4432,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4790,6 +4800,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4849,6 +4860,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4903,6 +4915,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5071,6 +5084,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5107,6 +5121,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5440,6 +5455,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5538,6 +5554,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5808,6 +5825,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5971,6 +5989,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -6000,6 +6019,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6414,6 +6434,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6513,6 +6534,7 @@ self: super: { "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"; @@ -6609,6 +6631,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6617,6 +6640,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_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"; @@ -6655,6 +6679,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6830,6 +6855,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6846,6 +6872,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6876,6 +6903,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6976,6 +7004,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7129,6 +7158,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7880,6 +7910,7 @@ self: super: { "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"; @@ -8187,6 +8218,7 @@ self: super: { "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"; @@ -8213,6 +8245,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8221,6 +8254,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8311,6 +8345,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8839,6 +8874,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index a2a328b65c0..139587df0ca 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -822,6 +823,7 @@ self: super: { "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"; @@ -1346,6 +1348,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2035,6 +2038,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2116,6 +2120,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2191,6 +2196,7 @@ self: super: { "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"; @@ -2502,6 +2508,7 @@ self: super: { "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"; @@ -2645,6 +2652,7 @@ self: super: { "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"; @@ -3376,6 +3384,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4423,6 +4432,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4790,6 +4800,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4849,6 +4860,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4903,6 +4915,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5071,6 +5084,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5107,6 +5121,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5440,6 +5455,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5538,6 +5554,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5808,6 +5825,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5971,6 +5989,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -6000,6 +6019,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6414,6 +6434,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6513,6 +6534,7 @@ self: super: { "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"; @@ -6609,6 +6631,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6617,6 +6640,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_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"; @@ -6655,6 +6679,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6830,6 +6855,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6846,6 +6872,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6876,6 +6903,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6976,6 +7004,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7129,6 +7158,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7880,6 +7910,7 @@ self: super: { "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"; @@ -8187,6 +8218,7 @@ self: super: { "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"; @@ -8213,6 +8245,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8221,6 +8254,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8311,6 +8345,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8839,6 +8874,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 8947dce5d90..ebf71b233b2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -822,6 +823,7 @@ self: super: { "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"; @@ -1346,6 +1348,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2035,6 +2038,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2116,6 +2120,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2191,6 +2196,7 @@ self: super: { "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"; @@ -2502,6 +2508,7 @@ self: super: { "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"; @@ -2645,6 +2652,7 @@ self: super: { "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"; @@ -3375,6 +3383,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4420,6 +4429,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4787,6 +4797,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4846,6 +4857,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4900,6 +4912,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5068,6 +5081,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5104,6 +5118,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5437,6 +5452,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5535,6 +5551,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5805,6 +5822,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5968,6 +5986,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5997,6 +6016,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6411,6 +6431,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6510,6 +6531,7 @@ self: super: { "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"; @@ -6606,6 +6628,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6614,6 +6637,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_2"; + "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"; @@ -6652,6 +6676,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6827,6 +6852,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6843,6 +6869,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6873,6 +6900,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6973,6 +7001,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7126,6 +7155,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7876,6 +7906,7 @@ self: super: { "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"; @@ -8183,6 +8214,7 @@ self: super: { "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"; @@ -8209,6 +8241,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8217,6 +8250,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8307,6 +8341,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8835,6 +8870,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 74c95cb7400..98602756736 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -822,6 +823,7 @@ self: super: { "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"; @@ -1346,6 +1348,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2035,6 +2038,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2116,6 +2120,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2191,6 +2196,7 @@ self: super: { "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"; @@ -2502,6 +2508,7 @@ self: super: { "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"; @@ -2645,6 +2652,7 @@ self: super: { "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"; @@ -3375,6 +3383,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4420,6 +4429,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4787,6 +4797,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4846,6 +4857,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4900,6 +4912,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5068,6 +5081,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5104,6 +5118,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5437,6 +5452,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5535,6 +5551,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5805,6 +5822,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5968,6 +5986,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5997,6 +6016,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6411,6 +6431,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6510,6 +6531,7 @@ self: super: { "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"; @@ -6606,6 +6628,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6614,6 +6637,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_2"; + "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"; @@ -6652,6 +6676,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6827,6 +6852,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6843,6 +6869,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6873,6 +6900,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6973,6 +7001,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7126,6 +7155,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7876,6 +7906,7 @@ self: super: { "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"; @@ -8183,6 +8214,7 @@ self: super: { "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"; @@ -8209,6 +8241,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8217,6 +8250,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8307,6 +8341,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8835,6 +8870,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 1e44d58aefd..36e7461a8cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -821,6 +822,7 @@ self: super: { "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"; @@ -1345,6 +1347,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2034,6 +2037,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2115,6 +2119,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2190,6 +2195,7 @@ self: super: { "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"; @@ -2501,6 +2507,7 @@ self: super: { "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"; @@ -2644,6 +2651,7 @@ self: super: { "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"; @@ -3374,6 +3382,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4418,6 +4427,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4785,6 +4795,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4844,6 +4855,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4898,6 +4910,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5066,6 +5079,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5102,6 +5116,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5435,6 +5450,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5533,6 +5549,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5803,6 +5820,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5966,6 +5984,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5995,6 +6014,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6409,6 +6429,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6508,6 +6529,7 @@ self: super: { "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"; @@ -6604,6 +6626,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6612,6 +6635,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_3"; + "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"; @@ -6650,6 +6674,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6825,6 +6850,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6841,6 +6867,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6871,6 +6898,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6971,6 +6999,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7124,6 +7153,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7873,6 +7903,7 @@ self: super: { "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"; @@ -8180,6 +8211,7 @@ self: super: { "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"; @@ -8206,6 +8238,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8214,6 +8247,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8304,6 +8338,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8832,6 +8867,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index f5075c4afc2..5b1578fd4c3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -821,6 +822,7 @@ self: super: { "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"; @@ -1345,6 +1347,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2034,6 +2037,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2115,6 +2119,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2190,6 +2195,7 @@ self: super: { "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"; @@ -2501,6 +2507,7 @@ self: super: { "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"; @@ -2644,6 +2651,7 @@ self: super: { "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"; @@ -3374,6 +3382,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4418,6 +4427,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4785,6 +4795,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4844,6 +4855,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4898,6 +4910,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5066,6 +5079,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5102,6 +5116,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5435,6 +5450,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5533,6 +5549,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5803,6 +5820,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5966,6 +5984,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5995,6 +6014,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6409,6 +6429,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6508,6 +6529,7 @@ self: super: { "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"; @@ -6604,6 +6626,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6612,6 +6635,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_3"; + "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"; @@ -6650,6 +6674,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6825,6 +6850,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6841,6 +6867,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6871,6 +6898,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6971,6 +6999,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7124,6 +7153,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7873,6 +7903,7 @@ self: super: { "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"; @@ -8180,6 +8211,7 @@ self: super: { "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"; @@ -8206,6 +8238,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8214,6 +8247,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8304,6 +8338,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8832,6 +8867,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index b1e9391c5f8..ee69deb9f1b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -817,6 +818,7 @@ self: super: { "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"; @@ -1342,6 +1344,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2028,6 +2031,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2109,6 +2113,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2184,6 +2189,7 @@ self: super: { "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"; @@ -2494,6 +2500,7 @@ self: super: { "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"; @@ -2637,6 +2644,7 @@ self: super: { "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"; @@ -3366,6 +3374,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4410,6 +4419,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4776,6 +4786,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4835,6 +4846,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4889,6 +4901,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5057,6 +5070,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5093,6 +5107,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5426,6 +5441,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5524,6 +5540,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5794,6 +5811,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5957,6 +5975,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5986,6 +6005,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6400,6 +6420,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6499,6 +6520,7 @@ self: super: { "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"; @@ -6595,6 +6617,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6603,6 +6626,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_3"; + "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"; @@ -6641,6 +6665,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6816,6 +6841,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6832,6 +6858,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6862,6 +6889,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6962,6 +6990,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7115,6 +7144,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7862,6 +7892,7 @@ self: super: { "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"; @@ -8169,6 +8200,7 @@ self: super: { "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"; @@ -8195,6 +8227,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8203,6 +8236,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8293,6 +8327,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8820,6 +8855,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 4f833f432c8..00e5a44a804 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -817,6 +818,7 @@ self: super: { "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"; @@ -1342,6 +1344,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2027,6 +2030,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2108,6 +2112,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2183,6 +2188,7 @@ self: super: { "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"; @@ -2492,6 +2498,7 @@ self: super: { "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"; @@ -2635,6 +2642,7 @@ self: super: { "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"; @@ -3363,6 +3371,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4406,6 +4415,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4770,6 +4780,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4829,6 +4840,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4883,6 +4895,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5051,6 +5064,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5087,6 +5101,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5420,6 +5435,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5518,6 +5534,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5788,6 +5805,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5950,6 +5968,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5979,6 +5998,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6393,6 +6413,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6492,6 +6513,7 @@ self: super: { "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"; @@ -6588,6 +6610,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6596,6 +6619,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "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"; @@ -6634,6 +6658,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6809,6 +6834,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6825,6 +6851,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6855,6 +6882,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6955,6 +6983,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7108,6 +7137,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7854,6 +7884,7 @@ self: super: { "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"; @@ -8160,6 +8191,7 @@ self: super: { "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"; @@ -8186,6 +8218,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8194,6 +8227,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8283,6 +8317,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8807,6 +8842,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 988c7e3714a..9a04c8e8c94 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "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"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "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"; @@ -2488,6 +2494,7 @@ self: super: { "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"; @@ -2631,6 +2638,7 @@ self: super: { "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"; @@ -3355,6 +3363,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4395,6 +4404,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4759,6 +4769,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4818,6 +4829,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_5"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4872,6 +4884,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5035,6 +5048,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5071,6 +5085,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5404,6 +5419,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5502,6 +5518,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5771,6 +5788,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5933,6 +5951,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5962,6 +5981,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6374,6 +6394,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6472,6 +6493,7 @@ self: super: { "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"; @@ -6568,6 +6590,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6576,6 +6599,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_7"; + "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"; @@ -6614,6 +6638,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6789,6 +6814,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6805,6 +6831,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6835,6 +6862,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6935,6 +6963,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7087,6 +7116,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7831,6 +7861,7 @@ self: super: { "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"; @@ -8137,6 +8168,7 @@ self: super: { "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"; @@ -8162,6 +8194,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8170,6 +8203,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8258,6 +8292,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8779,6 +8814,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 0fe6da3b536..33d0a5b299b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "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"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "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"; @@ -2488,6 +2494,7 @@ self: super: { "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"; @@ -2631,6 +2638,7 @@ self: super: { "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"; @@ -3354,6 +3362,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4394,6 +4403,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4758,6 +4768,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4817,6 +4828,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_5"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4871,6 +4883,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5033,6 +5046,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5068,6 +5082,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5401,6 +5416,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5498,6 +5514,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5767,6 +5784,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5929,6 +5947,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5958,6 +5977,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6370,6 +6390,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6468,6 +6489,7 @@ self: super: { "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"; @@ -6564,6 +6586,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6572,6 +6595,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_7"; + "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"; @@ -6610,6 +6634,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6785,6 +6810,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6801,6 +6827,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6831,6 +6858,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6931,6 +6959,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7083,6 +7112,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7827,6 +7857,7 @@ self: super: { "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"; @@ -8133,6 +8164,7 @@ self: super: { "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"; @@ -8158,6 +8190,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8166,6 +8199,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8254,6 +8288,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8775,6 +8810,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 6523554f052..3fcd44271df 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "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"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "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"; @@ -2488,6 +2494,7 @@ self: super: { "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"; @@ -2631,6 +2638,7 @@ self: super: { "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"; @@ -3354,6 +3362,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4393,6 +4402,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4757,6 +4767,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4816,6 +4827,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_5"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4870,6 +4882,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5032,6 +5045,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5067,6 +5081,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5400,6 +5415,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5497,6 +5513,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5766,6 +5783,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5928,6 +5946,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5957,6 +5976,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6369,6 +6389,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6467,6 +6488,7 @@ self: super: { "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"; @@ -6563,6 +6585,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6571,6 +6594,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_7"; + "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"; @@ -6609,6 +6633,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6784,6 +6809,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6800,6 +6826,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6830,6 +6857,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6930,6 +6958,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7082,6 +7111,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7826,6 +7856,7 @@ self: super: { "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"; @@ -8132,6 +8163,7 @@ self: super: { "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"; @@ -8157,6 +8189,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8165,6 +8198,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8253,6 +8287,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8774,6 +8809,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 9b192de0166..1cedbc8be95 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "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"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "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"; @@ -2488,6 +2494,7 @@ self: super: { "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"; @@ -2631,6 +2638,7 @@ self: super: { "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"; @@ -3354,6 +3362,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4392,6 +4401,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4756,6 +4766,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4815,6 +4826,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_5"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4869,6 +4881,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5031,6 +5044,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5066,6 +5080,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5399,6 +5414,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5496,6 +5512,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5765,6 +5782,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5927,6 +5945,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5956,6 +5975,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6368,6 +6388,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6466,6 +6487,7 @@ self: super: { "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"; @@ -6562,6 +6584,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6570,6 +6593,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "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"; @@ -6608,6 +6632,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6783,6 +6808,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6799,6 +6825,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6829,6 +6856,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6929,6 +6957,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7081,6 +7110,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7825,6 +7855,7 @@ self: super: { "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"; @@ -8131,6 +8162,7 @@ self: super: { "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"; @@ -8156,6 +8188,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8164,6 +8197,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8251,6 +8285,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8772,6 +8807,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index a2021991e50..3483e76ea31 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -482,6 +482,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -815,6 +816,7 @@ self: super: { "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"; @@ -1340,6 +1342,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2023,6 +2026,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2103,6 +2107,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2178,6 +2183,7 @@ self: super: { "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"; @@ -2485,6 +2491,7 @@ self: super: { "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"; @@ -2628,6 +2635,7 @@ self: super: { "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"; @@ -3351,6 +3359,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4389,6 +4398,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4753,6 +4763,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4812,6 +4823,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4866,6 +4878,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5028,6 +5041,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5063,6 +5077,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5396,6 +5411,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5493,6 +5509,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5762,6 +5779,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5860,6 +5878,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_1"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5923,6 +5942,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5952,6 +5972,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6364,6 +6385,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6462,6 +6484,7 @@ self: super: { "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"; @@ -6558,6 +6581,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6566,6 +6590,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "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"; @@ -6604,6 +6629,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6779,6 +6805,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6795,6 +6822,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6825,6 +6853,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6925,6 +6954,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7076,6 +7106,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7820,6 +7851,7 @@ self: super: { "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"; @@ -8126,6 +8158,7 @@ self: super: { "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"; @@ -8151,6 +8184,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8159,6 +8193,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8246,6 +8281,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8767,6 +8803,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index b5fdfd2a4aa..5cc0f9fffde 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -482,6 +482,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -815,6 +816,7 @@ self: super: { "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"; @@ -1339,6 +1341,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2022,6 +2025,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2101,6 +2105,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2176,6 +2181,7 @@ self: super: { "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"; @@ -2482,6 +2488,7 @@ self: super: { "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"; @@ -2625,6 +2632,7 @@ self: super: { "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"; @@ -3347,6 +3355,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4385,6 +4394,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4749,6 +4759,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4808,6 +4819,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4862,6 +4874,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5024,6 +5037,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5059,6 +5073,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5392,6 +5407,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5489,6 +5505,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5758,6 +5775,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5856,6 +5874,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5919,6 +5938,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5948,6 +5968,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6358,6 +6379,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6456,6 +6478,7 @@ self: super: { "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"; @@ -6552,6 +6575,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6560,6 +6584,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "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"; @@ -6598,6 +6623,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6773,6 +6799,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6789,6 +6816,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6819,6 +6847,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6919,6 +6948,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7069,6 +7099,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7813,6 +7844,7 @@ self: super: { "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"; @@ -8117,6 +8149,7 @@ self: super: { "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"; @@ -8142,6 +8175,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8150,6 +8184,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8237,6 +8272,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8758,6 +8794,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 2ce53895ab7..7ac7464aa45 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -817,6 +818,7 @@ self: super: { "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"; @@ -1342,6 +1344,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2027,6 +2030,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2107,6 +2111,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2182,6 +2187,7 @@ self: super: { "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"; @@ -2490,6 +2496,7 @@ self: super: { "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"; @@ -2633,6 +2640,7 @@ self: super: { "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"; @@ -3361,6 +3369,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4403,6 +4412,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4767,6 +4777,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4826,6 +4837,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4880,6 +4892,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5048,6 +5061,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5084,6 +5098,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5417,6 +5432,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5515,6 +5531,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5785,6 +5802,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5947,6 +5965,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5976,6 +5995,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6390,6 +6410,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6488,6 +6509,7 @@ self: super: { "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"; @@ -6584,6 +6606,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6592,6 +6615,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "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"; @@ -6630,6 +6654,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6805,6 +6830,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6821,6 +6847,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6851,6 +6878,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6951,6 +6979,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7103,6 +7132,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7848,6 +7878,7 @@ self: super: { "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"; @@ -8154,6 +8185,7 @@ self: super: { "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"; @@ -8180,6 +8212,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8188,6 +8221,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8277,6 +8311,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8801,6 +8836,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 5092c1f02a7..b5e1d26ff19 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "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"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2026,6 +2029,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2106,6 +2110,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2181,6 +2186,7 @@ self: super: { "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"; @@ -2489,6 +2495,7 @@ self: super: { "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"; @@ -2632,6 +2639,7 @@ self: super: { "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"; @@ -3359,6 +3367,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4400,6 +4409,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4764,6 +4774,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4823,6 +4834,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4877,6 +4889,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5045,6 +5058,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5081,6 +5095,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5414,6 +5429,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5512,6 +5528,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5782,6 +5799,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5944,6 +5962,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5973,6 +5992,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6386,6 +6406,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6484,6 +6505,7 @@ self: super: { "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"; @@ -6580,6 +6602,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6588,6 +6611,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "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"; @@ -6626,6 +6650,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6801,6 +6826,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6817,6 +6843,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6847,6 +6874,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6947,6 +6975,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7099,6 +7128,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7844,6 +7874,7 @@ self: super: { "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"; @@ -8150,6 +8181,7 @@ self: super: { "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"; @@ -8176,6 +8208,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8184,6 +8217,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8272,6 +8306,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8796,6 +8831,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index de2508852e7..5e5d5ff2a2f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "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"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "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"; @@ -2488,6 +2494,7 @@ self: super: { "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"; @@ -2631,6 +2638,7 @@ self: super: { "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"; @@ -3358,6 +3366,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4399,6 +4408,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4763,6 +4773,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4822,6 +4833,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4876,6 +4888,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5044,6 +5057,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5080,6 +5094,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5413,6 +5428,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5511,6 +5527,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5781,6 +5798,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5943,6 +5961,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5972,6 +5991,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6385,6 +6405,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6483,6 +6504,7 @@ self: super: { "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"; @@ -6579,6 +6601,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6587,6 +6610,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "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"; @@ -6625,6 +6649,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6800,6 +6825,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6816,6 +6842,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6846,6 +6873,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6946,6 +6974,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7098,6 +7127,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7843,6 +7873,7 @@ self: super: { "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"; @@ -8149,6 +8180,7 @@ self: super: { "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"; @@ -8175,6 +8207,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8183,6 +8216,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8271,6 +8305,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8793,6 +8828,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 72af4fc6c77..345a0efa8f4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "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"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "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"; @@ -2488,6 +2494,7 @@ self: super: { "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"; @@ -2631,6 +2638,7 @@ self: super: { "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"; @@ -3358,6 +3366,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4399,6 +4408,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4763,6 +4773,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4822,6 +4833,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4876,6 +4888,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5039,6 +5052,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5075,6 +5089,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5408,6 +5423,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5506,6 +5522,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5776,6 +5793,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5938,6 +5956,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5967,6 +5986,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6380,6 +6400,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6478,6 +6499,7 @@ self: super: { "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"; @@ -6574,6 +6596,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6582,6 +6605,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "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"; @@ -6620,6 +6644,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6795,6 +6820,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6811,6 +6837,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6841,6 +6868,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6941,6 +6969,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7093,6 +7122,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7838,6 +7868,7 @@ self: super: { "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"; @@ -8144,6 +8175,7 @@ self: super: { "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"; @@ -8170,6 +8202,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8178,6 +8211,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8266,6 +8300,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8788,6 +8823,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index b7b754a984f..4b1d4e7c9a2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "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"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "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"; @@ -2488,6 +2494,7 @@ self: super: { "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"; @@ -2631,6 +2638,7 @@ self: super: { "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"; @@ -3356,6 +3364,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4396,6 +4405,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4760,6 +4770,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4819,6 +4830,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4873,6 +4885,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5036,6 +5049,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5072,6 +5086,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5405,6 +5420,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5503,6 +5519,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5772,6 +5789,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5934,6 +5952,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_12"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5963,6 +5982,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6376,6 +6396,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6474,6 +6495,7 @@ self: super: { "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"; @@ -6570,6 +6592,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6578,6 +6601,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "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"; @@ -6616,6 +6640,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6791,6 +6816,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6807,6 +6833,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6837,6 +6864,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6937,6 +6965,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7089,6 +7118,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7834,6 +7864,7 @@ self: super: { "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"; @@ -8140,6 +8171,7 @@ self: super: { "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"; @@ -8166,6 +8198,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8174,6 +8207,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8262,6 +8296,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8783,6 +8818,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 6cb77fd1f9b..54c9bc0f5bf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "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"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "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-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "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"; @@ -2488,6 +2494,7 @@ self: super: { "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"; @@ -2631,6 +2638,7 @@ self: super: { "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"; @@ -3355,6 +3363,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4395,6 +4404,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4759,6 +4769,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4818,6 +4829,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_5"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4872,6 +4884,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5035,6 +5048,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5071,6 +5085,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5404,6 +5419,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5502,6 +5518,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5771,6 +5788,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5933,6 +5951,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_12"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5962,6 +5981,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6375,6 +6395,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6473,6 +6494,7 @@ self: super: { "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"; @@ -6569,6 +6591,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6577,6 +6600,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "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"; @@ -6615,6 +6639,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6790,6 +6815,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6806,6 +6832,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6836,6 +6863,7 @@ self: super: { "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" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6936,6 +6964,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7088,6 +7117,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7833,6 +7863,7 @@ self: super: { "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"; @@ -8139,6 +8170,7 @@ self: super: { "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"; @@ -8165,6 +8197,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8173,6 +8206,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8261,6 +8295,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8782,6 +8817,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index fa5928d6b72..1e4b541f524 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "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"; @@ -1333,6 +1335,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2013,6 +2016,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2092,6 +2096,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2166,6 +2171,7 @@ self: super: { "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"; @@ -2470,6 +2476,7 @@ self: super: { "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"; @@ -2613,6 +2620,7 @@ self: super: { "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"; @@ -3333,6 +3341,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4368,6 +4377,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4731,6 +4741,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4790,6 +4801,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4844,6 +4856,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5001,6 +5014,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5036,6 +5050,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5365,6 +5380,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5459,6 +5475,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5727,6 +5744,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5824,6 +5842,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5887,6 +5906,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5914,6 +5934,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6318,6 +6339,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6416,6 +6438,7 @@ self: super: { "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"; @@ -6511,6 +6534,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6519,6 +6543,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "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"; @@ -6557,6 +6582,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6731,6 +6757,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6747,6 +6774,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6776,6 +6804,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6877,6 +6906,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7027,6 +7057,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7766,6 +7797,7 @@ self: super: { "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"; @@ -8068,6 +8100,7 @@ self: super: { "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"; @@ -8093,6 +8126,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8101,6 +8135,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8188,6 +8223,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8708,6 +8744,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 8ff45e0c7df..490801bae1b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "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"; @@ -1333,6 +1335,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2012,6 +2015,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2091,6 +2095,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2165,6 +2170,7 @@ self: super: { "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"; @@ -2469,6 +2475,7 @@ self: super: { "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"; @@ -2612,6 +2619,7 @@ self: super: { "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"; @@ -3332,6 +3340,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4367,6 +4376,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4730,6 +4740,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4789,6 +4800,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4843,6 +4855,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5000,6 +5013,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5035,6 +5049,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5364,6 +5379,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5458,6 +5474,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5726,6 +5743,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5823,6 +5841,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5886,6 +5905,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5913,6 +5933,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6317,6 +6338,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6415,6 +6437,7 @@ self: super: { "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"; @@ -6510,6 +6533,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6518,6 +6542,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "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"; @@ -6556,6 +6581,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6730,6 +6756,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6746,6 +6773,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6775,6 +6803,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6876,6 +6905,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7026,6 +7056,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7765,6 +7796,7 @@ self: super: { "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"; @@ -8067,6 +8099,7 @@ self: super: { "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"; @@ -8092,6 +8125,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8100,6 +8134,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8187,6 +8222,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8707,6 +8743,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 3b13848d98a..a9e84b65523 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1328,6 +1330,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2001,6 +2004,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2080,6 +2084,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2154,6 +2159,7 @@ self: super: { "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"; @@ -2457,6 +2463,7 @@ self: super: { "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"; @@ -2599,6 +2606,7 @@ self: super: { "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"; @@ -3315,6 +3323,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4348,6 +4357,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4710,6 +4720,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4768,6 +4779,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "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"; @@ -4822,6 +4834,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4978,6 +4991,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5013,6 +5027,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5340,6 +5355,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5433,6 +5449,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5701,6 +5718,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5798,6 +5816,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5861,6 +5880,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5888,6 +5908,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6292,6 +6313,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6390,6 +6412,7 @@ self: super: { "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"; @@ -6484,6 +6507,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6492,6 +6516,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_5"; + "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"; @@ -6530,6 +6555,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6703,6 +6729,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6719,6 +6746,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6748,6 +6776,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6849,6 +6878,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -6998,6 +7028,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7734,6 +7765,7 @@ self: super: { "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"; @@ -8029,6 +8061,7 @@ self: super: { "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"; @@ -8054,6 +8087,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8062,6 +8096,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8149,6 +8184,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8667,6 +8703,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 14570e607c8..17f0dc57766 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2000,6 +2003,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2079,6 +2083,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2153,6 +2158,7 @@ self: super: { "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"; @@ -2456,6 +2462,7 @@ self: super: { "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"; @@ -2598,6 +2605,7 @@ self: super: { "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"; @@ -3314,6 +3322,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4345,6 +4354,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4707,6 +4717,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4765,6 +4776,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "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"; @@ -4819,6 +4831,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4975,6 +4988,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5010,6 +5024,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5336,6 +5351,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5429,6 +5445,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5697,6 +5714,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5794,6 +5812,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5856,6 +5875,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5883,6 +5903,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6287,6 +6308,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6384,6 +6406,7 @@ self: super: { "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"; @@ -6478,6 +6501,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6486,6 +6510,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "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"; @@ -6524,6 +6549,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6697,6 +6723,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6713,6 +6740,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6742,6 +6770,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6843,6 +6872,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -6992,6 +7022,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7727,6 +7758,7 @@ self: super: { "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"; @@ -8020,6 +8052,7 @@ self: super: { "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"; @@ -8045,6 +8078,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8053,6 +8087,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8140,6 +8175,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8658,6 +8694,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 706e342f6b2..248c9d5bdb3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2000,6 +2003,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2079,6 +2083,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2153,6 +2158,7 @@ self: super: { "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"; @@ -2456,6 +2462,7 @@ self: super: { "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"; @@ -2598,6 +2605,7 @@ self: super: { "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"; @@ -3314,6 +3322,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4345,6 +4354,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4707,6 +4717,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4765,6 +4776,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "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"; @@ -4819,6 +4831,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4975,6 +4988,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5010,6 +5024,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5336,6 +5351,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5429,6 +5445,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5697,6 +5714,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5794,6 +5812,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5856,6 +5875,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5883,6 +5903,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6287,6 +6308,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6384,6 +6406,7 @@ self: super: { "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"; @@ -6478,6 +6501,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6486,6 +6510,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "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"; @@ -6524,6 +6549,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6697,6 +6723,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6713,6 +6740,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6742,6 +6770,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6843,6 +6872,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -6992,6 +7022,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7726,6 +7757,7 @@ self: super: { "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"; @@ -8019,6 +8051,7 @@ self: super: { "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"; @@ -8044,6 +8077,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8052,6 +8086,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8139,6 +8174,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8657,6 +8693,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 7cad852e803..f2b2e400ab7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2000,6 +2003,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2079,6 +2083,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2153,6 +2158,7 @@ self: super: { "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"; @@ -2456,6 +2462,7 @@ self: super: { "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"; @@ -2598,6 +2605,7 @@ self: super: { "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"; @@ -3314,6 +3322,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4344,6 +4353,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4706,6 +4716,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4764,6 +4775,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "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"; @@ -4818,6 +4830,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4973,6 +4986,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5008,6 +5022,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5334,6 +5349,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5427,6 +5443,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5695,6 +5712,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5792,6 +5810,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5854,6 +5873,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5881,6 +5901,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6285,6 +6306,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6382,6 +6404,7 @@ self: super: { "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"; @@ -6476,6 +6499,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6484,6 +6508,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "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"; @@ -6522,6 +6547,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6695,6 +6721,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6711,6 +6738,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6740,6 +6768,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6841,6 +6870,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -6990,6 +7020,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7724,6 +7755,7 @@ self: super: { "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"; @@ -8017,6 +8049,7 @@ self: super: { "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"; @@ -8042,6 +8075,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8050,6 +8084,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8137,6 +8172,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8655,6 +8691,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 951fd6c2f8d..aabae0822bf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2000,6 +2003,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2079,6 +2083,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2153,6 +2158,7 @@ self: super: { "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"; @@ -2456,6 +2462,7 @@ self: super: { "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"; @@ -2598,6 +2605,7 @@ self: super: { "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"; @@ -3313,6 +3321,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4343,6 +4352,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4704,6 +4714,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4762,6 +4773,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "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"; @@ -4816,6 +4828,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4971,6 +4984,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5006,6 +5020,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5332,6 +5347,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5425,6 +5441,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5693,6 +5710,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5790,6 +5808,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5852,6 +5871,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5879,6 +5899,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6283,6 +6304,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6380,6 +6402,7 @@ self: super: { "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"; @@ -6474,6 +6497,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6482,6 +6506,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "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"; @@ -6520,6 +6545,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6693,6 +6719,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6709,6 +6736,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6738,6 +6766,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6839,6 +6868,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -6988,6 +7018,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7721,6 +7752,7 @@ self: super: { "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"; @@ -8014,6 +8046,7 @@ self: super: { "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"; @@ -8039,6 +8072,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8047,6 +8081,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8134,6 +8169,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8652,6 +8688,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 8adbc6fec84..b1f729fc28f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2000,6 +2003,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2079,6 +2083,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2153,6 +2158,7 @@ self: super: { "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"; @@ -2456,6 +2462,7 @@ self: super: { "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"; @@ -2598,6 +2605,7 @@ self: super: { "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"; @@ -3312,6 +3320,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4342,6 +4351,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4703,6 +4713,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4761,6 +4772,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "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"; @@ -4815,6 +4827,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4970,6 +4983,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5005,6 +5019,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5331,6 +5346,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5424,6 +5440,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5692,6 +5709,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5789,6 +5807,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5851,6 +5870,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5877,6 +5897,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6281,6 +6302,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6378,6 +6400,7 @@ self: super: { "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"; @@ -6472,6 +6495,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6480,6 +6504,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "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"; @@ -6518,6 +6543,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6691,6 +6717,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6707,6 +6734,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6736,6 +6764,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6837,6 +6866,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -6986,6 +7016,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7719,6 +7750,7 @@ self: super: { "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"; @@ -8011,6 +8043,7 @@ self: super: { "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"; @@ -8036,6 +8069,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8044,6 +8078,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8131,6 +8166,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8649,6 +8685,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 3e319aa5ed4..723d0c93c37 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2000,6 +2003,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2078,6 +2082,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2152,6 +2157,7 @@ self: super: { "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"; @@ -2324,6 +2330,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2454,6 +2461,7 @@ self: super: { "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"; @@ -2596,6 +2604,7 @@ self: super: { "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"; @@ -3308,6 +3317,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4338,6 +4348,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4699,6 +4710,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4757,6 +4769,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "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"; @@ -4811,6 +4824,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4966,6 +4980,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5001,6 +5016,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5327,6 +5343,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5419,6 +5436,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5687,6 +5705,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5784,6 +5803,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5846,6 +5866,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5872,6 +5893,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6276,6 +6298,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6373,6 +6396,7 @@ self: super: { "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"; @@ -6467,6 +6491,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6475,6 +6500,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "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"; @@ -6513,6 +6539,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6686,6 +6713,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6702,6 +6730,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6731,6 +6760,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6832,6 +6862,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -6981,6 +7012,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7714,6 +7746,7 @@ self: super: { "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"; @@ -8006,6 +8039,7 @@ self: super: { "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"; @@ -8031,6 +8065,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8039,6 +8074,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8126,6 +8162,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8644,6 +8681,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 0a58df94535..eaf1fea3dae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -1998,6 +2001,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2076,6 +2080,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2150,6 +2155,7 @@ self: super: { "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"; @@ -2322,6 +2328,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2452,6 +2459,7 @@ self: super: { "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"; @@ -2594,6 +2602,7 @@ self: super: { "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"; @@ -3304,6 +3313,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4334,6 +4344,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4695,6 +4706,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4753,6 +4765,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5_1"; "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"; @@ -4807,6 +4820,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4962,6 +4976,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4997,6 +5012,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5323,6 +5339,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5415,6 +5432,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5683,6 +5701,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5780,6 +5799,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5842,6 +5862,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5868,6 +5889,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6271,6 +6293,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6368,6 +6391,7 @@ self: super: { "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"; @@ -6462,6 +6486,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6470,6 +6495,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "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"; @@ -6508,6 +6534,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6681,6 +6708,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6697,6 +6725,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6726,6 +6755,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6827,6 +6857,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -6976,6 +7007,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7709,6 +7741,7 @@ self: super: { "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"; @@ -8001,6 +8034,7 @@ self: super: { "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"; @@ -8026,6 +8060,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8034,6 +8069,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8121,6 +8157,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8639,6 +8676,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index e7a9357da6a..073161b05b0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -1997,6 +2000,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2075,6 +2079,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2149,6 +2154,7 @@ self: super: { "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"; @@ -2321,6 +2327,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2451,6 +2458,7 @@ self: super: { "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"; @@ -2593,6 +2601,7 @@ self: super: { "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"; @@ -3302,6 +3311,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4332,6 +4342,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4693,6 +4704,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4751,6 +4763,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5_1"; "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"; @@ -4805,6 +4818,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4960,6 +4974,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4995,6 +5010,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5321,6 +5337,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5413,6 +5430,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5681,6 +5699,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5778,6 +5797,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5840,6 +5860,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5866,6 +5887,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6268,6 +6290,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6365,6 +6388,7 @@ self: super: { "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"; @@ -6459,6 +6483,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6467,6 +6492,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "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"; @@ -6505,6 +6531,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6678,6 +6705,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6694,6 +6722,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6723,6 +6752,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6824,6 +6854,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -6973,6 +7004,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7706,6 +7738,7 @@ self: super: { "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"; @@ -7997,6 +8030,7 @@ self: super: { "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"; @@ -8022,6 +8056,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8030,6 +8065,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8117,6 +8153,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8635,6 +8672,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index de4b6c8fbb8..de94de5ae3c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -1997,6 +2000,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2075,6 +2079,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2149,6 +2154,7 @@ self: super: { "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"; @@ -2321,6 +2327,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2451,6 +2458,7 @@ self: super: { "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"; @@ -2593,6 +2601,7 @@ self: super: { "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"; @@ -3301,6 +3310,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4331,6 +4341,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4692,6 +4703,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4750,6 +4762,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5_1"; "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"; @@ -4804,6 +4817,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4959,6 +4973,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4994,6 +5009,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5320,6 +5336,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5412,6 +5429,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5680,6 +5698,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5776,6 +5795,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5838,6 +5858,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5864,6 +5885,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6266,6 +6288,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6363,6 +6386,7 @@ self: super: { "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"; @@ -6457,6 +6481,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6465,6 +6490,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "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"; @@ -6503,6 +6529,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6676,6 +6703,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6692,6 +6720,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6721,6 +6750,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6822,6 +6852,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -6971,6 +7002,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7703,6 +7735,7 @@ self: super: { "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"; @@ -7994,6 +8027,7 @@ self: super: { "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"; @@ -8019,6 +8053,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8027,6 +8062,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8114,6 +8150,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8632,6 +8669,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index b1785347434..ce113fd1467 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "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"; @@ -1332,6 +1334,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2009,6 +2012,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2088,6 +2092,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2162,6 +2167,7 @@ self: super: { "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"; @@ -2466,6 +2472,7 @@ self: super: { "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"; @@ -2609,6 +2616,7 @@ self: super: { "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"; @@ -3329,6 +3337,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4364,6 +4373,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4727,6 +4737,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4786,6 +4797,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4840,6 +4852,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4997,6 +5010,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5032,6 +5046,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5361,6 +5376,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5455,6 +5471,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5723,6 +5740,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5820,6 +5838,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5883,6 +5902,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5910,6 +5930,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6314,6 +6335,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6412,6 +6434,7 @@ self: super: { "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"; @@ -6507,6 +6530,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6515,6 +6539,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "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"; @@ -6553,6 +6578,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6727,6 +6753,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6743,6 +6770,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6772,6 +6800,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6873,6 +6902,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7023,6 +7053,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7762,6 +7793,7 @@ self: super: { "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"; @@ -8064,6 +8096,7 @@ self: super: { "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"; @@ -8089,6 +8122,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8097,6 +8131,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8184,6 +8219,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8704,6 +8740,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 13fd59373ee..dae40ae5b4e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -1997,6 +2000,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2075,6 +2079,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2149,6 +2154,7 @@ self: super: { "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"; @@ -2320,6 +2326,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2450,6 +2457,7 @@ self: super: { "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"; @@ -2592,6 +2600,7 @@ self: super: { "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"; @@ -3300,6 +3309,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4330,6 +4340,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4691,6 +4702,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4749,6 +4761,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_7_1"; "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"; @@ -4803,6 +4816,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4958,6 +4972,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4993,6 +5008,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5319,6 +5335,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5411,6 +5428,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5679,6 +5697,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5775,6 +5794,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5837,6 +5857,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5863,6 +5884,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6265,6 +6287,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6362,6 +6385,7 @@ self: super: { "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"; @@ -6456,6 +6480,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6464,6 +6489,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "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"; @@ -6502,6 +6528,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6674,6 +6701,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6690,6 +6718,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6719,6 +6748,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6820,6 +6850,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -6969,6 +7000,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7700,6 +7732,7 @@ self: super: { "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"; @@ -7991,6 +8024,7 @@ self: super: { "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"; @@ -8016,6 +8050,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8024,6 +8059,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8111,6 +8147,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8629,6 +8666,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 9718fd66f08..36373c0e79a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -1997,6 +2000,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2075,6 +2079,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2149,6 +2154,7 @@ self: super: { "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"; @@ -2320,6 +2326,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2450,6 +2457,7 @@ self: super: { "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"; @@ -2592,6 +2600,7 @@ self: super: { "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"; @@ -3300,6 +3309,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4330,6 +4340,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4691,6 +4702,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4749,6 +4761,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_7_2"; "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"; @@ -4803,6 +4816,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4958,6 +4972,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4993,6 +5008,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5319,6 +5335,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5411,6 +5428,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5679,6 +5697,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5775,6 +5794,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5837,6 +5857,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5863,6 +5884,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6265,6 +6287,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6362,6 +6385,7 @@ self: super: { "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"; @@ -6456,6 +6480,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6464,6 +6489,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "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"; @@ -6502,6 +6528,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6673,6 +6700,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6689,6 +6717,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6718,6 +6747,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6819,6 +6849,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -6968,6 +6999,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7699,6 +7731,7 @@ self: super: { "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"; @@ -7990,6 +8023,7 @@ self: super: { "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"; @@ -8015,6 +8049,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8023,6 +8058,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8110,6 +8146,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8628,6 +8665,7 @@ self: super: { "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"; @@ -8979,6 +9017,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index c9c1be69df4..638c1833dc3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -1997,6 +2000,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2075,6 +2079,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2149,6 +2154,7 @@ self: super: { "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"; @@ -2320,6 +2326,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2450,6 +2457,7 @@ self: super: { "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"; @@ -2592,6 +2600,7 @@ self: super: { "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"; @@ -3300,6 +3309,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4329,6 +4339,7 @@ self: super: { "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_4_2_3"; @@ -4690,6 +4701,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4748,6 +4760,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_7_2"; "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"; @@ -4802,6 +4815,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4957,6 +4971,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4992,6 +5007,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5318,6 +5334,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5410,6 +5427,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5678,6 +5696,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5774,6 +5793,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5836,6 +5856,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5862,6 +5883,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6264,6 +6286,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6361,6 +6384,7 @@ self: super: { "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"; @@ -6455,6 +6479,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6463,6 +6488,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "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"; @@ -6501,6 +6527,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6672,6 +6699,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6688,6 +6716,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6717,6 +6746,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6818,6 +6848,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -6967,6 +6998,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7698,6 +7730,7 @@ self: super: { "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"; @@ -7989,6 +8022,7 @@ self: super: { "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"; @@ -8014,6 +8048,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8022,6 +8057,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8109,6 +8145,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8627,6 +8664,7 @@ self: super: { "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"; @@ -8978,6 +9016,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 5548314dff3..7bc9200c110 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "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"; @@ -1332,6 +1334,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2009,6 +2012,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2088,6 +2092,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2162,6 +2167,7 @@ self: super: { "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"; @@ -2466,6 +2472,7 @@ self: super: { "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"; @@ -2609,6 +2616,7 @@ self: super: { "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"; @@ -3328,6 +3336,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4363,6 +4372,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4726,6 +4736,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4785,6 +4796,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4839,6 +4851,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4995,6 +5008,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5030,6 +5044,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5359,6 +5374,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5453,6 +5469,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5721,6 +5738,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5818,6 +5836,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5881,6 +5900,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5908,6 +5928,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6312,6 +6333,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6410,6 +6432,7 @@ self: super: { "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"; @@ -6505,6 +6528,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6513,6 +6537,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "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"; @@ -6551,6 +6576,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6725,6 +6751,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6741,6 +6768,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6770,6 +6798,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6871,6 +6900,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7021,6 +7051,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7760,6 +7791,7 @@ self: super: { "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"; @@ -8062,6 +8094,7 @@ self: super: { "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"; @@ -8087,6 +8120,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8095,6 +8129,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8182,6 +8217,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8702,6 +8738,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 9becf92e39a..17cfdfa1bcc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "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"; @@ -1332,6 +1334,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2008,6 +2011,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2087,6 +2091,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2161,6 +2166,7 @@ self: super: { "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"; @@ -2465,6 +2471,7 @@ self: super: { "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"; @@ -2608,6 +2615,7 @@ self: super: { "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"; @@ -3327,6 +3335,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4362,6 +4371,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4725,6 +4735,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4784,6 +4795,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4838,6 +4850,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4994,6 +5007,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5029,6 +5043,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5358,6 +5373,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5452,6 +5468,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5720,6 +5737,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5817,6 +5835,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5880,6 +5899,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5907,6 +5927,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6311,6 +6332,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6409,6 +6431,7 @@ self: super: { "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"; @@ -6503,6 +6526,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6511,6 +6535,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "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"; @@ -6549,6 +6574,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6723,6 +6749,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6739,6 +6766,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6768,6 +6796,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6869,6 +6898,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7019,6 +7049,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7757,6 +7788,7 @@ self: super: { "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"; @@ -8059,6 +8091,7 @@ self: super: { "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"; @@ -8084,6 +8117,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8092,6 +8126,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8179,6 +8214,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8699,6 +8735,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index c770cc19433..54bdf226282 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "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"; @@ -1332,6 +1334,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2008,6 +2011,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2087,6 +2091,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2161,6 +2166,7 @@ self: super: { "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"; @@ -2464,6 +2470,7 @@ self: super: { "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"; @@ -2607,6 +2614,7 @@ self: super: { "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"; @@ -3326,6 +3334,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4361,6 +4370,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4724,6 +4734,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4783,6 +4794,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4837,6 +4849,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4993,6 +5006,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5028,6 +5042,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5357,6 +5372,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5451,6 +5467,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5719,6 +5736,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5816,6 +5834,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5879,6 +5898,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5906,6 +5926,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6310,6 +6331,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6408,6 +6430,7 @@ self: super: { "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"; @@ -6502,6 +6525,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6510,6 +6534,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; + "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"; @@ -6548,6 +6573,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6722,6 +6748,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6738,6 +6765,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6767,6 +6795,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6868,6 +6897,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7018,6 +7048,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7756,6 +7787,7 @@ self: super: { "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"; @@ -8058,6 +8090,7 @@ self: super: { "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"; @@ -8083,6 +8116,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8091,6 +8125,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8178,6 +8213,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8698,6 +8734,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index b18878eda98..53a6ba088d3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "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"; @@ -1330,6 +1332,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2005,6 +2008,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2084,6 +2088,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2158,6 +2163,7 @@ self: super: { "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"; @@ -2461,6 +2467,7 @@ self: super: { "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"; @@ -2604,6 +2611,7 @@ self: super: { "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"; @@ -3323,6 +3331,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4356,6 +4365,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4719,6 +4729,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4778,6 +4789,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4832,6 +4844,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4988,6 +5001,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5023,6 +5037,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5352,6 +5367,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5446,6 +5462,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5714,6 +5731,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5811,6 +5829,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5874,6 +5893,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5901,6 +5921,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6304,6 +6325,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6402,6 +6424,7 @@ self: super: { "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"; @@ -6496,6 +6519,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6504,6 +6528,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; + "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"; @@ -6542,6 +6567,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6716,6 +6742,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6732,6 +6759,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6761,6 +6789,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6862,6 +6891,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7012,6 +7042,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7750,6 +7781,7 @@ self: super: { "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"; @@ -8052,6 +8084,7 @@ self: super: { "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"; @@ -8077,6 +8110,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8085,6 +8119,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8172,6 +8207,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8690,6 +8726,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index a310f5c2279..4bc47cb0bd8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -809,6 +810,7 @@ self: super: { "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"; @@ -1329,6 +1331,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2004,6 +2007,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2083,6 +2087,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2157,6 +2162,7 @@ self: super: { "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"; @@ -2460,6 +2466,7 @@ self: super: { "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"; @@ -2603,6 +2610,7 @@ self: super: { "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"; @@ -3322,6 +3330,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4355,6 +4364,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4718,6 +4728,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4777,6 +4788,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4831,6 +4843,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4987,6 +5000,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5022,6 +5036,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5351,6 +5366,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5445,6 +5461,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5713,6 +5730,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5810,6 +5828,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5873,6 +5892,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5900,6 +5920,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6304,6 +6325,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6402,6 +6424,7 @@ self: super: { "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"; @@ -6496,6 +6519,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6504,6 +6528,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; + "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"; @@ -6542,6 +6567,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6716,6 +6742,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6732,6 +6759,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6761,6 +6789,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6862,6 +6891,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7012,6 +7042,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7750,6 +7781,7 @@ self: super: { "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"; @@ -8052,6 +8084,7 @@ self: super: { "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"; @@ -8077,6 +8110,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8085,6 +8119,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8172,6 +8207,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8690,6 +8726,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 6f38b78b48a..d9fbbb3de72 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1328,6 +1330,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2003,6 +2006,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2082,6 +2086,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2156,6 +2161,7 @@ self: super: { "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"; @@ -2459,6 +2465,7 @@ self: super: { "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"; @@ -2602,6 +2609,7 @@ self: super: { "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"; @@ -3320,6 +3328,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4353,6 +4362,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4716,6 +4726,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4775,6 +4786,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4829,6 +4841,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4985,6 +4998,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5020,6 +5034,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5349,6 +5364,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5443,6 +5459,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5711,6 +5728,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5808,6 +5826,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5871,6 +5890,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5898,6 +5918,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6302,6 +6323,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6400,6 +6422,7 @@ self: super: { "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"; @@ -6494,6 +6517,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6502,6 +6526,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; + "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"; @@ -6540,6 +6565,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6714,6 +6740,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6730,6 +6757,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6759,6 +6787,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6860,6 +6889,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7010,6 +7040,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7746,6 +7777,7 @@ self: super: { "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"; @@ -8046,6 +8078,7 @@ self: super: { "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"; @@ -8071,6 +8104,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8079,6 +8113,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8166,6 +8201,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8684,6 +8720,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index e082c07865a..6a5856b036b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "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"; @@ -1328,6 +1330,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2001,6 +2004,7 @@ self: super: { "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"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2080,6 +2084,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2154,6 +2159,7 @@ self: super: { "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"; @@ -2457,6 +2463,7 @@ self: super: { "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"; @@ -2600,6 +2607,7 @@ self: super: { "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"; @@ -3316,6 +3324,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4349,6 +4358,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4711,6 +4721,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4769,6 +4780,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "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"; @@ -4823,6 +4835,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4979,6 +4992,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5014,6 +5028,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5343,6 +5358,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5436,6 +5452,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5704,6 +5721,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5801,6 +5819,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5864,6 +5883,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5891,6 +5911,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6295,6 +6316,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6393,6 +6415,7 @@ self: super: { "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"; @@ -6487,6 +6510,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6495,6 +6519,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_5"; + "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"; @@ -6533,6 +6558,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6707,6 +6733,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6723,6 +6750,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6752,6 +6780,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6853,6 +6882,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "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"; @@ -7003,6 +7033,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7739,6 +7770,7 @@ self: super: { "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"; @@ -8035,6 +8067,7 @@ self: super: { "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"; @@ -8060,6 +8093,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8068,6 +8102,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8155,6 +8190,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8673,6 +8709,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index dc44bbbcf45..e69cfb6680b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -797,6 +798,7 @@ self: super: { "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"; @@ -1304,6 +1306,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1947,6 +1950,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_3_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2022,6 +2026,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2070,6 +2075,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2094,6 +2100,7 @@ self: super: { "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"; @@ -2262,6 +2269,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2392,6 +2400,7 @@ self: super: { "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"; @@ -2531,6 +2540,7 @@ self: super: { "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"; @@ -3219,6 +3229,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4236,6 +4247,7 @@ self: super: { "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_4_2_3"; @@ -4594,6 +4606,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4650,6 +4663,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4703,6 +4717,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4850,6 +4865,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4884,6 +4900,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5194,6 +5211,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5282,6 +5300,7 @@ self: super: { "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"; @@ -5544,6 +5563,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5637,6 +5657,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5697,6 +5718,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5720,6 +5742,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5819,6 +5843,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6112,6 +6137,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6206,6 +6232,7 @@ self: super: { "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"; @@ -6298,6 +6325,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6306,6 +6334,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "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"; @@ -6342,6 +6371,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6507,6 +6537,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6523,6 +6554,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_36_0_2"; @@ -6552,6 +6584,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6652,6 +6685,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_2_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"; @@ -6800,6 +6834,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7527,6 +7562,7 @@ self: super: { "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"; @@ -7808,6 +7844,7 @@ self: super: { "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"; @@ -7832,6 +7869,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7840,6 +7878,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7927,6 +7966,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8114,6 +8154,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8431,6 +8472,7 @@ self: super: { "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"; @@ -8776,6 +8818,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8818,6 +8861,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 564fca0b8df..28c84d54ed9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -797,6 +798,7 @@ self: super: { "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"; @@ -1303,6 +1305,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1946,6 +1949,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_3_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2021,6 +2025,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2069,6 +2074,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2093,6 +2099,7 @@ self: super: { "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"; @@ -2261,6 +2268,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2391,6 +2399,7 @@ self: super: { "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"; @@ -2530,6 +2539,7 @@ self: super: { "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"; @@ -3217,6 +3227,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4234,6 +4245,7 @@ self: super: { "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_4_2_3"; @@ -4592,6 +4604,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4648,6 +4661,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4701,6 +4715,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4848,6 +4863,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4882,6 +4898,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5192,6 +5209,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5280,6 +5298,7 @@ self: super: { "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"; @@ -5541,6 +5560,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5634,6 +5654,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5694,6 +5715,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5717,6 +5739,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5816,6 +5840,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5837,6 +5862,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6108,6 +6134,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6202,6 +6229,7 @@ self: super: { "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"; @@ -6294,6 +6322,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6302,6 +6331,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "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"; @@ -6338,6 +6368,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6502,6 +6533,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6518,6 +6550,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_36_0_2"; @@ -6547,6 +6580,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6647,6 +6681,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_3_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"; @@ -6795,6 +6830,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7521,6 +7557,7 @@ self: super: { "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"; @@ -7802,6 +7839,7 @@ self: super: { "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"; @@ -7826,6 +7864,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7834,6 +7873,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7921,6 +7961,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8108,6 +8149,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8425,6 +8467,7 @@ self: super: { "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"; @@ -8769,6 +8812,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8811,6 +8855,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 80084167d43..9263d961f70 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "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"; @@ -1300,6 +1302,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1936,6 +1939,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2011,6 +2015,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2059,6 +2064,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2083,6 +2089,7 @@ self: super: { "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"; @@ -2251,6 +2258,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2380,6 +2388,7 @@ self: super: { "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"; @@ -2519,6 +2528,7 @@ self: super: { "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"; @@ -2602,6 +2612,7 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_3"; @@ -2609,12 +2620,14 @@ self: super: { "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3165,6 +3178,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3197,6 +3211,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4209,6 +4224,7 @@ self: super: { "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_4_2_3"; @@ -4565,6 +4581,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4621,6 +4638,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4674,6 +4692,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4819,6 +4838,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4853,6 +4873,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5054,6 +5075,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5160,6 +5182,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5246,6 +5269,7 @@ self: super: { "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"; @@ -5507,6 +5531,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5599,6 +5624,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5659,6 +5685,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_14"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5682,6 +5709,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5780,6 +5809,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5801,6 +5831,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6069,6 +6100,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6163,6 +6195,7 @@ self: super: { "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"; @@ -6254,6 +6287,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6262,6 +6296,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_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"; @@ -6298,6 +6333,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6461,6 +6497,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6476,6 +6513,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6503,6 +6541,7 @@ self: super: { "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"; @@ -6602,6 +6641,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "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"; @@ -6749,6 +6789,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7472,6 +7513,7 @@ self: super: { "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"; @@ -7751,6 +7793,7 @@ self: super: { "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"; @@ -7775,6 +7818,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7783,6 +7827,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7866,6 +7911,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8053,6 +8099,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8367,6 +8414,7 @@ self: super: { "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"; @@ -8539,6 +8587,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8704,6 +8753,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8746,6 +8796,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8802,6 +8853,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index a7a66f37824..4a0c8ae04f2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "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"; @@ -1300,6 +1302,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1935,6 +1938,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2010,6 +2014,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2058,6 +2063,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2082,6 +2088,7 @@ self: super: { "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"; @@ -2250,6 +2257,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2379,6 +2387,7 @@ self: super: { "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"; @@ -2518,6 +2527,7 @@ self: super: { "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"; @@ -2601,6 +2611,7 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_3"; @@ -2608,12 +2619,14 @@ self: super: { "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3163,6 +3176,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3195,6 +3209,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4207,6 +4222,7 @@ self: super: { "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_4_2_3"; @@ -4563,6 +4579,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4619,6 +4636,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4672,6 +4690,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4817,6 +4836,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4851,6 +4871,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5052,6 +5073,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5158,6 +5180,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5244,6 +5267,7 @@ self: super: { "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"; @@ -5505,6 +5529,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5597,6 +5622,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5657,6 +5683,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_14"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5680,6 +5707,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5778,6 +5807,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5799,6 +5829,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6067,6 +6098,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6161,6 +6193,7 @@ self: super: { "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"; @@ -6252,6 +6285,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6260,6 +6294,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2"; + "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"; @@ -6295,6 +6330,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6458,6 +6494,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6473,6 +6510,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6500,6 +6538,7 @@ self: super: { "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"; @@ -6599,6 +6638,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "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"; @@ -6746,6 +6786,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7469,6 +7510,7 @@ self: super: { "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"; @@ -7748,6 +7790,7 @@ self: super: { "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"; @@ -7772,6 +7815,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7780,6 +7824,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7863,6 +7908,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8050,6 +8096,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8364,6 +8411,7 @@ self: super: { "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"; @@ -8536,6 +8584,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8701,6 +8750,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8743,6 +8793,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8799,6 +8850,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 928bc177e6a..f87cc10c8a9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "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"; @@ -1300,6 +1302,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1935,6 +1938,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2009,6 +2013,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2057,6 +2062,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2081,6 +2087,7 @@ self: super: { "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"; @@ -2249,6 +2256,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2378,6 +2386,7 @@ self: super: { "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"; @@ -2517,6 +2526,7 @@ self: super: { "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"; @@ -2600,6 +2610,7 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_3"; @@ -2607,12 +2618,14 @@ self: super: { "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3162,6 +3175,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3194,6 +3208,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4205,6 +4220,7 @@ self: super: { "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_4_2_3"; @@ -4561,6 +4577,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4617,6 +4634,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4670,6 +4688,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4815,6 +4834,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4849,6 +4869,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5050,6 +5071,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5156,6 +5178,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5242,6 +5265,7 @@ self: super: { "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"; @@ -5503,6 +5527,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5595,6 +5620,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5655,6 +5681,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5678,6 +5705,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5776,6 +5805,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5797,6 +5827,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6065,6 +6096,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6159,6 +6191,7 @@ self: super: { "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"; @@ -6249,6 +6282,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6257,6 +6291,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2"; + "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"; @@ -6292,6 +6327,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6455,6 +6491,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6470,6 +6507,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6497,6 +6535,7 @@ self: super: { "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"; @@ -6596,6 +6635,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_5_3"; "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"; @@ -6743,6 +6783,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7466,6 +7507,7 @@ self: super: { "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"; @@ -7745,6 +7787,7 @@ self: super: { "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"; @@ -7769,6 +7812,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7777,6 +7821,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7859,6 +7904,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8045,6 +8091,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8359,6 +8406,7 @@ self: super: { "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"; @@ -8531,6 +8579,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8696,6 +8745,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8738,6 +8788,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8794,6 +8845,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 45442c782c0..4d0b4b51f4b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "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"; @@ -1300,6 +1302,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1935,6 +1938,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2009,6 +2013,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2057,6 +2062,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2081,6 +2087,7 @@ self: super: { "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"; @@ -2249,6 +2256,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2378,6 +2386,7 @@ self: super: { "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"; @@ -2517,6 +2526,7 @@ self: super: { "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"; @@ -2600,6 +2610,7 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_3"; @@ -2607,12 +2618,14 @@ self: super: { "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3162,6 +3175,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3194,6 +3208,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4204,6 +4219,7 @@ self: super: { "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_4_2_3"; @@ -4560,6 +4576,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4616,6 +4633,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4669,6 +4687,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4814,6 +4833,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4848,6 +4868,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5049,6 +5070,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5155,6 +5177,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5240,6 +5263,7 @@ self: super: { "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"; @@ -5501,6 +5525,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5593,6 +5618,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5653,6 +5679,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5676,6 +5703,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5774,6 +5803,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5795,6 +5825,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6063,6 +6094,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6157,6 +6189,7 @@ self: super: { "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"; @@ -6246,6 +6279,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6254,6 +6288,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2"; + "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"; @@ -6289,6 +6324,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6452,6 +6488,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6467,6 +6504,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6494,6 +6532,7 @@ self: super: { "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"; @@ -6593,6 +6632,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_5_4"; "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"; @@ -6740,6 +6780,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7463,6 +7504,7 @@ self: super: { "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"; @@ -7742,6 +7784,7 @@ self: super: { "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"; @@ -7766,6 +7809,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7774,6 +7818,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7856,6 +7901,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8042,6 +8088,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8356,6 +8403,7 @@ self: super: { "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"; @@ -8527,6 +8575,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8692,6 +8741,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8734,6 +8784,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8790,6 +8841,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 3a2e3d30d4e..79c0bd0d594 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "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"; @@ -1115,6 +1117,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1298,6 +1301,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1932,6 +1936,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2006,6 +2011,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2054,6 +2060,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2078,6 +2085,7 @@ self: super: { "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"; @@ -2246,6 +2254,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2374,6 +2383,7 @@ self: super: { "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"; @@ -2513,6 +2523,7 @@ self: super: { "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"; @@ -2596,17 +2607,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3156,6 +3172,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3188,6 +3205,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4198,6 +4216,7 @@ self: super: { "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_4_2_3"; @@ -4554,6 +4573,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4609,6 +4629,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4662,6 +4683,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4807,6 +4829,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4841,6 +4864,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5042,6 +5066,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5148,6 +5173,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5233,6 +5259,7 @@ self: super: { "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"; @@ -5494,6 +5521,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5586,6 +5614,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5646,6 +5675,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5669,6 +5699,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5767,6 +5799,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5788,6 +5821,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6056,6 +6090,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6150,6 +6185,7 @@ self: super: { "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"; @@ -6239,6 +6275,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6247,6 +6284,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2_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"; @@ -6282,6 +6320,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6445,6 +6484,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6460,6 +6500,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6487,6 +6528,7 @@ self: super: { "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"; @@ -6586,6 +6628,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_5_4"; "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"; @@ -6733,6 +6776,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7456,6 +7500,7 @@ self: super: { "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"; @@ -7735,6 +7780,7 @@ self: super: { "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"; @@ -7759,6 +7805,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7767,6 +7814,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7849,6 +7897,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8035,6 +8084,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8349,6 +8399,7 @@ self: super: { "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"; @@ -8520,6 +8571,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8684,6 +8736,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8726,6 +8779,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8782,6 +8836,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 49d22021c49..25a1f7d6102 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "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"; @@ -1115,6 +1117,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1298,6 +1301,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1932,6 +1936,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2006,6 +2011,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2054,6 +2060,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2078,6 +2085,7 @@ self: super: { "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"; @@ -2246,6 +2254,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2374,6 +2383,7 @@ self: super: { "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"; @@ -2513,6 +2523,7 @@ self: super: { "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"; @@ -2596,17 +2607,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3156,6 +3172,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3188,6 +3205,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4197,6 +4215,7 @@ self: super: { "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_4_2_3"; @@ -4552,6 +4571,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4607,6 +4627,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4659,6 +4680,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4804,6 +4826,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4838,6 +4861,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5039,6 +5063,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5145,6 +5170,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5230,6 +5256,7 @@ self: super: { "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"; @@ -5491,6 +5518,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5583,6 +5611,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5643,6 +5672,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5666,6 +5696,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5764,6 +5796,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5785,6 +5818,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6053,6 +6087,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6147,6 +6182,7 @@ self: super: { "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"; @@ -6236,6 +6272,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6244,6 +6281,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2_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"; @@ -6279,6 +6317,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6442,6 +6481,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6457,6 +6497,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6484,6 +6525,7 @@ self: super: { "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"; @@ -6583,6 +6625,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6730,6 +6773,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7452,6 +7496,7 @@ self: super: { "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"; @@ -7731,6 +7776,7 @@ self: super: { "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"; @@ -7755,6 +7801,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7763,6 +7810,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7845,6 +7893,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8031,6 +8080,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8345,6 +8395,7 @@ self: super: { "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"; @@ -8516,6 +8567,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8680,6 +8732,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8722,6 +8775,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8778,6 +8832,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index c296a9132a1..b060ad42b00 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -793,6 +794,7 @@ self: super: { "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"; @@ -1114,6 +1116,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1297,6 +1300,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1931,6 +1935,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2005,6 +2010,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2053,6 +2059,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2077,6 +2084,7 @@ self: super: { "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"; @@ -2245,6 +2253,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2373,6 +2382,7 @@ self: super: { "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"; @@ -2512,6 +2522,7 @@ self: super: { "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"; @@ -2595,17 +2606,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3154,6 +3170,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3186,6 +3203,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4194,6 +4212,7 @@ self: super: { "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_4_2_3"; @@ -4549,6 +4568,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4604,6 +4624,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4656,6 +4677,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4801,6 +4823,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4835,6 +4858,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5036,6 +5060,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5141,6 +5166,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5226,6 +5252,7 @@ self: super: { "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"; @@ -5487,6 +5514,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5578,6 +5606,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5638,6 +5667,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5661,6 +5691,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5759,6 +5791,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5780,6 +5813,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6048,6 +6082,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6142,6 +6177,7 @@ self: super: { "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"; @@ -6231,6 +6267,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6239,6 +6276,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2_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"; @@ -6274,6 +6312,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6436,6 +6475,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6451,6 +6491,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6478,6 +6519,7 @@ self: super: { "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"; @@ -6577,6 +6619,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6724,6 +6767,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7445,6 +7489,7 @@ self: super: { "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"; @@ -7724,6 +7769,7 @@ self: super: { "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"; @@ -7748,6 +7794,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7756,6 +7803,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7836,6 +7884,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8021,6 +8070,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8335,6 +8385,7 @@ self: super: { "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"; @@ -8506,6 +8557,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8670,6 +8722,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8712,6 +8765,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8768,6 +8822,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 501a11cc54c..9d30a0fc183 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -793,6 +794,7 @@ self: super: { "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"; @@ -1114,6 +1116,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1297,6 +1300,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1930,6 +1934,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2004,6 +2009,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2052,6 +2058,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2076,6 +2083,7 @@ self: super: { "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"; @@ -2244,6 +2252,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2372,6 +2381,7 @@ self: super: { "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"; @@ -2511,6 +2521,7 @@ self: super: { "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"; @@ -2594,17 +2605,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3153,6 +3169,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3185,6 +3202,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4192,6 +4210,7 @@ self: super: { "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_4_2_3"; @@ -4547,6 +4566,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4602,6 +4622,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4654,6 +4675,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4798,6 +4820,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4832,6 +4855,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5033,6 +5057,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5138,6 +5163,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5223,6 +5249,7 @@ self: super: { "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"; @@ -5483,6 +5510,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5574,6 +5602,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5634,6 +5663,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5656,6 +5686,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5754,6 +5786,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5775,6 +5808,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6043,6 +6077,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6137,6 +6172,7 @@ self: super: { "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"; @@ -6226,6 +6262,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6234,6 +6271,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_3"; + "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"; @@ -6269,6 +6307,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6431,6 +6470,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6446,6 +6486,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6473,6 +6514,7 @@ self: super: { "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"; @@ -6572,6 +6614,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6719,6 +6762,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7440,6 +7484,7 @@ self: super: { "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"; @@ -7719,6 +7764,7 @@ self: super: { "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"; @@ -7743,6 +7789,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7751,6 +7798,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7831,6 +7879,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8016,6 +8065,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8330,6 +8380,7 @@ self: super: { "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"; @@ -8501,6 +8552,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8665,6 +8717,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8707,6 +8760,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8763,6 +8817,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 8eed33d20a2..ef8133df5c8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -793,6 +794,7 @@ self: super: { "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"; @@ -1114,6 +1116,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1297,6 +1300,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1929,6 +1933,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2003,6 +2008,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2051,6 +2057,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2075,6 +2082,7 @@ self: super: { "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"; @@ -2243,6 +2251,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2371,6 +2380,7 @@ self: super: { "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"; @@ -2510,6 +2520,7 @@ self: super: { "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"; @@ -2593,17 +2604,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3152,6 +3168,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3184,6 +3201,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4187,6 +4205,7 @@ self: super: { "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_4_2_3"; @@ -4542,6 +4561,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4596,6 +4616,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4648,6 +4669,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4792,6 +4814,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4826,6 +4849,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5027,6 +5051,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5132,6 +5157,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5217,6 +5243,7 @@ self: super: { "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"; @@ -5477,6 +5504,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5568,6 +5596,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5628,6 +5657,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5650,6 +5680,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5748,6 +5780,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5769,6 +5802,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6037,6 +6071,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6130,6 +6165,7 @@ self: super: { "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"; @@ -6219,6 +6255,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6227,6 +6264,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_3"; + "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"; @@ -6262,6 +6300,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6424,6 +6463,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6439,6 +6479,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6466,6 +6507,7 @@ self: super: { "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"; @@ -6565,6 +6607,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6712,6 +6755,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7212,6 +7256,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7432,6 +7477,7 @@ self: super: { "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"; @@ -7711,6 +7757,7 @@ self: super: { "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"; @@ -7735,6 +7782,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7743,6 +7791,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7823,6 +7872,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8008,6 +8058,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8322,6 +8373,7 @@ self: super: { "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"; @@ -8493,6 +8545,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8657,6 +8710,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8699,6 +8753,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8755,6 +8810,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index a41538e4805..16e30cfc425 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -793,6 +794,7 @@ self: super: { "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"; @@ -1114,6 +1116,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1297,6 +1300,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1439,6 +1443,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1925,6 +1930,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -1999,6 +2005,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2047,6 +2054,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2071,6 +2079,7 @@ self: super: { "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"; @@ -2238,6 +2247,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2366,6 +2376,7 @@ self: super: { "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"; @@ -2505,6 +2516,7 @@ self: super: { "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"; @@ -2588,17 +2600,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3147,6 +3164,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3179,6 +3197,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4182,6 +4201,7 @@ self: super: { "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_4_2_3"; @@ -4535,6 +4555,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4589,6 +4610,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4641,6 +4663,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4785,6 +4808,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4819,6 +4843,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5019,6 +5044,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5124,6 +5150,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5209,6 +5236,7 @@ self: super: { "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"; @@ -5468,6 +5496,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5559,6 +5588,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5619,6 +5649,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5641,6 +5672,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5739,6 +5772,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5760,6 +5794,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6027,6 +6062,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6120,6 +6156,7 @@ self: super: { "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"; @@ -6209,6 +6246,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6217,6 +6255,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -6252,6 +6291,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6414,6 +6454,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6429,6 +6470,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6456,6 +6498,7 @@ self: super: { "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"; @@ -6555,6 +6598,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6702,6 +6746,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7202,6 +7247,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7421,6 +7467,7 @@ self: super: { "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"; @@ -7700,6 +7747,7 @@ self: super: { "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"; @@ -7724,6 +7772,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7732,6 +7781,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7812,6 +7862,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7997,6 +8048,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8311,6 +8363,7 @@ self: super: { "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"; @@ -8482,6 +8535,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8645,6 +8699,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8687,6 +8742,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8743,6 +8799,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 53be954857c..39f1eaddce5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "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"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1944,6 +1947,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_3_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2019,6 +2023,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2067,6 +2072,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2091,6 +2097,7 @@ self: super: { "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"; @@ -2259,6 +2266,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2389,6 +2397,7 @@ self: super: { "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"; @@ -2528,6 +2537,7 @@ self: super: { "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"; @@ -3214,6 +3224,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4230,6 +4241,7 @@ self: super: { "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_4_2_3"; @@ -4588,6 +4600,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4644,6 +4657,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4697,6 +4711,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4844,6 +4859,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4878,6 +4894,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5080,6 +5097,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5187,6 +5205,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5274,6 +5293,7 @@ self: super: { "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"; @@ -5535,6 +5555,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5628,6 +5649,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5688,6 +5710,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5711,6 +5734,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5810,6 +5835,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5831,6 +5857,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6102,6 +6129,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6196,6 +6224,7 @@ self: super: { "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"; @@ -6288,6 +6317,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6296,6 +6326,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "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"; @@ -6332,6 +6363,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6496,6 +6528,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6512,6 +6545,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_36_0_2"; @@ -6541,6 +6575,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6641,6 +6676,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_3_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"; @@ -6788,6 +6824,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7513,6 +7550,7 @@ self: super: { "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"; @@ -7794,6 +7832,7 @@ self: super: { "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"; @@ -7818,6 +7857,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7826,6 +7866,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7913,6 +7954,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8100,6 +8142,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8417,6 +8460,7 @@ self: super: { "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"; @@ -8761,6 +8805,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8803,6 +8848,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 58bef4e1657..7fcfebf2230 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -469,6 +469,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -792,6 +793,7 @@ self: super: { "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"; @@ -1113,6 +1115,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1296,6 +1299,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1438,6 +1442,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1924,6 +1929,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -1998,6 +2004,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2046,6 +2053,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2070,6 +2078,7 @@ self: super: { "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"; @@ -2237,6 +2246,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2365,6 +2375,7 @@ self: super: { "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"; @@ -2504,6 +2515,7 @@ self: super: { "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"; @@ -2587,17 +2599,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3146,6 +3163,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3178,6 +3196,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4181,6 +4200,7 @@ self: super: { "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_4_2_3"; @@ -4534,6 +4554,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4588,6 +4609,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4640,6 +4662,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4784,6 +4807,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4818,6 +4842,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5018,6 +5043,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5123,6 +5149,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5208,6 +5235,7 @@ self: super: { "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"; @@ -5467,6 +5495,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5558,6 +5587,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5618,6 +5648,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5640,6 +5671,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5738,6 +5771,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5759,6 +5793,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6026,6 +6061,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6119,6 +6155,7 @@ self: super: { "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"; @@ -6208,6 +6245,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6216,6 +6254,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -6251,6 +6290,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6413,6 +6453,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6428,6 +6469,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6455,6 +6497,7 @@ self: super: { "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"; @@ -6554,6 +6597,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6701,6 +6745,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7200,6 +7245,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7419,6 +7465,7 @@ self: super: { "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"; @@ -7697,6 +7744,7 @@ self: super: { "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"; @@ -7721,6 +7769,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_6"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7729,6 +7778,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7809,6 +7859,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7994,6 +8045,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8308,6 +8360,7 @@ self: super: { "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"; @@ -8479,6 +8532,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8641,6 +8695,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8683,6 +8738,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8739,6 +8795,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index ac0f58b31bd..e8f29e893e5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -469,6 +469,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -792,6 +793,7 @@ self: super: { "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"; @@ -1113,6 +1115,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1296,6 +1299,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1438,6 +1442,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1924,6 +1929,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -1998,6 +2004,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2046,6 +2053,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2070,6 +2078,7 @@ self: super: { "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"; @@ -2236,6 +2245,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2364,6 +2374,7 @@ self: super: { "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"; @@ -2503,6 +2514,7 @@ self: super: { "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"; @@ -2586,17 +2598,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3143,6 +3160,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3175,6 +3193,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4178,6 +4197,7 @@ self: super: { "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_4_2_3"; @@ -4531,6 +4551,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4585,6 +4606,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4637,6 +4659,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4779,6 +4802,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4813,6 +4837,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5013,6 +5038,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5118,6 +5144,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5203,6 +5230,7 @@ self: super: { "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"; @@ -5462,6 +5490,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5553,6 +5582,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5613,6 +5643,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5635,6 +5666,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5732,6 +5765,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5753,6 +5787,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6020,6 +6055,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6112,6 +6148,7 @@ self: super: { "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"; @@ -6201,6 +6238,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6209,6 +6247,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -6244,6 +6283,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6405,6 +6445,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6420,6 +6461,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6447,6 +6489,7 @@ self: super: { "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"; @@ -6546,6 +6589,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6693,6 +6737,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7187,6 +7232,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7405,6 +7451,7 @@ self: super: { "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"; @@ -7683,6 +7730,7 @@ self: super: { "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"; @@ -7707,6 +7755,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_6"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7715,6 +7764,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7795,6 +7845,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7980,6 +8031,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8294,6 +8346,7 @@ self: super: { "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"; @@ -8376,6 +8429,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -8461,6 +8515,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8623,6 +8678,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8665,6 +8721,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8721,6 +8778,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 438cbbc5a19..25e927b694c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -469,6 +469,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -792,6 +793,7 @@ self: super: { "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"; @@ -1113,6 +1115,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1296,6 +1299,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1438,6 +1442,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1924,6 +1929,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -1998,6 +2004,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2046,6 +2053,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2070,6 +2078,7 @@ self: super: { "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"; @@ -2236,6 +2245,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2364,6 +2374,7 @@ self: super: { "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"; @@ -2503,6 +2514,7 @@ self: super: { "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"; @@ -2586,17 +2598,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2975,6 +2992,7 @@ self: super: { "extensible-data" = dontDistribute super."extensible-data"; "extensible-effects" = dontDistribute super."extensible-effects"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extract-dependencies" = dontDistribute super."extract-dependencies"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; @@ -3141,6 +3159,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3173,6 +3192,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4175,6 +4195,7 @@ self: super: { "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_4_2_3"; @@ -4528,6 +4549,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4582,6 +4604,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4634,6 +4657,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4774,6 +4798,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4808,6 +4833,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5007,6 +5033,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5112,6 +5139,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5197,6 +5225,7 @@ self: super: { "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"; @@ -5456,6 +5485,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5547,6 +5577,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5607,6 +5638,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5629,6 +5661,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5726,6 +5760,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5747,6 +5782,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6014,6 +6050,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6106,6 +6143,7 @@ self: super: { "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"; @@ -6195,6 +6233,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6203,6 +6242,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -6238,6 +6278,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6399,6 +6440,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6414,6 +6456,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6441,6 +6484,7 @@ self: super: { "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"; @@ -6540,6 +6584,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6687,6 +6732,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7181,6 +7227,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7399,6 +7446,7 @@ self: super: { "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"; @@ -7677,6 +7725,7 @@ self: super: { "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"; @@ -7701,6 +7750,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_7"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7709,6 +7759,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7789,6 +7840,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7974,6 +8026,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8288,6 +8341,7 @@ self: super: { "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"; @@ -8370,6 +8424,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -8455,6 +8510,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8617,6 +8673,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8659,6 +8716,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8715,6 +8773,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 0b13ec7c6b0..85f58d4dc75 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "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"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1944,6 +1947,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_3_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2019,6 +2023,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2067,6 +2072,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2091,6 +2097,7 @@ self: super: { "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"; @@ -2259,6 +2266,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2389,6 +2397,7 @@ self: super: { "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"; @@ -2528,6 +2537,7 @@ self: super: { "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"; @@ -3213,6 +3223,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4229,6 +4240,7 @@ self: super: { "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_4_2_3"; @@ -4586,6 +4598,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4642,6 +4655,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4695,6 +4709,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4842,6 +4857,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4876,6 +4892,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5078,6 +5095,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5185,6 +5203,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5272,6 +5291,7 @@ self: super: { "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"; @@ -5533,6 +5553,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5626,6 +5647,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5686,6 +5708,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5709,6 +5732,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5808,6 +5833,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5829,6 +5855,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6100,6 +6127,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6194,6 +6222,7 @@ self: super: { "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"; @@ -6286,6 +6315,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6294,6 +6324,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "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"; @@ -6330,6 +6361,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6494,6 +6526,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6510,6 +6543,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_36_0_2"; @@ -6539,6 +6573,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6639,6 +6674,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "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"; @@ -6786,6 +6822,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7509,6 +7546,7 @@ self: super: { "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"; @@ -7790,6 +7828,7 @@ self: super: { "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"; @@ -7814,6 +7853,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7822,6 +7862,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7909,6 +7950,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8096,6 +8138,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8412,6 +8455,7 @@ self: super: { "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"; @@ -8756,6 +8800,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8798,6 +8843,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 70650c9956a..7ac520afb60 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "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"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1944,6 +1947,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_3_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2019,6 +2023,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2067,6 +2072,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2091,6 +2097,7 @@ self: super: { "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"; @@ -2259,6 +2266,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2389,6 +2397,7 @@ self: super: { "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"; @@ -2528,6 +2537,7 @@ self: super: { "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"; @@ -3213,6 +3223,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4229,6 +4240,7 @@ self: super: { "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_4_2_3"; @@ -4586,6 +4598,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4642,6 +4655,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4695,6 +4709,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4842,6 +4857,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4876,6 +4892,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5078,6 +5095,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5185,6 +5203,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5272,6 +5291,7 @@ self: super: { "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"; @@ -5533,6 +5553,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5626,6 +5647,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5686,6 +5708,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5709,6 +5732,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5808,6 +5833,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5829,6 +5855,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6100,6 +6127,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6194,6 +6222,7 @@ self: super: { "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"; @@ -6286,6 +6315,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6294,6 +6324,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "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"; @@ -6330,6 +6361,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6494,6 +6526,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6510,6 +6543,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_36_0_2"; @@ -6539,6 +6573,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6639,6 +6674,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "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"; @@ -6786,6 +6822,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7509,6 +7546,7 @@ self: super: { "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"; @@ -7789,6 +7827,7 @@ self: super: { "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"; @@ -7813,6 +7852,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7821,6 +7861,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7908,6 +7949,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8095,6 +8137,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8411,6 +8454,7 @@ self: super: { "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"; @@ -8754,6 +8798,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8796,6 +8841,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 4f178b4b1cf..fc4a7679ff4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "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"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1943,6 +1946,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_3_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2018,6 +2022,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2066,6 +2071,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2090,6 +2096,7 @@ self: super: { "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"; @@ -2258,6 +2265,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2388,6 +2396,7 @@ self: super: { "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"; @@ -2527,6 +2536,7 @@ self: super: { "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"; @@ -3211,6 +3221,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4226,6 +4237,7 @@ self: super: { "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_4_2_3"; @@ -4582,6 +4594,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4638,6 +4651,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4691,6 +4705,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4836,6 +4851,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4870,6 +4886,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5072,6 +5089,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5179,6 +5197,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5266,6 +5285,7 @@ self: super: { "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"; @@ -5527,6 +5547,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5620,6 +5641,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5680,6 +5702,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5703,6 +5726,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5801,6 +5826,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5822,6 +5848,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6093,6 +6120,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6187,6 +6215,7 @@ self: super: { "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"; @@ -6278,6 +6307,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6286,6 +6316,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "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"; @@ -6322,6 +6353,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6486,6 +6518,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6502,6 +6535,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6530,6 +6564,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6630,6 +6665,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "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"; @@ -6777,6 +6813,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7500,6 +7537,7 @@ self: super: { "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"; @@ -7780,6 +7818,7 @@ self: super: { "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"; @@ -7804,6 +7843,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7812,6 +7852,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7896,6 +7937,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8083,6 +8125,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8399,6 +8442,7 @@ self: super: { "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"; @@ -8741,6 +8785,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8783,6 +8828,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8839,6 +8885,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index cf8d12a6493..791a8a909c5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "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"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1943,6 +1946,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2018,6 +2022,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2066,6 +2071,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2090,6 +2096,7 @@ self: super: { "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"; @@ -2258,6 +2265,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2388,6 +2396,7 @@ self: super: { "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"; @@ -2527,6 +2536,7 @@ self: super: { "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"; @@ -3178,6 +3188,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3210,6 +3221,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4223,6 +4235,7 @@ self: super: { "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_4_2_3"; @@ -4579,6 +4592,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4635,6 +4649,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4688,6 +4703,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4833,6 +4849,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4867,6 +4884,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5068,6 +5086,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5174,6 +5193,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5260,6 +5280,7 @@ self: super: { "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"; @@ -5521,6 +5542,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5614,6 +5636,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5674,6 +5697,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5697,6 +5721,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5795,6 +5821,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5816,6 +5843,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6087,6 +6115,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6181,6 +6210,7 @@ self: super: { "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"; @@ -6272,6 +6302,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6280,6 +6311,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "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"; @@ -6316,6 +6348,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6480,6 +6513,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6496,6 +6530,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6524,6 +6559,7 @@ self: super: { "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" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6624,6 +6660,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "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"; @@ -6771,6 +6808,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7494,6 +7532,7 @@ self: super: { "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"; @@ -7774,6 +7813,7 @@ self: super: { "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"; @@ -7798,6 +7838,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7806,6 +7847,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7890,6 +7932,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8077,6 +8120,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8392,6 +8436,7 @@ self: super: { "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"; @@ -8733,6 +8778,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8775,6 +8821,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8831,6 +8878,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 3cf88fb2e61..63a27278bc0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "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"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1941,6 +1944,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2016,6 +2020,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2064,6 +2069,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2088,6 +2094,7 @@ self: super: { "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"; @@ -2256,6 +2263,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2385,6 +2393,7 @@ self: super: { "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"; @@ -2524,6 +2533,7 @@ self: super: { "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"; @@ -3175,6 +3185,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3207,6 +3218,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4219,6 +4231,7 @@ self: super: { "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_4_2_3"; @@ -4575,6 +4588,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4631,6 +4645,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4684,6 +4699,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4829,6 +4845,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4863,6 +4880,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5064,6 +5082,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5170,6 +5189,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5256,6 +5276,7 @@ self: super: { "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"; @@ -5517,6 +5538,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5610,6 +5632,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5670,6 +5693,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5693,6 +5717,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5791,6 +5817,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5812,6 +5839,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6083,6 +6111,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6177,6 +6206,7 @@ self: super: { "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"; @@ -6268,6 +6298,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6276,6 +6307,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "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"; @@ -6312,6 +6344,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6475,6 +6508,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6491,6 +6525,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6519,6 +6554,7 @@ self: super: { "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"; @@ -6618,6 +6654,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "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"; @@ -6765,6 +6802,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7488,6 +7526,7 @@ self: super: { "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"; @@ -7767,6 +7806,7 @@ self: super: { "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"; @@ -7791,6 +7831,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7799,6 +7840,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7883,6 +7925,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8070,6 +8113,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8385,6 +8429,7 @@ self: super: { "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"; @@ -8724,6 +8769,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8766,6 +8812,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8822,6 +8869,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 104697b1a4b..b04324a3e14 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "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"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1939,6 +1942,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2014,6 +2018,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2062,6 +2067,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2086,6 +2092,7 @@ self: super: { "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"; @@ -2254,6 +2261,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2383,6 +2391,7 @@ self: super: { "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"; @@ -2522,6 +2531,7 @@ self: super: { "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"; @@ -2605,6 +2615,7 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_3"; @@ -2612,12 +2623,14 @@ self: super: { "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3169,6 +3182,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3201,6 +3215,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4213,6 +4228,7 @@ self: super: { "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_4_2_3"; @@ -4569,6 +4585,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4625,6 +4642,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4678,6 +4696,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4823,6 +4842,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4857,6 +4877,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5058,6 +5079,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5164,6 +5186,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5250,6 +5273,7 @@ self: super: { "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"; @@ -5511,6 +5535,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5603,6 +5628,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5663,6 +5689,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_14"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5686,6 +5713,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5784,6 +5813,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5805,6 +5835,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6076,6 +6107,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6170,6 +6202,7 @@ self: super: { "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"; @@ -6261,6 +6294,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6269,6 +6303,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_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"; @@ -6305,6 +6340,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6468,6 +6504,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6483,6 +6520,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6511,6 +6549,7 @@ self: super: { "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"; @@ -6610,6 +6649,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "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"; @@ -6757,6 +6797,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7480,6 +7521,7 @@ self: super: { "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"; @@ -7759,6 +7801,7 @@ self: super: { "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"; @@ -7783,6 +7826,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7791,6 +7835,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7874,6 +7919,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8061,6 +8107,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8376,6 +8423,7 @@ self: super: { "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"; @@ -8715,6 +8763,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8757,6 +8806,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8813,6 +8863,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index be7b35aabf7..3a41fc07bba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "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"; @@ -1300,6 +1302,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1936,6 +1939,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2011,6 +2015,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2059,6 +2064,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2083,6 +2089,7 @@ self: super: { "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"; @@ -2251,6 +2258,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2380,6 +2388,7 @@ self: super: { "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"; @@ -2519,6 +2528,7 @@ self: super: { "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"; @@ -2602,6 +2612,7 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_3"; @@ -2609,12 +2620,14 @@ self: super: { "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3165,6 +3178,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3197,6 +3211,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4209,6 +4224,7 @@ self: super: { "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_4_2_3"; @@ -4565,6 +4581,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4621,6 +4638,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4674,6 +4692,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4819,6 +4838,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4853,6 +4873,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5054,6 +5075,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5160,6 +5182,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5246,6 +5269,7 @@ self: super: { "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"; @@ -5507,6 +5531,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5599,6 +5624,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5659,6 +5685,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "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_14"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5682,6 +5709,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5780,6 +5809,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5801,6 +5831,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6071,6 +6102,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6165,6 +6197,7 @@ self: super: { "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"; @@ -6256,6 +6289,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6264,6 +6298,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_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"; @@ -6300,6 +6335,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6463,6 +6499,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6478,6 +6515,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6506,6 +6544,7 @@ self: super: { "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"; @@ -6605,6 +6644,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "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"; @@ -6752,6 +6792,7 @@ self: super: { "readline" = dontDistribute super."readline"; "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"; @@ -7475,6 +7516,7 @@ self: super: { "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"; @@ -7754,6 +7796,7 @@ self: super: { "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"; @@ -7778,6 +7821,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7786,6 +7830,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7869,6 +7914,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8056,6 +8102,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8371,6 +8418,7 @@ self: super: { "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"; @@ -8710,6 +8758,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8752,6 +8801,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_7"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8808,6 +8858,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 5613b9d9119..f242179e73a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -460,6 +460,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -497,6 +498,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -776,6 +778,7 @@ self: super: { "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"; @@ -1090,6 +1093,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1272,6 +1276,7 @@ self: super: { "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"; @@ -1366,6 +1371,7 @@ self: super: { "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; "async" = doDistribute super."async_2_0_2"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1392,6 +1398,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1412,6 +1419,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1882,6 +1890,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -1927,6 +1936,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1954,6 +1964,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2024,6 +2035,7 @@ self: super: { "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"; @@ -2124,6 +2136,7 @@ self: super: { "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2185,6 +2198,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2287,6 +2301,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2309,6 +2324,7 @@ self: super: { "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"; @@ -2449,6 +2465,7 @@ self: super: { "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"; @@ -2485,6 +2502,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2527,16 +2545,21 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_8"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3071,6 +3094,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3102,6 +3126,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -3909,6 +3934,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -4078,6 +4104,7 @@ self: super: { "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_4_2_3"; @@ -4415,6 +4442,7 @@ self: super: { "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"; @@ -4465,6 +4493,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4496,6 +4525,7 @@ self: super: { "human-readable-duration" = doDistribute super."human-readable-duration_0_1_0_0"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4513,6 +4543,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4650,6 +4681,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c" = doDistribute super."inline-c_0_5_5_1"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4684,6 +4716,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4873,6 +4906,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -4984,6 +5018,7 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_6_2_0"; "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"; @@ -5064,6 +5099,7 @@ self: super: { "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"; @@ -5316,6 +5352,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5404,6 +5441,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5462,6 +5500,7 @@ self: super: { "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_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5481,8 +5520,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5578,6 +5620,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5599,6 +5642,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5853,6 +5897,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5944,6 +5989,7 @@ self: super: { "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"; @@ -6027,6 +6073,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6035,6 +6082,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -6068,6 +6116,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6218,9 +6267,11 @@ self: super: { "postgresql-orm" = dontDistribute super."postgresql-orm"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = doDistribute super."postgresql-schema_0_1_9"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6236,6 +6287,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6262,6 +6314,7 @@ self: super: { "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"; @@ -6359,6 +6412,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6501,6 +6555,7 @@ self: super: { "readable" = dontDistribute super."readable"; "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"; @@ -6644,6 +6699,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6975,6 +7033,7 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelltestrunner" = dontDistribute super."shelltestrunner"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7185,6 +7244,7 @@ self: super: { "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"; @@ -7266,6 +7326,7 @@ self: super: { "state" = dontDistribute super."state"; "state-plus" = dontDistribute super."state-plus"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statestack" = doDistribute super."statestack_0_2_0_4"; @@ -7455,6 +7516,7 @@ self: super: { "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"; @@ -7479,6 +7541,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_6"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7487,10 +7550,13 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7560,6 +7626,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7739,6 +7806,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7871,6 +7939,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -8035,6 +8105,7 @@ self: super: { "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"; @@ -8115,6 +8186,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -8186,6 +8258,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_0_4"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8342,6 +8415,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8382,6 +8456,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8436,6 +8511,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_1"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index dad52f109ee..c9e4182196f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -460,6 +460,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -497,6 +498,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -776,6 +778,7 @@ self: super: { "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"; @@ -1090,6 +1093,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1270,6 +1274,7 @@ self: super: { "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"; @@ -1364,6 +1369,7 @@ self: super: { "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; "async" = doDistribute super."async_2_0_2"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1390,6 +1396,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1410,6 +1417,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1880,6 +1888,7 @@ self: super: { "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-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -1925,6 +1934,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1952,6 +1962,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2022,6 +2033,7 @@ self: super: { "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"; @@ -2122,6 +2134,7 @@ self: super: { "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2183,6 +2196,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2285,6 +2299,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2307,6 +2322,7 @@ self: super: { "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"; @@ -2447,6 +2463,7 @@ self: super: { "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"; @@ -2483,6 +2500,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2525,16 +2543,21 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_8"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2903,6 +2926,7 @@ self: super: { "extensible-data" = dontDistribute super."extensible-data"; "extensible-effects" = dontDistribute super."extensible-effects"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3065,6 +3089,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3096,6 +3121,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -3903,6 +3929,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -4071,6 +4098,7 @@ self: super: { "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_4_2_3"; @@ -4408,6 +4436,7 @@ self: super: { "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"; @@ -4458,6 +4487,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4489,6 +4519,7 @@ self: super: { "human-readable-duration" = doDistribute super."human-readable-duration_0_1_0_0"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4506,6 +4537,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4639,6 +4671,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c" = doDistribute super."inline-c_0_5_5_1"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4673,6 +4706,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4861,6 +4895,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -4972,9 +5007,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_6_2_0"; "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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -5049,6 +5086,7 @@ self: super: { "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"; @@ -5301,6 +5339,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5389,6 +5428,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5447,6 +5487,7 @@ self: super: { "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_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5466,8 +5507,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5563,6 +5607,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5584,6 +5629,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5838,6 +5884,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5929,6 +5976,7 @@ self: super: { "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"; @@ -6012,6 +6060,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6020,6 +6069,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -6053,6 +6103,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6202,9 +6253,11 @@ self: super: { "postgresql-orm" = dontDistribute super."postgresql-orm"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = doDistribute super."postgresql-schema_0_1_9"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6220,6 +6273,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6246,6 +6300,7 @@ self: super: { "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"; @@ -6343,6 +6398,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6485,6 +6541,7 @@ self: super: { "readable" = dontDistribute super."readable"; "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"; @@ -6628,6 +6685,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6959,6 +7019,7 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelltestrunner" = dontDistribute super."shelltestrunner"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7169,6 +7230,7 @@ self: super: { "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"; @@ -7250,6 +7312,7 @@ self: super: { "state" = dontDistribute super."state"; "state-plus" = dontDistribute super."state-plus"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statestack" = doDistribute super."statestack_0_2_0_4"; @@ -7439,6 +7502,7 @@ self: super: { "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"; @@ -7463,6 +7527,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_7"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7471,10 +7536,13 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7544,6 +7612,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7723,6 +7792,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7855,6 +7925,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -8019,6 +8091,7 @@ self: super: { "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"; @@ -8099,6 +8172,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -8170,6 +8244,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_0_4"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8326,6 +8401,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8366,6 +8442,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8420,6 +8497,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_1"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 53c71284163..a1ebe60a9ec 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -459,6 +459,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -496,6 +497,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -775,6 +777,7 @@ self: super: { "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"; @@ -1089,6 +1092,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1269,6 +1273,7 @@ self: super: { "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"; @@ -1363,6 +1368,7 @@ self: super: { "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; "async" = doDistribute super."async_2_0_2"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1389,6 +1395,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1409,6 +1416,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1876,6 +1884,7 @@ self: super: { "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"; @@ -1920,6 +1929,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1947,6 +1957,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2017,6 +2028,7 @@ self: super: { "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"; @@ -2116,6 +2128,7 @@ self: super: { "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2177,6 +2190,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2279,6 +2293,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2301,6 +2316,7 @@ self: super: { "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"; @@ -2440,6 +2456,7 @@ self: super: { "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"; @@ -2476,6 +2493,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2518,16 +2536,21 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2725,6 +2748,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2893,6 +2917,7 @@ self: super: { "extensible-data" = dontDistribute super."extensible-data"; "extensible-effects" = dontDistribute super."extensible-effects"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3054,6 +3079,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3085,6 +3111,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3213,6 +3240,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3885,6 +3913,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -4052,6 +4081,7 @@ self: super: { "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_4_2_3"; @@ -4387,6 +4417,7 @@ self: super: { "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"; @@ -4437,6 +4468,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4468,6 +4500,7 @@ self: super: { "human-readable-duration" = doDistribute super."human-readable-duration_0_1_1_0"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4485,6 +4518,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4616,6 +4650,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4649,6 +4684,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4836,6 +4872,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -4947,9 +4984,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_6_2_0"; "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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -5024,6 +5063,7 @@ self: super: { "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"; @@ -5276,6 +5316,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5364,6 +5405,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5422,6 +5464,7 @@ self: super: { "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_17"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5440,8 +5483,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5535,6 +5581,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5556,6 +5603,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5810,6 +5858,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5901,6 +5950,7 @@ self: super: { "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"; @@ -5984,6 +6034,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5992,6 +6043,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -6025,6 +6077,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6172,9 +6225,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6190,6 +6245,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6215,6 +6271,7 @@ self: super: { "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"; @@ -6312,6 +6369,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6453,6 +6511,7 @@ self: super: { "readable" = dontDistribute super."readable"; "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"; @@ -6595,6 +6654,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6923,6 +6985,7 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelltestrunner" = dontDistribute super."shelltestrunner"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7129,6 +7192,7 @@ self: super: { "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"; @@ -7208,6 +7272,7 @@ self: super: { "state" = dontDistribute super."state"; "state-plus" = dontDistribute super."state-plus"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statestack" = doDistribute super."statestack_0_2_0_4"; @@ -7397,6 +7462,7 @@ self: super: { "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"; @@ -7421,6 +7487,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7429,10 +7496,13 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7502,6 +7572,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7681,6 +7752,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7813,6 +7885,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7977,6 +8051,7 @@ self: super: { "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"; @@ -8057,6 +8132,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -8064,6 +8140,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -8126,6 +8203,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8282,6 +8360,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8322,6 +8401,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8376,6 +8456,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_1"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 17e11586d38..7c814e27ccf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -455,6 +455,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -490,6 +491,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -642,6 +644,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -765,6 +768,7 @@ self: super: { "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"; @@ -1078,6 +1082,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1257,6 +1262,7 @@ self: super: { "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"; @@ -1350,6 +1356,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1376,6 +1383,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1396,6 +1404,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1747,6 +1756,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1852,6 +1862,7 @@ self: super: { "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"; @@ -1895,6 +1906,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1922,6 +1934,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1992,6 +2005,7 @@ self: super: { "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"; @@ -2091,6 +2105,7 @@ self: super: { "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2149,6 +2164,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2249,6 +2265,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2271,6 +2288,7 @@ self: super: { "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"; @@ -2407,6 +2425,7 @@ self: super: { "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"; @@ -2443,6 +2462,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2485,14 +2505,20 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2686,6 +2712,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2851,6 +2878,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2922,6 +2950,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3010,6 +3039,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3041,6 +3071,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3167,6 +3198,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3831,6 +3863,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3998,6 +4031,7 @@ self: super: { "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_4_2_3"; @@ -4333,6 +4367,7 @@ self: super: { "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"; @@ -4383,6 +4418,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4412,6 +4448,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4429,6 +4466,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4560,6 +4598,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4592,6 +4631,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_3"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4778,6 +4818,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4888,9 +4929,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_0"; "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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4965,6 +5008,7 @@ self: super: { "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"; @@ -5215,6 +5259,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5301,6 +5346,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5359,6 +5405,7 @@ self: super: { "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_17"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5377,8 +5424,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5472,6 +5522,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5492,6 +5543,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5744,6 +5796,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5834,6 +5887,7 @@ self: super: { "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"; @@ -5916,6 +5970,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5924,6 +5979,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -5956,6 +6012,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6100,9 +6157,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6118,6 +6177,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6142,6 +6203,7 @@ self: super: { "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"; @@ -6236,6 +6298,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6375,6 +6438,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6516,6 +6580,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6839,6 +6906,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7044,6 +7112,7 @@ self: super: { "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"; @@ -7121,6 +7190,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7309,6 +7379,7 @@ self: super: { "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"; @@ -7333,6 +7404,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7340,10 +7412,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7409,6 +7485,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7462,6 +7539,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7585,6 +7663,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7715,6 +7794,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7877,6 +7958,7 @@ self: super: { "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"; @@ -7958,6 +8040,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7965,6 +8048,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -8027,6 +8111,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8182,6 +8267,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8222,6 +8308,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8276,6 +8363,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_1"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index bfb3b731998..ea20f7e7d14 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -454,6 +454,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -489,6 +490,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -641,6 +643,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -764,6 +767,7 @@ self: super: { "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"; @@ -1077,6 +1081,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1255,6 +1260,7 @@ self: super: { "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"; @@ -1348,6 +1354,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1374,6 +1381,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1394,6 +1402,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1743,6 +1752,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1848,6 +1858,7 @@ self: super: { "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"; @@ -1891,6 +1902,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1917,6 +1929,7 @@ self: super: { "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"; @@ -1987,6 +2000,7 @@ self: super: { "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"; @@ -2086,6 +2100,7 @@ self: super: { "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2144,6 +2159,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2244,6 +2260,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2266,6 +2283,7 @@ self: super: { "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"; @@ -2274,6 +2292,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2401,6 +2420,7 @@ self: super: { "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"; @@ -2437,6 +2457,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2479,14 +2500,20 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2680,6 +2707,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2845,6 +2873,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2916,6 +2945,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3004,6 +3034,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3035,6 +3066,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3161,6 +3193,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3825,6 +3858,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3992,6 +4026,7 @@ self: super: { "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_4_2_3"; @@ -4327,6 +4362,7 @@ self: super: { "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"; @@ -4377,6 +4413,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4406,6 +4443,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4423,6 +4461,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4553,6 +4592,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4585,6 +4625,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_3"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4771,6 +4812,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4881,9 +4923,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4958,6 +5002,7 @@ self: super: { "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"; @@ -5208,6 +5253,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5294,6 +5340,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5351,6 +5398,7 @@ self: super: { "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_17"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5369,8 +5417,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5464,6 +5515,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5484,6 +5536,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5736,6 +5789,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5826,6 +5880,7 @@ self: super: { "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"; @@ -5908,6 +5963,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5916,6 +5972,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -5948,6 +6005,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6092,9 +6150,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6110,6 +6170,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6134,6 +6196,7 @@ self: super: { "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"; @@ -6228,6 +6291,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6367,6 +6431,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6507,6 +6572,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6829,6 +6897,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7034,6 +7103,7 @@ self: super: { "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"; @@ -7111,6 +7181,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7299,6 +7370,7 @@ self: super: { "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"; @@ -7308,6 +7380,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7322,6 +7395,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7329,10 +7403,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7398,6 +7476,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7451,6 +7530,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7574,6 +7654,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7704,6 +7785,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7866,6 +7949,7 @@ self: super: { "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"; @@ -7946,6 +8030,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7953,6 +8038,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -8015,6 +8101,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8170,6 +8257,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8210,6 +8298,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8264,6 +8353,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index 4044a1f41a0..38acdb238cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -125,6 +125,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -449,6 +450,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -482,6 +484,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -633,6 +636,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -756,6 +760,7 @@ self: super: { "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"; @@ -1068,6 +1073,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1086,6 +1092,7 @@ self: super: { "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; @@ -1243,6 +1250,7 @@ self: super: { "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"; @@ -1335,6 +1343,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1360,6 +1369,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1380,6 +1390,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1421,6 +1432,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_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1724,6 +1736,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1825,6 +1838,7 @@ self: super: { "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"; @@ -1867,6 +1881,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1893,6 +1908,7 @@ self: super: { "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"; @@ -1957,6 +1973,7 @@ self: super: { "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"; @@ -2034,6 +2051,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; @@ -2053,6 +2071,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2087,6 +2106,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2110,6 +2130,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2208,6 +2229,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2230,6 +2252,7 @@ self: super: { "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"; @@ -2238,6 +2261,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2364,6 +2388,7 @@ self: super: { "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"; @@ -2400,6 +2425,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2439,12 +2465,20 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2633,6 +2667,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2660,6 +2695,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2791,6 +2827,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2858,6 +2895,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2946,6 +2984,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2977,6 +3016,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3100,6 +3140,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3547,6 +3588,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_2"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3754,6 +3796,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3916,6 +3959,7 @@ self: super: { "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_4_3"; @@ -3944,6 +3988,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4243,6 +4288,7 @@ self: super: { "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"; @@ -4293,6 +4339,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4321,6 +4368,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4338,6 +4386,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4465,6 +4514,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4496,6 +4546,7 @@ self: super: { "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-choice" = doDistribute super."io-choice_0_0_5"; @@ -4604,6 +4655,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4679,6 +4731,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4768,6 +4821,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_7"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4787,9 +4841,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4829,6 +4885,7 @@ self: super: { "lens-utils" = dontDistribute super."lens-utils"; "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_11_0"; "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; @@ -4863,6 +4920,7 @@ self: super: { "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"; @@ -5086,6 +5144,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5108,6 +5167,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5190,6 +5250,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5243,6 +5304,7 @@ self: super: { "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-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5259,8 +5321,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5352,6 +5417,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5372,6 +5438,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5618,6 +5685,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5704,6 +5772,7 @@ self: super: { "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"; @@ -5781,6 +5850,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5788,6 +5858,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5799,6 +5870,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5818,6 +5890,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5959,9 +6032,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -5977,6 +6052,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6001,6 +6078,7 @@ self: super: { "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"; @@ -6071,6 +6149,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6094,6 +6173,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6230,6 +6310,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6367,6 +6448,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6609,9 +6693,13 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6626,6 +6714,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6681,6 +6770,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6881,6 +6971,7 @@ self: super: { "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"; @@ -6958,6 +7049,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7019,6 +7111,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming" = doDistribute super."streaming_0_1_4_0"; "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_2"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7141,6 +7234,7 @@ self: super: { "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"; @@ -7150,6 +7244,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7163,6 +7258,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7170,10 +7266,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7238,6 +7338,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7290,6 +7391,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7412,6 +7514,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7539,6 +7642,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7699,6 +7804,7 @@ self: super: { "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"; @@ -7709,6 +7815,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7772,10 +7879,12 @@ 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"; "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-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7783,6 +7892,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -7838,6 +7948,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7992,6 +8103,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8032,6 +8144,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8085,6 +8198,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 5d5a3767d6f..ae02a8e85a5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -125,6 +125,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -448,6 +449,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -481,6 +483,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -632,6 +635,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -755,6 +759,7 @@ self: super: { "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"; @@ -1067,6 +1072,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1085,6 +1091,7 @@ self: super: { "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; @@ -1241,6 +1248,7 @@ self: super: { "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"; @@ -1333,6 +1341,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1358,6 +1367,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1378,6 +1388,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1416,6 +1427,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_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1718,6 +1730,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1819,6 +1832,7 @@ self: super: { "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"; @@ -1861,6 +1875,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1887,6 +1902,7 @@ self: super: { "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"; @@ -1951,6 +1967,7 @@ self: super: { "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"; @@ -2027,6 +2044,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; @@ -2045,6 +2063,7 @@ self: super: { "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2079,6 +2098,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2102,6 +2122,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2200,6 +2221,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2222,6 +2244,7 @@ self: super: { "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"; @@ -2230,6 +2253,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2356,6 +2380,7 @@ self: super: { "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"; @@ -2392,6 +2417,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2431,12 +2457,20 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2625,6 +2659,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2652,6 +2687,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2782,6 +2818,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2849,6 +2886,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2936,6 +2974,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2967,6 +3006,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3090,6 +3130,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3537,6 +3578,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_2"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3744,6 +3786,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3906,6 +3949,7 @@ self: super: { "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_4_3"; @@ -3934,6 +3978,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4229,6 +4274,7 @@ self: super: { "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"; @@ -4279,6 +4325,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4307,6 +4354,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4324,6 +4372,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4450,6 +4499,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4481,6 +4531,7 @@ self: super: { "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-choice" = doDistribute super."io-choice_0_0_5"; @@ -4589,6 +4640,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4664,6 +4716,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4753,6 +4806,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_7"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4772,9 +4826,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4814,6 +4870,7 @@ self: super: { "lens-utils" = dontDistribute super."lens-utils"; "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_11_0"; "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; @@ -4848,6 +4905,7 @@ self: super: { "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"; @@ -5070,6 +5128,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5092,6 +5151,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5174,6 +5234,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5227,6 +5288,7 @@ self: super: { "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-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5243,8 +5305,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5336,6 +5401,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5356,6 +5422,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5602,6 +5669,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5688,6 +5756,7 @@ self: super: { "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"; @@ -5765,6 +5834,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5772,6 +5842,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5783,6 +5854,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5802,6 +5874,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5942,9 +6015,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -5960,6 +6035,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -5984,6 +6061,7 @@ self: super: { "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"; @@ -6054,6 +6132,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6077,6 +6156,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6213,6 +6293,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6350,6 +6431,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6592,9 +6676,13 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6609,6 +6697,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6664,6 +6753,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6864,6 +6954,7 @@ self: super: { "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"; @@ -6941,6 +7032,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7002,6 +7094,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming" = doDistribute super."streaming_0_1_4_0"; "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_2"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7123,6 +7216,7 @@ self: super: { "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"; @@ -7132,6 +7226,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7145,6 +7240,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7152,10 +7248,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7219,6 +7319,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7226,6 +7327,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_6_1"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7270,6 +7372,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7392,6 +7495,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7518,6 +7622,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7676,6 +7782,7 @@ self: super: { "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"; @@ -7686,6 +7793,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7702,6 +7810,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_5"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7747,10 +7856,12 @@ 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"; "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-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7758,6 +7869,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -7813,6 +7925,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7967,6 +8080,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8007,6 +8121,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_13"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8017,6 +8132,7 @@ self: super: { "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-bin" = doDistribute super."yesod-bin_1_4_18"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; @@ -8028,6 +8144,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_7"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8041,6 +8158,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_4"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -8057,7 +8175,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_1_0"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index b8353d4f9b3..6b0728a07d7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -125,6 +125,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -448,6 +449,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -481,6 +483,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -631,6 +634,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -754,6 +758,7 @@ self: super: { "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"; @@ -1066,6 +1071,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1084,6 +1090,7 @@ self: super: { "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; @@ -1240,6 +1247,7 @@ self: super: { "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"; @@ -1332,6 +1340,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1357,6 +1366,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1377,6 +1387,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1415,6 +1426,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_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1717,6 +1729,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1818,6 +1831,7 @@ self: super: { "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"; @@ -1860,6 +1874,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1886,6 +1901,7 @@ self: super: { "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"; @@ -1946,6 +1962,7 @@ self: super: { "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"; @@ -2022,6 +2039,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; @@ -2040,6 +2058,7 @@ self: super: { "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2074,6 +2093,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2097,6 +2117,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2195,6 +2216,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2217,6 +2239,7 @@ self: super: { "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"; @@ -2225,6 +2248,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2351,6 +2375,7 @@ self: super: { "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"; @@ -2387,6 +2412,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2426,12 +2452,20 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2619,6 +2653,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2646,6 +2681,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2775,6 +2811,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2790,6 +2827,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_3"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_2"; "fast-math" = dontDistribute super."fast-math"; @@ -2841,6 +2879,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2928,6 +2967,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2959,6 +2999,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3082,6 +3123,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3529,6 +3571,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_2"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3736,6 +3779,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3797,6 +3841,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_3"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3896,6 +3941,7 @@ self: super: { "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_4_3"; @@ -3924,6 +3970,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4219,6 +4266,7 @@ self: super: { "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"; @@ -4268,6 +4316,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4296,6 +4345,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4313,6 +4363,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4439,6 +4490,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4470,6 +4522,7 @@ self: super: { "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-choice" = doDistribute super."io-choice_0_0_5"; @@ -4577,6 +4630,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4652,6 +4706,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4741,6 +4796,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_7"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4760,9 +4816,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4802,6 +4860,7 @@ self: super: { "lens-utils" = dontDistribute super."lens-utils"; "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_11_0"; "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; @@ -4836,6 +4895,7 @@ self: super: { "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"; @@ -5056,6 +5116,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5077,6 +5138,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5157,6 +5219,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5209,6 +5272,7 @@ self: super: { "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-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5225,8 +5289,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5318,6 +5385,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5338,6 +5406,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5584,6 +5653,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5670,6 +5740,7 @@ self: super: { "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"; @@ -5747,6 +5818,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5754,6 +5826,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5765,6 +5838,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5784,6 +5858,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5922,9 +5997,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -5940,6 +6017,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -5964,6 +6043,7 @@ self: super: { "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"; @@ -6034,6 +6114,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6057,6 +6138,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6193,6 +6275,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6330,6 +6413,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6572,8 +6658,12 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6588,6 +6678,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6643,6 +6734,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6842,6 +6934,7 @@ self: super: { "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"; @@ -6919,6 +7012,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -6978,6 +7072,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7099,6 +7194,7 @@ self: super: { "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"; @@ -7108,6 +7204,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7121,6 +7218,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7128,10 +7226,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7194,6 +7296,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7201,6 +7304,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_6_1"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7245,6 +7349,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7367,6 +7472,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7418,6 +7524,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_6"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7492,6 +7599,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7650,6 +7759,7 @@ self: super: { "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"; @@ -7660,6 +7770,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7676,6 +7787,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_5"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7721,10 +7833,12 @@ 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"; "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-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7732,6 +7846,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -7787,6 +7902,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7941,6 +8057,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -7981,6 +8098,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_13"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -7991,6 +8109,7 @@ self: super: { "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-bin" = doDistribute super."yesod-bin_1_4_18"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; @@ -8002,6 +8121,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_7"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8015,6 +8135,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_4"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -8031,7 +8152,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_1_0"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index 75d72e126f1..c7c616b0c09 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -125,6 +125,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -447,6 +448,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -480,6 +482,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -630,6 +633,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -752,6 +756,7 @@ self: super: { "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"; @@ -1063,6 +1068,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1081,6 +1087,7 @@ self: super: { "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; @@ -1237,6 +1244,7 @@ self: super: { "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"; @@ -1329,6 +1337,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1354,6 +1363,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1373,6 +1383,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1411,6 +1422,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_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1710,6 +1722,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1811,6 +1824,7 @@ self: super: { "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"; @@ -1853,6 +1867,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1879,6 +1894,7 @@ self: super: { "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"; @@ -1936,6 +1952,7 @@ self: super: { "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"; @@ -2012,6 +2029,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; @@ -2030,6 +2048,7 @@ self: super: { "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2064,6 +2083,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2087,6 +2107,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2185,6 +2206,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2207,6 +2229,7 @@ self: super: { "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"; @@ -2215,6 +2238,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2341,6 +2365,7 @@ self: super: { "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"; @@ -2377,6 +2402,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2416,12 +2442,20 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2608,6 +2642,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2635,6 +2670,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2764,6 +2800,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2779,7 +2816,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_3"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_3"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -2829,6 +2868,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2916,6 +2956,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2947,6 +2988,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3070,6 +3112,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3517,6 +3560,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_2"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3724,6 +3768,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3785,6 +3830,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_3"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3884,6 +3930,7 @@ self: super: { "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_4_3"; @@ -3912,6 +3959,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4207,6 +4255,7 @@ self: super: { "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"; @@ -4252,6 +4301,7 @@ self: super: { "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"; @@ -4280,6 +4330,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4297,6 +4348,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4423,6 +4475,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4454,6 +4507,7 @@ self: super: { "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-machine" = dontDistribute super."io-machine"; @@ -4559,6 +4613,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4634,6 +4689,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4723,6 +4779,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_7"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4742,9 +4799,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4784,6 +4843,7 @@ self: super: { "lens-utils" = dontDistribute super."lens-utils"; "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_11_0"; "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; @@ -4818,6 +4878,7 @@ self: super: { "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"; @@ -5037,6 +5098,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5058,6 +5120,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5138,6 +5201,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5190,6 +5254,7 @@ self: super: { "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-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5206,8 +5271,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5233,6 +5301,7 @@ self: super: { "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_4"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; "monomorphic" = dontDistribute super."monomorphic"; @@ -5297,6 +5366,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5317,6 +5387,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5563,6 +5634,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5648,6 +5720,7 @@ self: super: { "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"; @@ -5725,6 +5798,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5732,6 +5806,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5743,6 +5818,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5762,6 +5838,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5897,9 +5974,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -5915,6 +5994,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -5939,6 +6020,7 @@ self: super: { "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"; @@ -6009,6 +6091,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6032,6 +6115,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6168,6 +6252,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6305,6 +6390,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6547,8 +6635,12 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6563,6 +6655,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6597,6 +6690,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_8_1"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6617,6 +6711,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6816,6 +6911,7 @@ self: super: { "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"; @@ -6892,6 +6988,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -6951,6 +7048,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7072,6 +7170,7 @@ self: super: { "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"; @@ -7081,6 +7180,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7094,6 +7194,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7101,10 +7202,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7167,6 +7272,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7174,6 +7280,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_6_1"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7218,6 +7325,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7340,6 +7448,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7391,6 +7500,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_6"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7465,6 +7575,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7622,6 +7734,7 @@ self: super: { "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"; @@ -7632,6 +7745,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7647,6 +7761,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_5"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7691,10 +7806,12 @@ 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"; "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-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7702,6 +7819,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -7757,6 +7875,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7911,6 +8030,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -7948,6 +8068,8 @@ self: super: { "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_13_1"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -7958,16 +8080,19 @@ self: super: { "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-bin" = doDistribute super."yesod-bin_1_4_18"; "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-core" = doDistribute super."yesod-core_1_4_20_1"; "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" = doDistribute super."yesod-form_1_4_7"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -7981,6 +8106,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_4"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -7997,7 +8123,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_1_0"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix new file mode 100644 index 00000000000..e05ecd581b3 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -0,0 +1,8149 @@ +{ 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-5.14 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_4_2_5"; + "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"; + "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"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "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"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "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"; + "Earley" = doDistribute super."Earley_0_10_1_0"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "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"; + "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"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "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"; + "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"; + "HSet" = dontDistribute super."HSet"; + "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"; + "Hclip" = dontDistribute super."Hclip"; + "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"; + "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"; + "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"; + "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"; + "MASMGen" = dontDistribute super."MASMGen"; + "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"; + "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"; + "NoTrace" = dontDistribute super."NoTrace"; + "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"; + "OneTuple" = dontDistribute super."OneTuple"; + "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"; + "PortMidi" = dontDistribute super."PortMidi"; + "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" = doDistribute super."QuickCheck_2_8_1"; + "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"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "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"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "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"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "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-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"; + "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-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "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"; + "active" = doDistribute super."active_0_2_0_8"; + "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" = doDistribute super."aeson_0_9_0_1"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_2_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-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; + "aeson-schema" = 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"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "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_4_3_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-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "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" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; + "ampersand" = dontDistribute super."ampersand"; + "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-field-json-th" = dontDistribute super."api-field-json-th"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; + "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"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "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" = doDistribute super."argon_0_4_0_0"; + "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"; + "arithmoi" = dontDistribute super."arithmoi"; + "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-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "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-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; + "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"; + "atndapi" = dontDistribute super."atndapi"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "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"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "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"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "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"; + "b9" = doDistribute super."b9_0_5_18"; + "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-prelude" = doDistribute super."base-prelude_0_1_21"; + "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"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "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"; + "bento" = dontDistribute super."bento"; + "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"; + "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-bits" = dontDistribute super."binary-bits"; + "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-shared" = dontDistribute super."binary-shared"; + "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-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"; + "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-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-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" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "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"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; + "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"; + "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-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"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "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"; + "c2hs" = doDistribute super."c2hs_0_27_1"; + "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-debian" = doDistribute super."cabal-debian_4_32_2"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "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-info" = dontDistribute super."cabal-info"; + "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"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "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"; + "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_14_2_8"; + "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-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" = doDistribute super."cgi_3001_2_2_3"; + "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-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; + "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"; + "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"; + "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"; + "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"; + "clock" = doDistribute super."clock_0_6_0_1"; + "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"; + "clumpiness" = dontDistribute super."clumpiness"; + "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"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "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"; + "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-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"; + "conceit" = dontDistribute super."conceit"; + "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-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; + "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-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; + "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"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "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-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"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "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-omega" = dontDistribute super."control-monad-omega"; + "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"; + "converge" = dontDistribute super."converge"; + "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"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "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" = doDistribute super."cron_0_3_2"; + "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-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "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"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; + "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" = doDistribute super."darcs_2_10_3"; + "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-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "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-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-or" = dontDistribute super."data-or"; + "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"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "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"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "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"; + "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" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "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-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"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; + "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"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "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" = dontDistribute super."deriving-compat"; + "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-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_9"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "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"; + "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"; + "discount" = dontDistribute super."discount"; + "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-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "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-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; + "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" = doDistribute super."doctest_0_10_1"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "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"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "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" = dontDistribute super."dpor"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "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"; + "duplo" = dontDistribute super."duplo"; + "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"; + "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-handlers" = doDistribute super."effect-handlers_0_1_0_7"; + "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"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "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-bridge" = doDistribute super."elm-bridge_0_2_1_1"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "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-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"; + "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"; + "envelope" = dontDistribute super."envelope"; + "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"; + "ether" = doDistribute super."ether_0_3_1_1"; + "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"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "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"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "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"; + "extra" = doDistribute super."extra_1_4_3"; + "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"; + "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-logger" = doDistribute super."fast-logger_2_4_5"; + "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"; + "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-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-clumpiness" = dontDistribute super."find-clumpiness"; + "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"; + "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"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "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"; + "flow2dot" = dontDistribute super."flow2dot"; + "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"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_6"; + "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"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; + "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"; + "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"; + "free-vl" = dontDistribute super."free-vl"; + "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"; + "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"; + "gamma" = dontDistribute super."gamma"; + "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-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "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"; + "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-imported-from" = dontDistribute super."ghc-imported-from"; + "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-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-hplay" = dontDistribute super."ghcjs-hplay"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "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" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "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"; + "giphy-api" = dontDistribute super."giphy-api"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "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-backup" = dontDistribute super."github-backup"; + "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"; + "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-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-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-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-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-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-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-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"; + "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"; + "gpolyline" = dontDistribute super."gpolyline"; + "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-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "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"; + "graylog" = dontDistribute super."graylog"; + "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-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-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-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "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"; + "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"; + "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-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-leksah" = dontDistribute super."haddock-leksah"; + "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" = doDistribute super."hakyll_4_7_5_2"; + "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-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"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "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"; + "handwriting" = dontDistribute super."handwriting"; + "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"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "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"; + "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-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "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-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "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-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"; + "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" = doDistribute super."hasql_0_19_6"; + "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"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; + "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-amazonka" = dontDistribute super."haxl-amazonka"; + "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"; + "hbayes" = dontDistribute super."hbayes"; + "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"; + "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-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" = doDistribute super."heist_0_14_1_3"; + "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-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"; + "hformat" = dontDistribute super."hformat"; + "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_4_3"; + "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"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; + "hjson" = dontDistribute super."hjson"; + "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-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_31"; + "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" = dontDistribute super."hmt"; + "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"; + "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-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_17_1"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "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" = dontDistribute super."hosc"; + "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"; + "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"; + "hpack" = dontDistribute super."hpack"; + "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"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "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_1_12"; + "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-GeoIP" = dontDistribute super."hs-GeoIP"; + "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-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"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "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"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "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-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"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_5"; + "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"; + "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"; + "htoml" = dontDistribute super."htoml"; + "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-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-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-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "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-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; + "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-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; + "hw-succinct" = dontDistribute super."hw-succinct"; + "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"; + "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"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "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_6_1"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "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-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "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-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "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"; + "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"; + "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-machine" = dontDistribute super."io-machine"; + "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-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-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "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"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "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-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; + "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-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"; + "jwt" = doDistribute super."jwt_0_6_0"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "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"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "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"; + "keycode" = doDistribute super."keycode_0_1_1"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "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"; + "lackey" = dontDistribute super."lackey"; + "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-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "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" = doDistribute super."language-c_0_4_7"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "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-javascript" = doDistribute super."language-javascript_0_5_14_7"; + "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_7_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"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "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"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; + "lentil" = doDistribute super."lentil_0_1_11_0"; + "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"; + "lift-generics" = dontDistribute super."lift-generics"; + "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"; + "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-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"; + "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"; + "logfloat" = dontDistribute super."logfloat"; + "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"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "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-binary" = dontDistribute super."machines-binary"; + "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"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "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"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; + "mandulia" = dontDistribute super."mandulia"; + "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"; + "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_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "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"; + "memory" = doDistribute super."memory_0_11"; + "memscript" = dontDistribute super."memscript"; + "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" = doDistribute super."microlens_0_4_2_1"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1"; + "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1"; + "microlens-th" = doDistribute super."microlens-th_0_3_0_2"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "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"; + "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-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-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-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; + "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"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "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-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_4"; + "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"; + "morte" = doDistribute super."morte_1_4_2"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "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"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; + "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-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-probability" = doDistribute super."mwc-probability_1_0_3"; + "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"; + "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"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "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"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "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" = dontDistribute super."nested-routes"; + "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-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-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "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"; + "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"; + "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"; + "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"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "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"; + "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-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "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"; + "opensource" = dontDistribute super."opensource"; + "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"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "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-generic" = dontDistribute super."optparse-generic"; + "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"; + "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"; + "packdeps" = dontDistribute super."packdeps"; + "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" = doDistribute super."pandoc_1_16_0_2"; + "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"; + "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"; + "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"; + "path-io" = doDistribute super."path-io_0_2_0"; + "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"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "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"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; + "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"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "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_1_3"; + "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-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "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-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "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"; + "plan-b" = dontDistribute super."plan-b"; + "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"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "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"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "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-binary" = doDistribute super."postgresql-binary_0_7_9"; + "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" = doDistribute super."postgresql-simple_0_5_1_2"; + "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-transactional" = dontDistribute super."postgresql-transactional"; + "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-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; + "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"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "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-hex" = dontDistribute super."pretty-hex"; + "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"; + "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_7"; + "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"; + "process-streaming" = dontDistribute super."process-streaming"; + "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"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "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"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "protolude" = dontDistribute super."protolude"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "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-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_7_6_1"; + "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"; + "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"; + "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"; + "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-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "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"; + "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" = doDistribute super."rainbow_0_26_0_6"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "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-tree" = dontDistribute super."random-tree"; + "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"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "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"; + "read-env-var" = dontDistribute super."read-env-var"; + "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-io" = doDistribute super."redis-io_0_5_2"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "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-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "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-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "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-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "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"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "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"; + "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"; + "rng-utils" = dontDistribute super."rng-utils"; + "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"; + "rotating-log" = dontDistribute super."rotating-log"; + "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"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "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"; + "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-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"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "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"; + "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"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "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" = doDistribute super."scotty_0_10_2"; + "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" = doDistribute super."second-transfer_0_7_1_0"; + "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-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "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"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; + "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-js" = dontDistribute super."servant-js"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "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_8_6"; + "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-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"; + "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"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; + "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" = dontDistribute super."simple-log"; + "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-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "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"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "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"; + "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-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-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" = doDistribute super."socket_0_5_3_1"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "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"; + "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"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "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"; + "sql-words" = dontDistribute super."sql-words"; + "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"; + "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" = doDistribute super."stack_1_0_2"; + "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"; + "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_7_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"; + "stopwatch" = dontDistribute super."stopwatch"; + "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"; + "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "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-conv" = dontDistribute super."string-conv"; + "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-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "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"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "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"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "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_1_2_1"; + "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"; + "symbol" = dontDistribute super."symbol"; + "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-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "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"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "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"; + "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"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "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"; + "telegram-api" = dontDistribute super."telegram-api"; + "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-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"; + "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-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; + "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-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "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"; + "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" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "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"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "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"; + "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"; + "tinylog" = doDistribute super."tinylog_0_12_1"; + "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-debug" = doDistribute super."tls-debug_0_4_1"; + "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"; + "tracker" = dontDistribute super."tracker"; + "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-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; + "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-fun" = dontDistribute super."tree-fun"; + "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"; + "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"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "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"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle-options" = dontDistribute super."turtle-options"; + "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-conduit" = doDistribute super."twitter-conduit_0_1_3"; + "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-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"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "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"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; + "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-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" = doDistribute super."unordered-containers_0_2_5_1"; + "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"; + "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-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "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"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "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"; + "vado" = dontDistribute super."vado"; + "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"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "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"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "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-plus" = dontDistribute super."vinyl-plus"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "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"; + "vivid" = dontDistribute super."vivid"; + "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-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-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-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "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-content-type" = dontDistribute super."wai-middleware-content-type"; + "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" = dontDistribute super."wai-middleware-verbs"; + "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-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_2"; + "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-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"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; + "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" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "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" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; + "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"; + "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"; + "with-location" = doDistribute super."with-location_0_0_0"; + "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"; + "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"; + "wuss" = dontDistribute super."wuss"; + "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"; + "xdcc" = dontDistribute super."xdcc"; + "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-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "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"; + "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-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"; + "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-account" = doDistribute super."yesod-auth-account_1_4_1"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_3"; + "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-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-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "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-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; + "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"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "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"; + "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"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "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"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix new file mode 100644 index 00000000000..c0e68130c4a --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -0,0 +1,8129 @@ +{ 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-5.15 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_4_2_5"; + "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"; + "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"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "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"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "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"; + "Earley" = doDistribute super."Earley_0_10_1_0"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "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"; + "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"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "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"; + "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"; + "Hclip" = dontDistribute super."Hclip"; + "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"; + "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"; + "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"; + "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"; + "MASMGen" = dontDistribute super."MASMGen"; + "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"; + "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"; + "NoTrace" = dontDistribute super."NoTrace"; + "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"; + "OneTuple" = dontDistribute super."OneTuple"; + "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"; + "PortMidi" = dontDistribute super."PortMidi"; + "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" = doDistribute super."QuickCheck_2_8_1"; + "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"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "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"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "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"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "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-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"; + "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-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "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"; + "active" = doDistribute super."active_0_2_0_8"; + "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" = doDistribute super."aeson_0_9_0_1"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_2_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-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; + "aeson-schema" = 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"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "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_4_3_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-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "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" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; + "ampersand" = dontDistribute super."ampersand"; + "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-field-json-th" = dontDistribute super."api-field-json-th"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; + "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"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "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" = doDistribute super."argon_0_4_0_0"; + "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"; + "arithmoi" = dontDistribute super."arithmoi"; + "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-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "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-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; + "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"; + "atndapi" = dontDistribute super."atndapi"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "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"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "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"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "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"; + "b9" = doDistribute super."b9_0_5_18"; + "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-prelude" = doDistribute super."base-prelude_0_1_21"; + "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"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "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"; + "bento" = dontDistribute super."bento"; + "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"; + "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-bits" = dontDistribute super."binary-bits"; + "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-shared" = dontDistribute super."binary-shared"; + "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-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"; + "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-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-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" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "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"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; + "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"; + "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-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"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "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"; + "c2hs" = doDistribute super."c2hs_0_27_1"; + "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-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "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-info" = dontDistribute super."cabal-info"; + "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"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "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"; + "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_14_2_8"; + "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-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" = doDistribute super."cgi_3001_2_2_3"; + "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-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; + "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"; + "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"; + "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"; + "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"; + "clock" = doDistribute super."clock_0_6_0_1"; + "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"; + "clumpiness" = dontDistribute super."clumpiness"; + "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"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "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"; + "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-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"; + "conceit" = dontDistribute super."conceit"; + "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-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; + "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-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"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "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-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"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "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-omega" = dontDistribute super."control-monad-omega"; + "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"; + "converge" = dontDistribute super."converge"; + "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"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "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" = doDistribute super."cron_0_3_2"; + "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-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "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" = doDistribute super."darcs_2_10_3"; + "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-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "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-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-or" = dontDistribute super."data-or"; + "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"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "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"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "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"; + "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" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "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-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"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; + "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"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "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" = dontDistribute super."deriving-compat"; + "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-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_9"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "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"; + "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"; + "discount" = dontDistribute super."discount"; + "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-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "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-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; + "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" = doDistribute super."doctest_0_10_1"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "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"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "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" = dontDistribute super."dpor"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "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"; + "duplo" = dontDistribute super."duplo"; + "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"; + "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"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "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-bridge" = doDistribute super."elm-bridge_0_2_1_1"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "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-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"; + "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"; + "envelope" = dontDistribute super."envelope"; + "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"; + "ether" = doDistribute super."ether_0_3_1_1"; + "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"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "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"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "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"; + "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"; + "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-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-clumpiness" = dontDistribute super."find-clumpiness"; + "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"; + "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"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "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"; + "flow2dot" = dontDistribute super."flow2dot"; + "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"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_6"; + "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"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; + "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"; + "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"; + "free-vl" = dontDistribute super."free-vl"; + "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"; + "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"; + "gamma" = dontDistribute super."gamma"; + "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-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "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"; + "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-imported-from" = dontDistribute super."ghc-imported-from"; + "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-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-hplay" = dontDistribute super."ghcjs-hplay"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "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" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "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"; + "giphy-api" = dontDistribute super."giphy-api"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "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-backup" = dontDistribute super."github-backup"; + "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"; + "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-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-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-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-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-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-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-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"; + "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"; + "gpolyline" = dontDistribute super."gpolyline"; + "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-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "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"; + "graylog" = dontDistribute super."graylog"; + "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-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-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-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "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"; + "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"; + "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-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-leksah" = dontDistribute super."haddock-leksah"; + "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" = doDistribute super."hakyll_4_7_5_2"; + "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-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"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "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"; + "handwriting" = dontDistribute super."handwriting"; + "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"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "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"; + "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-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "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-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "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-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"; + "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" = doDistribute super."hasql_0_19_6"; + "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-amazonka" = dontDistribute super."haxl-amazonka"; + "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"; + "hbayes" = dontDistribute super."hbayes"; + "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"; + "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-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-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"; + "hformat" = dontDistribute super."hformat"; + "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_4_3"; + "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"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; + "hjson" = dontDistribute super."hjson"; + "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-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_31"; + "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" = dontDistribute super."hmt"; + "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"; + "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-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_17_1"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "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" = dontDistribute super."hosc"; + "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"; + "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"; + "hpack" = dontDistribute super."hpack"; + "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"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "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_1_12"; + "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-GeoIP" = dontDistribute super."hs-GeoIP"; + "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-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"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "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"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "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-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"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_5"; + "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"; + "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"; + "htoml" = dontDistribute super."htoml"; + "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-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-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-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "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-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; + "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-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; + "hw-succinct" = dontDistribute super."hw-succinct"; + "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"; + "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"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "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_6_1"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "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-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "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-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "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"; + "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"; + "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-machine" = dontDistribute super."io-machine"; + "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-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-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "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"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "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-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; + "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-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"; + "jwt" = doDistribute super."jwt_0_6_0"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "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"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "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"; + "keycode" = doDistribute super."keycode_0_1_1"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "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"; + "lackey" = dontDistribute super."lackey"; + "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-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "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" = doDistribute super."language-c_0_4_7"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "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-javascript" = doDistribute super."language-javascript_0_5_14_7"; + "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_7_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"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "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"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; + "lift-generics" = dontDistribute super."lift-generics"; + "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"; + "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-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"; + "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"; + "logfloat" = dontDistribute super."logfloat"; + "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"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "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-binary" = dontDistribute super."machines-binary"; + "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"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "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"; + "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"; + "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_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "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"; + "memory" = doDistribute super."memory_0_11"; + "memscript" = dontDistribute super."memscript"; + "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" = doDistribute super."microlens_0_4_2_1"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1"; + "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1"; + "microlens-th" = doDistribute super."microlens-th_0_3_0_2"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "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"; + "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-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-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-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; + "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"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "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-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_4"; + "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"; + "morte" = doDistribute super."morte_1_4_2"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "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"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; + "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-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-probability" = doDistribute super."mwc-probability_1_0_3"; + "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"; + "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"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "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"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "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" = dontDistribute super."nested-routes"; + "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-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-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "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"; + "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"; + "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"; + "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"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "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"; + "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-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "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"; + "opensource" = dontDistribute super."opensource"; + "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"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "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-generic" = dontDistribute super."optparse-generic"; + "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"; + "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"; + "packdeps" = dontDistribute super."packdeps"; + "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" = doDistribute super."pandoc_1_16_0_2"; + "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"; + "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"; + "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"; + "path-io" = doDistribute super."path-io_0_2_0"; + "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"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "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"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; + "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"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "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_1_3"; + "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-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "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-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "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"; + "plan-b" = dontDistribute super."plan-b"; + "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"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "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"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "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-binary" = doDistribute super."postgresql-binary_0_7_9"; + "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-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; + "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-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"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "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-hex" = dontDistribute super."pretty-hex"; + "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"; + "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_7"; + "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"; + "process-streaming" = dontDistribute super."process-streaming"; + "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"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "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"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "protolude" = dontDistribute super."protolude"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "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-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_7_6_1"; + "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"; + "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"; + "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"; + "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-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "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"; + "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" = doDistribute super."rainbow_0_26_0_6"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "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-tree" = dontDistribute super."random-tree"; + "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"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "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"; + "read-env-var" = dontDistribute super."read-env-var"; + "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-io" = doDistribute super."redis-io_0_5_2"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "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-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "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-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "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-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "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"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "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"; + "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"; + "rng-utils" = dontDistribute super."rng-utils"; + "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"; + "rotating-log" = dontDistribute super."rotating-log"; + "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"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "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"; + "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-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"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "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"; + "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"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "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" = doDistribute super."scotty_0_10_2"; + "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" = doDistribute super."second-transfer_0_7_1_0"; + "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-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "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"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; + "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-js" = dontDistribute super."servant-js"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "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_8_6"; + "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-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"; + "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"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; + "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" = dontDistribute super."simple-log"; + "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-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "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"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "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"; + "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-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-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" = doDistribute super."socket_0_5_3_1"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "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"; + "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"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "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"; + "sql-words" = dontDistribute super."sql-words"; + "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"; + "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" = doDistribute super."stack_1_0_2"; + "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"; + "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_7_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"; + "stopwatch" = dontDistribute super."stopwatch"; + "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"; + "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "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-conv" = dontDistribute super."string-conv"; + "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-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "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"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "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"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "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_1_2_1"; + "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"; + "symbol" = dontDistribute super."symbol"; + "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-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "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"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "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"; + "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"; + "tardis" = doDistribute super."tardis_0_3_0_0"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "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"; + "telegram-api" = dontDistribute super."telegram-api"; + "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-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"; + "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-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; + "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-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "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"; + "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" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "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"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "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"; + "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"; + "tinylog" = doDistribute super."tinylog_0_12_1"; + "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-debug" = doDistribute super."tls-debug_0_4_1"; + "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"; + "tracker" = dontDistribute super."tracker"; + "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-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-fun" = dontDistribute super."tree-fun"; + "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"; + "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"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "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"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle-options" = dontDistribute super."turtle-options"; + "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-conduit" = doDistribute super."twitter-conduit_0_1_3"; + "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-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"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "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"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; + "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-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" = doDistribute super."unordered-containers_0_2_5_1"; + "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"; + "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-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "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"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "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"; + "vado" = dontDistribute super."vado"; + "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"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "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"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "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-plus" = dontDistribute super."vinyl-plus"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "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"; + "vivid" = dontDistribute super."vivid"; + "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-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-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-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "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-content-type" = dontDistribute super."wai-middleware-content-type"; + "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" = dontDistribute super."wai-middleware-verbs"; + "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-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_2"; + "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-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"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; + "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" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "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" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; + "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"; + "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"; + "with-location" = doDistribute super."with-location_0_0_0"; + "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"; + "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"; + "wuss" = dontDistribute super."wuss"; + "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"; + "xdcc" = dontDistribute super."xdcc"; + "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-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "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"; + "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-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"; + "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-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_3"; + "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-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-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "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-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; + "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"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "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"; + "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"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "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"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 7dbaa3da18b..a7e35e6c137 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -454,6 +454,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -489,6 +490,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -640,6 +642,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -763,6 +766,7 @@ self: super: { "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"; @@ -1076,6 +1080,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1254,6 +1259,7 @@ self: super: { "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"; @@ -1347,6 +1353,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1373,6 +1380,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1393,6 +1401,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1742,6 +1751,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1847,6 +1857,7 @@ self: super: { "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"; @@ -1890,6 +1901,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1916,6 +1928,7 @@ self: super: { "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"; @@ -1986,6 +1999,7 @@ self: super: { "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"; @@ -2085,6 +2099,7 @@ self: super: { "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2143,6 +2158,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2243,6 +2259,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2265,6 +2282,7 @@ self: super: { "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"; @@ -2273,6 +2291,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2400,6 +2419,7 @@ self: super: { "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"; @@ -2436,6 +2456,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2478,14 +2499,20 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2678,6 +2705,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2841,6 +2869,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2911,6 +2940,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2999,6 +3029,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3030,6 +3061,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3156,6 +3188,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3818,6 +3851,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3985,6 +4019,7 @@ self: super: { "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_4_2_3"; @@ -4320,6 +4355,7 @@ self: super: { "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"; @@ -4370,6 +4406,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4398,6 +4435,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4415,6 +4453,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4545,6 +4584,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4576,6 +4616,7 @@ self: super: { "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-choice" = doDistribute super."io-choice_0_0_5"; @@ -4762,6 +4803,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4872,9 +4914,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4949,6 +4993,7 @@ self: super: { "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"; @@ -5199,6 +5244,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5285,6 +5331,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5339,6 +5386,7 @@ self: super: { "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-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5355,8 +5403,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5449,6 +5500,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5469,6 +5521,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5721,6 +5774,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5811,6 +5865,7 @@ self: super: { "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"; @@ -5890,6 +5945,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5898,6 +5954,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -5930,6 +5987,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6073,9 +6131,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6091,6 +6151,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6115,6 +6177,7 @@ self: super: { "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"; @@ -6185,6 +6248,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6208,6 +6272,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6346,6 +6411,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6486,6 +6552,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6807,6 +6876,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7012,6 +7082,7 @@ self: super: { "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"; @@ -7089,6 +7160,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7276,6 +7348,7 @@ self: super: { "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"; @@ -7285,6 +7358,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7299,6 +7373,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7306,10 +7381,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7375,6 +7454,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7428,6 +7508,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7551,6 +7632,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7681,6 +7763,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7843,6 +7927,7 @@ self: super: { "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"; @@ -7923,6 +8008,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7930,6 +8016,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -7992,6 +8079,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8147,6 +8235,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8187,6 +8276,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8241,6 +8331,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 4368c640604..ce377cc70cb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -452,6 +452,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -486,6 +487,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -637,6 +639,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -760,6 +763,7 @@ self: super: { "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"; @@ -1073,6 +1077,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1251,6 +1256,7 @@ self: super: { "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"; @@ -1343,6 +1349,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1369,6 +1376,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1389,6 +1397,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1737,6 +1746,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1841,6 +1851,7 @@ self: super: { "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"; @@ -1884,6 +1895,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1910,6 +1922,7 @@ self: super: { "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"; @@ -1980,6 +1993,7 @@ self: super: { "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"; @@ -2078,6 +2092,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2112,6 +2127,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2135,6 +2151,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2235,6 +2252,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2257,6 +2275,7 @@ self: super: { "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"; @@ -2265,6 +2284,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2391,6 +2411,7 @@ self: super: { "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"; @@ -2427,6 +2448,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2469,14 +2491,20 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2668,6 +2696,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2827,6 +2856,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2895,6 +2925,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2983,6 +3014,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3014,6 +3046,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3139,6 +3172,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3800,6 +3834,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3967,6 +4002,7 @@ self: super: { "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_4_2_3"; @@ -4302,6 +4338,7 @@ self: super: { "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"; @@ -4352,6 +4389,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4380,6 +4418,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4397,6 +4436,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4526,6 +4566,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4557,6 +4598,7 @@ self: super: { "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-choice" = doDistribute super."io-choice_0_0_5"; @@ -4743,6 +4785,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4853,9 +4896,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4930,6 +4975,7 @@ self: super: { "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"; @@ -5156,6 +5202,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5178,6 +5225,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5263,6 +5311,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5317,6 +5366,7 @@ self: super: { "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-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5333,8 +5383,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5427,6 +5480,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5447,6 +5501,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5699,6 +5754,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5788,6 +5844,7 @@ self: super: { "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"; @@ -5867,6 +5924,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5875,6 +5933,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -5907,6 +5966,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6050,9 +6110,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6068,6 +6130,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6092,6 +6156,7 @@ self: super: { "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"; @@ -6162,6 +6227,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6185,6 +6251,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6322,6 +6389,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6460,6 +6528,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6781,6 +6852,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6983,6 +7055,7 @@ self: super: { "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"; @@ -7060,6 +7133,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7246,6 +7320,7 @@ self: super: { "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"; @@ -7255,6 +7330,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7269,6 +7345,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7276,10 +7353,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7345,6 +7426,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7398,6 +7480,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7521,6 +7604,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7651,6 +7735,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7812,6 +7898,7 @@ self: super: { "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"; @@ -7892,6 +7979,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7899,6 +7987,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -7958,6 +8047,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8113,6 +8203,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8153,6 +8244,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8207,6 +8299,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index d54a61d0d9d..f10586dcc5a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -452,6 +452,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -485,6 +486,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -636,6 +638,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -759,6 +762,7 @@ self: super: { "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"; @@ -1072,6 +1076,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1249,6 +1254,7 @@ self: super: { "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"; @@ -1341,6 +1347,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1367,6 +1374,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1387,6 +1395,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1735,6 +1744,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1839,6 +1849,7 @@ self: super: { "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"; @@ -1882,6 +1893,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1908,6 +1920,7 @@ self: super: { "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"; @@ -1977,6 +1990,7 @@ self: super: { "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"; @@ -2075,6 +2089,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_10_1"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2109,6 +2124,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2132,6 +2148,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2231,6 +2248,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2253,6 +2271,7 @@ self: super: { "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"; @@ -2261,6 +2280,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2387,6 +2407,7 @@ self: super: { "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"; @@ -2423,6 +2444,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2464,12 +2486,20 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2658,6 +2688,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2685,6 +2716,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2816,6 +2848,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2883,6 +2916,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2971,6 +3005,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3002,6 +3037,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3127,6 +3163,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3786,6 +3823,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3953,6 +3991,7 @@ self: super: { "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_4_2_3"; @@ -3981,6 +4020,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4285,6 +4325,7 @@ self: super: { "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"; @@ -4335,6 +4376,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4363,6 +4405,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4380,6 +4423,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4509,6 +4553,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4540,6 +4585,7 @@ self: super: { "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-choice" = doDistribute super."io-choice_0_0_5"; @@ -4726,6 +4772,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4836,9 +4883,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4913,6 +4962,7 @@ self: super: { "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"; @@ -5137,6 +5187,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5159,6 +5210,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5244,6 +5296,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5298,6 +5351,7 @@ self: super: { "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-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5314,8 +5368,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5407,6 +5464,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5427,6 +5485,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5676,6 +5735,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5764,6 +5824,7 @@ self: super: { "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"; @@ -5843,6 +5904,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5851,6 +5913,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -5883,6 +5946,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6025,9 +6089,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6043,6 +6109,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6067,6 +6135,7 @@ self: super: { "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"; @@ -6137,6 +6206,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6160,6 +6230,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6296,6 +6367,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6434,6 +6506,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6755,6 +6830,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6957,6 +7033,7 @@ self: super: { "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"; @@ -7034,6 +7111,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7220,6 +7298,7 @@ self: super: { "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"; @@ -7229,6 +7308,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7243,6 +7323,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7250,10 +7331,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7318,6 +7403,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7371,6 +7457,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7494,6 +7581,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7623,6 +7711,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7784,6 +7874,7 @@ self: super: { "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"; @@ -7864,6 +7955,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7871,6 +7963,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -7930,6 +8023,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8085,6 +8179,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8125,6 +8220,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8179,6 +8275,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 3755d3ed35c..7743af0949e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -452,6 +452,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -485,6 +486,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -636,6 +638,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -759,6 +762,7 @@ self: super: { "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"; @@ -1072,6 +1076,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1249,6 +1254,7 @@ self: super: { "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"; @@ -1341,6 +1347,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1367,6 +1374,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1387,6 +1395,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1428,6 +1437,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_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1733,6 +1743,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1837,6 +1848,7 @@ self: super: { "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"; @@ -1880,6 +1892,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1906,6 +1919,7 @@ self: super: { "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"; @@ -1973,6 +1987,7 @@ self: super: { "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"; @@ -2071,6 +2086,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_10_1"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2105,6 +2121,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2128,6 +2145,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2227,6 +2245,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2249,6 +2268,7 @@ self: super: { "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"; @@ -2257,6 +2277,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2383,6 +2404,7 @@ self: super: { "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"; @@ -2419,6 +2441,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2460,12 +2483,20 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2654,6 +2685,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2681,6 +2713,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2812,6 +2845,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2879,6 +2913,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2967,6 +3002,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2998,6 +3034,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3123,6 +3160,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3781,6 +3819,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3948,6 +3987,7 @@ self: super: { "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_4_2_3"; @@ -3976,6 +4016,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4279,6 +4320,7 @@ self: super: { "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"; @@ -4329,6 +4371,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4357,6 +4400,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4374,6 +4418,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4503,6 +4548,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4534,6 +4580,7 @@ self: super: { "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-choice" = doDistribute super."io-choice_0_0_5"; @@ -4720,6 +4767,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4830,9 +4878,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4907,6 +4957,7 @@ self: super: { "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"; @@ -5131,6 +5182,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5153,6 +5205,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5238,6 +5291,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5292,6 +5346,7 @@ self: super: { "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-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5308,8 +5363,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5401,6 +5459,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5421,6 +5480,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5670,6 +5730,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5758,6 +5819,7 @@ self: super: { "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"; @@ -5837,6 +5899,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5845,6 +5908,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -5877,6 +5941,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6019,9 +6084,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6037,6 +6104,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6061,6 +6130,7 @@ self: super: { "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"; @@ -6131,6 +6201,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6154,6 +6225,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6290,6 +6362,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6428,6 +6501,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6749,6 +6825,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6951,6 +7028,7 @@ self: super: { "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"; @@ -7028,6 +7106,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7214,6 +7293,7 @@ self: super: { "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"; @@ -7223,6 +7303,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7237,6 +7318,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7244,10 +7326,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7312,6 +7398,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7365,6 +7452,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7488,6 +7576,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7617,6 +7706,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7777,6 +7868,7 @@ self: super: { "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"; @@ -7856,6 +7948,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7863,6 +7956,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -7921,6 +8015,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8076,6 +8171,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8116,6 +8212,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8170,6 +8267,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 53643599858..1299567a772 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -451,6 +451,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -484,6 +485,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -635,6 +637,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -758,6 +761,7 @@ self: super: { "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"; @@ -1071,6 +1075,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1248,6 +1253,7 @@ self: super: { "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"; @@ -1340,6 +1346,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1365,6 +1372,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1385,6 +1393,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1426,6 +1435,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1729,6 +1739,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1832,6 +1843,7 @@ self: super: { "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"; @@ -1875,6 +1887,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1901,6 +1914,7 @@ self: super: { "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"; @@ -1968,6 +1982,7 @@ self: super: { "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"; @@ -2066,6 +2081,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2100,6 +2116,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2123,6 +2140,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2221,6 +2239,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2243,6 +2262,7 @@ self: super: { "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"; @@ -2251,6 +2271,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2377,6 +2398,7 @@ self: super: { "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"; @@ -2413,6 +2435,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2454,12 +2477,20 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2648,6 +2679,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2675,6 +2707,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2806,6 +2839,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2873,6 +2907,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2961,6 +2996,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2992,6 +3028,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3115,6 +3152,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3772,6 +3810,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3937,6 +3976,7 @@ self: super: { "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_4_2_3"; @@ -3965,6 +4005,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4268,6 +4309,7 @@ self: super: { "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"; @@ -4318,6 +4360,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4346,6 +4389,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4363,6 +4407,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4492,6 +4537,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4523,6 +4569,7 @@ self: super: { "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-choice" = doDistribute super."io-choice_0_0_5"; @@ -4709,6 +4756,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4818,9 +4866,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4895,6 +4945,7 @@ self: super: { "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"; @@ -5118,6 +5169,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5140,6 +5192,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5225,6 +5278,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5279,6 +5333,7 @@ self: super: { "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-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5295,8 +5350,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5388,6 +5446,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5408,6 +5467,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5656,6 +5716,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5744,6 +5805,7 @@ self: super: { "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"; @@ -5822,6 +5884,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5830,6 +5893,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "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"; @@ -5862,6 +5926,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6003,9 +6068,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6021,6 +6088,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6045,6 +6114,7 @@ self: super: { "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"; @@ -6115,6 +6185,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6138,6 +6209,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6274,6 +6346,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6411,6 +6484,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6732,6 +6808,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6934,6 +7011,7 @@ self: super: { "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"; @@ -7011,6 +7089,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7072,6 +7151,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming" = doDistribute super."streaming_0_1_4_0"; "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7196,6 +7276,7 @@ self: super: { "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"; @@ -7205,6 +7286,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7219,6 +7301,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7226,10 +7309,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7294,6 +7381,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7347,6 +7435,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7469,6 +7558,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7598,6 +7688,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7758,6 +7850,7 @@ self: super: { "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"; @@ -7837,6 +7930,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7844,6 +7938,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -7901,6 +7996,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8055,6 +8151,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8095,6 +8192,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8149,6 +8247,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index b8ae4e15211..8b3c63bdb51 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -451,6 +451,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -484,6 +485,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -635,6 +637,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -758,6 +761,7 @@ self: super: { "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"; @@ -1071,6 +1075,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1248,6 +1253,7 @@ self: super: { "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"; @@ -1340,6 +1346,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1365,6 +1372,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1385,6 +1393,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1426,6 +1435,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1729,6 +1739,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1832,6 +1843,7 @@ self: super: { "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"; @@ -1874,6 +1886,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1900,6 +1913,7 @@ self: super: { "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"; @@ -1965,6 +1979,7 @@ self: super: { "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"; @@ -2062,6 +2077,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2096,6 +2112,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2119,6 +2136,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2217,6 +2235,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2239,6 +2258,7 @@ self: super: { "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"; @@ -2247,6 +2267,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2373,6 +2394,7 @@ self: super: { "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"; @@ -2409,6 +2431,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2450,12 +2473,20 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2644,6 +2675,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2671,6 +2703,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2802,6 +2835,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2869,6 +2903,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2957,6 +2992,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2988,6 +3024,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3111,6 +3148,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3768,6 +3806,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3932,6 +3971,7 @@ self: super: { "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_4_3"; @@ -3960,6 +4000,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4262,6 +4303,7 @@ self: super: { "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"; @@ -4312,6 +4354,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4340,6 +4383,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4357,6 +4401,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4486,6 +4531,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4517,6 +4563,7 @@ self: super: { "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-choice" = doDistribute super."io-choice_0_0_5"; @@ -4703,6 +4750,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4812,9 +4860,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4889,6 +4939,7 @@ self: super: { "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"; @@ -5112,6 +5163,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5134,6 +5186,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5218,6 +5271,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5272,6 +5326,7 @@ self: super: { "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-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5288,8 +5343,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5381,6 +5439,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5401,6 +5460,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5649,6 +5709,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5737,6 +5798,7 @@ self: super: { "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"; @@ -5815,6 +5877,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5822,6 +5885,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5833,6 +5897,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5852,6 +5917,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5993,9 +6059,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6011,6 +6079,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6035,6 +6105,7 @@ self: super: { "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"; @@ -6105,6 +6176,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6128,6 +6200,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6264,6 +6337,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6401,6 +6475,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6721,6 +6798,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6923,6 +7001,7 @@ self: super: { "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"; @@ -7000,6 +7079,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7061,6 +7141,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming" = doDistribute super."streaming_0_1_4_0"; "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7183,6 +7264,7 @@ self: super: { "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"; @@ -7192,6 +7274,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7206,6 +7289,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7213,10 +7297,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7281,6 +7369,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7334,6 +7423,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7456,6 +7546,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7584,6 +7675,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7744,6 +7837,7 @@ self: super: { "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"; @@ -7823,6 +7917,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7830,6 +7925,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -7887,6 +7983,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8041,6 +8138,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8081,6 +8179,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8135,6 +8234,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index ddb17e5922d..8454d0b5a63 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -451,6 +451,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -484,6 +485,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -635,6 +637,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -758,6 +761,7 @@ self: super: { "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"; @@ -1071,6 +1075,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1248,6 +1253,7 @@ self: super: { "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"; @@ -1340,6 +1346,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1365,6 +1372,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1385,6 +1393,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1426,6 +1435,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1729,6 +1739,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1832,6 +1843,7 @@ self: super: { "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"; @@ -1874,6 +1886,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1900,6 +1913,7 @@ self: super: { "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"; @@ -1965,6 +1979,7 @@ self: super: { "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"; @@ -2042,6 +2057,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; @@ -2061,6 +2077,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2095,6 +2112,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2118,6 +2136,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2216,6 +2235,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2238,6 +2258,7 @@ self: super: { "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"; @@ -2246,6 +2267,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2372,6 +2394,7 @@ self: super: { "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"; @@ -2408,6 +2431,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2449,12 +2473,20 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2643,6 +2675,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2670,6 +2703,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2801,6 +2835,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2868,6 +2903,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2956,6 +2992,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2987,6 +3024,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3110,6 +3148,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3767,6 +3806,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3931,6 +3971,7 @@ self: super: { "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_4_3"; @@ -3959,6 +4000,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4261,6 +4303,7 @@ self: super: { "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"; @@ -4311,6 +4354,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4339,6 +4383,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4356,6 +4401,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4485,6 +4531,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4516,6 +4563,7 @@ self: super: { "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-choice" = doDistribute super."io-choice_0_0_5"; @@ -4702,6 +4750,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4811,9 +4860,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4888,6 +4939,7 @@ self: super: { "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"; @@ -5111,6 +5163,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5133,6 +5186,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5217,6 +5271,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5271,6 +5326,7 @@ self: super: { "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-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5287,8 +5343,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5380,6 +5439,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5400,6 +5460,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5648,6 +5709,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5736,6 +5798,7 @@ self: super: { "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"; @@ -5814,6 +5877,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5821,6 +5885,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5832,6 +5897,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5851,6 +5917,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5992,9 +6059,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6010,6 +6079,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6034,6 +6105,7 @@ self: super: { "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"; @@ -6104,6 +6176,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6127,6 +6200,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6263,6 +6337,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6400,6 +6475,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6720,6 +6798,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6922,6 +7001,7 @@ self: super: { "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"; @@ -6999,6 +7079,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7060,6 +7141,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming" = doDistribute super."streaming_0_1_4_0"; "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7182,6 +7264,7 @@ self: super: { "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"; @@ -7191,6 +7274,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7205,6 +7289,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7212,10 +7297,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7280,6 +7369,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7333,6 +7423,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7455,6 +7546,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7583,6 +7675,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7743,6 +7837,7 @@ self: super: { "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"; @@ -7753,6 +7848,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7821,6 +7917,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7828,6 +7925,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -7884,6 +7982,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8038,6 +8137,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8078,6 +8178,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8132,6 +8233,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 3bb8e3ad802..1ca18de21a3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -451,6 +451,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -484,6 +485,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -635,6 +637,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -758,6 +761,7 @@ self: super: { "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"; @@ -1071,6 +1075,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1247,6 +1252,7 @@ self: super: { "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"; @@ -1339,6 +1345,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1364,6 +1371,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1384,6 +1392,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1425,6 +1434,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_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1728,6 +1738,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1830,6 +1841,7 @@ self: super: { "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"; @@ -1872,6 +1884,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1898,6 +1911,7 @@ self: super: { "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"; @@ -1963,6 +1977,7 @@ self: super: { "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"; @@ -2040,6 +2055,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; @@ -2059,6 +2075,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2093,6 +2110,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2116,6 +2134,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2214,6 +2233,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2236,6 +2256,7 @@ self: super: { "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"; @@ -2244,6 +2265,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2370,6 +2392,7 @@ self: super: { "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"; @@ -2406,6 +2429,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2446,12 +2470,20 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2640,6 +2672,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2667,6 +2700,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2798,6 +2832,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2865,6 +2900,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2953,6 +2989,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2984,6 +3021,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3107,6 +3145,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3762,6 +3801,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3924,6 +3964,7 @@ self: super: { "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_4_3"; @@ -3952,6 +3993,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4254,6 +4296,7 @@ self: super: { "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"; @@ -4304,6 +4347,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "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"; @@ -4332,6 +4376,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4349,6 +4394,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4476,6 +4522,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4507,6 +4554,7 @@ self: super: { "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-choice" = doDistribute super."io-choice_0_0_5"; @@ -4615,6 +4663,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4691,6 +4740,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4800,9 +4850,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_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"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4877,6 +4929,7 @@ self: super: { "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"; @@ -5100,6 +5153,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5122,6 +5176,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5206,6 +5261,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5260,6 +5316,7 @@ self: super: { "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-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5276,8 +5333,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5369,6 +5429,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5389,6 +5450,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"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5636,6 +5698,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5722,6 +5785,7 @@ self: super: { "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"; @@ -5799,6 +5863,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5806,6 +5871,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5817,6 +5883,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5836,6 +5903,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5977,9 +6045,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -5995,6 +6065,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6019,6 +6091,7 @@ self: super: { "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"; @@ -6089,6 +6162,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6112,6 +6186,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "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"; @@ -6248,6 +6323,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "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"; @@ -6385,6 +6461,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6627,9 +6706,13 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6644,6 +6727,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6699,6 +6783,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6899,6 +6984,7 @@ self: super: { "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"; @@ -6976,6 +7062,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7037,6 +7124,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming" = doDistribute super."streaming_0_1_4_0"; "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_2"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7159,6 +7247,7 @@ self: super: { "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"; @@ -7168,6 +7257,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7181,6 +7271,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7188,10 +7279,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7256,6 +7351,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7308,6 +7404,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7430,6 +7527,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7558,6 +7656,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7718,6 +7818,7 @@ self: super: { "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"; @@ -7728,6 +7829,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7796,6 +7898,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7803,6 +7906,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; @@ -7858,6 +7962,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8012,6 +8117,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8052,6 +8158,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8105,6 +8212,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 903f2c3a3a1..8a88cce6753 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -1968,7 +1968,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately" = callPackage + "BlogLiterately_0_8_2" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc @@ -1991,9 +1991,10 @@ self: { homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately_0_8_2_1" = callPackage + "BlogLiterately" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc @@ -2016,7 +2017,6 @@ self: { homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BlogLiterately-diagrams_0_1_4_3" = callPackage @@ -2821,6 +2821,31 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "Cabal_1_24_0_0" = callPackage + ({ mkDerivation, array, base, binary, bytestring, containers + , deepseq, directory, exceptions, filepath, old-time, pretty + , process, QuickCheck, regex-posix, tagged, tasty, tasty-hunit + , tasty-quickcheck, time, transformers, unix + }: + mkDerivation { + pname = "Cabal"; + version = "1.24.0.0"; + sha256 = "c00e9d372adb49ce1bd5b62ff049cf49adc4a312a271b238894e50eb707297aa"; + libraryHaskellDepends = [ + array base binary bytestring containers deepseq directory filepath + pretty process time unix + ]; + testHaskellDepends = [ + base bytestring containers directory exceptions filepath old-time + pretty process QuickCheck regex-posix tagged tasty tasty-hunit + tasty-quickcheck transformers unix + ]; + homepage = "http://www.haskell.org/cabal/"; + description = "A framework for packaging Haskell software"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Cabal-ide-backend" = callPackage ({ mkDerivation, array, base, binary, bytestring, Cabal, containers , deepseq, directory, extensible-exceptions, filepath, HUnit @@ -3082,6 +3107,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Chart_1_7_1" = callPackage + ({ mkDerivation, array, base, colour, data-default-class, lens, mtl + , old-locale, operational, time, vector + }: + mkDerivation { + pname = "Chart"; + version = "1.7.1"; + sha256 = "068e8ec72dbc3bb7ddaca052729cb0a187df6d3828978966b1c15c8ac36be610"; + libraryHaskellDepends = [ + array base colour data-default-class lens mtl old-locale + operational time vector + ]; + homepage = "https://github.com/timbod7/haskell-chart/wiki"; + description = "A library for generating 2D Charts and Plots"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Chart-cairo_1_5_1" = callPackage ({ mkDerivation, array, base, cairo, Chart, colour , data-default-class, lens, mtl, old-locale, operational, time @@ -3137,6 +3180,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Chart-cairo_1_7_1" = callPackage + ({ mkDerivation, array, base, cairo, Chart, colour + , data-default-class, lens, mtl, old-locale, operational, time + }: + mkDerivation { + pname = "Chart-cairo"; + version = "1.7.1"; + sha256 = "3f3cffb7b971b45b0ace2c45f2916df1fc9b5473b49c4f0fc86937802790fe01"; + libraryHaskellDepends = [ + array base cairo Chart colour data-default-class lens mtl + old-locale operational time + ]; + jailbreak = true; + homepage = "https://github.com/timbod7/haskell-chart/wiki"; + description = "Cairo backend for Charts"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Chart-diagrams_1_3_2" = callPackage ({ mkDerivation, base, blaze-svg, bytestring, Chart, colour , containers, data-default-class, diagrams-core, diagrams-lib @@ -3250,18 +3312,42 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Chart-diagrams_1_7_1" = callPackage + ({ mkDerivation, base, blaze-markup, bytestring, Chart, colour + , containers, data-default-class, diagrams-core, diagrams-lib + , diagrams-postscript, diagrams-svg, lens, mtl, old-locale + , operational, svg-builder, SVGFonts, text, time + }: + mkDerivation { + pname = "Chart-diagrams"; + version = "1.7.1"; + sha256 = "d88af0adbe2bd9e208bcd27fda55810031ce09438801fc2bc25da15c414805c5"; + libraryHaskellDepends = [ + base blaze-markup bytestring Chart colour containers + data-default-class diagrams-core diagrams-lib diagrams-postscript + diagrams-svg lens mtl old-locale operational svg-builder SVGFonts + text time + ]; + jailbreak = true; + homepage = "https://github.com/timbod7/haskell-chart/wiki"; + description = "Diagrams backend for Charts"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Chart-gtk" = callPackage ({ mkDerivation, array, base, cairo, Chart, Chart-cairo, colour , data-default-class, gtk, mtl, old-locale, time }: mkDerivation { pname = "Chart-gtk"; - version = "1.6"; - sha256 = "f566a4fbdfcca207640a76e2c953617b27954e3f49258c7ab425270379b954c7"; + version = "1.7"; + sha256 = "6adba9e92f11cebba5b3487352bd4a750b325b5fe0e17b1dfd02a920618d9991"; libraryHaskellDepends = [ array base cairo Chart Chart-cairo colour data-default-class gtk mtl old-locale time ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Utility functions for using the chart library with GTK"; license = stdenv.lib.licenses.bsd3; @@ -7435,15 +7521,17 @@ self: { }) {}; "Gifcurry" = callPackage - ({ mkDerivation, base, directory, gtk3, process, temporary }: + ({ mkDerivation, base, cmdargs, directory, gtk3, process, temporary + }: mkDerivation { pname = "Gifcurry"; - version = "0.1.1.0"; - sha256 = "21f72f6c440eec80cb2e7df3fc8ed65124b64ab45ba55b4adf5dfccdca0e257a"; - isLibrary = false; + version = "2.0.0.0"; + sha256 = "c6a13b6a4f1fcaf3d24428862222f52d383570eb4d5872e21cb5e2882d936809"; + isLibrary = true; isExecutable = true; + libraryHaskellDepends = [ base directory process temporary ]; executableHaskellDepends = [ - base directory gtk3 process temporary + base cmdargs directory gtk3 process temporary ]; homepage = "https://github.com/lettier/gifcurry"; description = "Create animated GIFs, overlaid with optional text, from video files"; @@ -9220,6 +9308,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "HSet" = callPackage + ({ mkDerivation, base, containers, hashable, hashtables }: + mkDerivation { + pname = "HSet"; + version = "0.0.0"; + sha256 = "8b336a5f5c68d23683b7f69a5fcc02c7a9f869b7570799cf81cd26c37ea70426"; + libraryHaskellDepends = [ base containers hashable hashtables ]; + description = "Faux heterogeneous sets"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "HSlippyMap" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -10685,7 +10784,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "HaskellNet-SSL" = callPackage + "HaskellNet-SSL_0_3_2_1" = callPackage ({ mkDerivation, base, bytestring, connection, data-default , HaskellNet, network, tls }: @@ -10699,6 +10798,23 @@ self: { homepage = "https://github.com/dpwright/HaskellNet-SSL"; description = "Helpers to connect to SSL/TLS mail servers with HaskellNet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "HaskellNet-SSL" = callPackage + ({ mkDerivation, base, bytestring, connection, data-default + , HaskellNet, network, tls + }: + mkDerivation { + pname = "HaskellNet-SSL"; + version = "0.3.3.0"; + sha256 = "177d462b939dcb1ebab9cabf5ab5d49d969c80a8de1732bc6e1613780b8fd5f4"; + libraryHaskellDepends = [ + base bytestring connection data-default HaskellNet network tls + ]; + homepage = "https://github.com/dpwright/HaskellNet-SSL"; + description = "Helpers to connect to SSL/TLS mail servers with HaskellNet"; + license = stdenv.lib.licenses.bsd3; }) {}; "HaskellTorrent" = callPackage @@ -14093,7 +14209,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "MonadRandom" = callPackage + "MonadRandom_0_4_2_2" = callPackage ({ mkDerivation, base, mtl, random, transformers , transformers-compat }: @@ -14106,9 +14222,10 @@ self: { ]; description = "Random-number generation monad"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "MonadRandom_0_4_2_3" = callPackage + "MonadRandom" = callPackage ({ mkDerivation, base, mtl, random, transformers , transformers-compat }: @@ -14121,7 +14238,6 @@ self: { ]; description = "Random-number generation monad"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadRandomLazy" = callPackage @@ -15997,13 +16113,12 @@ self: { }: mkDerivation { pname = "PerfectHash"; - version = "0.1.4"; - sha256 = "76de68a4acda732bff57a13b6a7855469e9924569206b02eb401498f362d40c2"; + version = "0.1.5"; + sha256 = "3c59408ee1d6fef7a6f8d5c778947503a6eb21c861d0a9ad9be39847ae75173a"; libraryHaskellDepends = [ array base binary bytestring containers digest time ]; librarySystemDepends = [ cmph ]; - jailbreak = true; description = "A perfect hashing library for mapping bytestrings to values"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -16459,6 +16574,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "QLearn" = callPackage + ({ mkDerivation, base, random, vector }: + mkDerivation { + pname = "QLearn"; + version = "0.1.0.0"; + sha256 = "87d899997011c59e0f1f1a7efa434aa026e5c67f13681cdbe68ac8d300db736d"; + libraryHaskellDepends = [ base random vector ]; + homepage = "poincare.github.io/QLearn"; + description = "A library for fast, easy-to-use Q-learning"; + license = stdenv.lib.licenses.mit; + }) {}; + "QuadEdge" = callPackage ({ mkDerivation, base, random, vector }: mkDerivation { @@ -16934,8 +17061,8 @@ self: { }: mkDerivation { pname = "RNAlien"; - version = "1.1.1"; - sha256 = "975a187bbe34324b62e57fb132e9dd38ada86409bb010b1631c8c5b86346ebee"; + version = "1.1.3"; + sha256 = "d7d0c3fdbac52be1df3c122a400c3471c6bdeed5e148b742fb77364751029e5d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -21968,6 +22095,8 @@ self: { pname = "accelerate-examples"; version = "0.15.1.0"; sha256 = "2191601709da693aedb29f570e44b899b5132d2bc05fe618bc93608a43fec4a2"; + revision = "1"; + editedCabalFile = "77df83db322287253ea831448eced5c2adff5fe3edc413392cfb0eb8bdb0833b"; configureFlags = [ "-f-opencl" ]; isLibrary = true; isExecutable = true; @@ -21985,6 +22114,7 @@ self: { repa-io test-framework test-framework-hunit test-framework-quickcheck2 vector vector-algorithms ]; + jailbreak = true; homepage = "https://github.com/AccelerateHS/accelerate-examples"; description = "Examples using the Accelerate library"; license = stdenv.lib.licenses.bsd3; @@ -22826,7 +22956,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "active" = callPackage + "active_0_2_0_8" = callPackage ({ mkDerivation, base, lens, linear, QuickCheck, semigroupoids , semigroups, vector }: @@ -22842,6 +22972,25 @@ self: { ]; description = "Abstractions for animation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "active" = callPackage + ({ mkDerivation, base, lens, linear, QuickCheck, semigroupoids + , semigroups, vector + }: + mkDerivation { + pname = "active"; + version = "0.2.0.9"; + sha256 = "b0d1f0f60abccf913da8a14d83672333ca4b0b55346a43d7de2656bdb8926b75"; + libraryHaskellDepends = [ + base lens linear semigroupoids semigroups vector + ]; + testHaskellDepends = [ + base lens linear QuickCheck semigroupoids semigroups vector + ]; + description = "Abstractions for animation"; + license = stdenv.lib.licenses.bsd3; }) {}; "activehs" = callPackage @@ -23445,8 +23594,8 @@ self: { }: mkDerivation { pname = "aeson"; - version = "0.11.1.4"; - sha256 = "59ee31bb0fe71ae68bbfa3f3b977443ff200c6dfaaa442485e7295a75fcf7845"; + version = "0.11.2.0"; + sha256 = "447a454b51b8d6ca9e3b59bc5918115a880a9320afeb9030000fe6c87fd2285e"; libraryHaskellDepends = [ attoparsec base bytestring containers deepseq dlist fail ghc-prim hashable mtl scientific semigroups syb tagged template-haskell text @@ -23596,6 +23745,36 @@ self: { tasty-quickcheck text time time-locale-compat unordered-containers vector ]; + jailbreak = true; + 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_0_3_2_0" = 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.2.0"; + sha256 = "ab594edc5bb15e42975536e689485d0b356d25727b0645d7bfd2f4fa9e27d338"; + 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 + ]; + jailbreak = true; homepage = "https://github.com/phadej/aeson-compat#readme"; description = "Compatibility layer for aeson"; license = stdenv.lib.licenses.bsd3; @@ -23611,8 +23790,8 @@ self: { }: mkDerivation { pname = "aeson-compat"; - version = "0.3.2.0"; - sha256 = "ab594edc5bb15e42975536e689485d0b356d25727b0645d7bfd2f4fa9e27d338"; + version = "0.3.3.0"; + sha256 = "33a6a4c8d41b3ee08432c1ed0f118b595cd582cffb81b8621ad0bbd3164eb7e4"; libraryHaskellDepends = [ aeson attoparsec base base-compat bytestring containers exceptions hashable nats scientific semigroups tagged text time @@ -24389,24 +24568,6 @@ self: { }) {}; "agda-snippets-hakyll" = callPackage - ({ mkDerivation, agda-snippets, base, directory, filepath, hakyll - , network-uri, pandoc, pandoc-types - }: - mkDerivation { - pname = "agda-snippets-hakyll"; - version = "0.1.2.0"; - sha256 = "83829a3599fe61a81747e7054659902fbf7258cf08fb61dd6fc47fae06e699d9"; - libraryHaskellDepends = [ - agda-snippets base directory filepath hakyll network-uri pandoc - pandoc-types - ]; - homepage = "https://github.com/liamoc/agda-snippets#readme"; - description = "Literate Agda support using agda-snippets, for Hakyll pages"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - - "agda-snippets-hakyll_0_1_2_1" = callPackage ({ mkDerivation, agda-snippets, base, directory, filepath, hakyll , network-uri, pandoc, pandoc-types }: @@ -30645,6 +30806,29 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "annah" = callPackage + ({ mkDerivation, alex, array, base, Earley, lens-family-core, morte + , optparse-applicative, pipes, system-fileio, system-filepath, text + , text-format, transformers + }: + mkDerivation { + pname = "annah"; + version = "1.0.0"; + sha256 = "a07a92ebc41ac5af31cce2b41c9dd311f92ca52e05c2aaea756aebdcceb00389"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base Earley lens-family-core morte pipes system-filepath text + text-format transformers + ]; + libraryToolDepends = [ alex ]; + executableHaskellDepends = [ + base morte optparse-applicative system-fileio system-filepath text + ]; + description = "Medium-level language that desugars to Morte"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "annihilator" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -32015,8 +32199,8 @@ self: { }: mkDerivation { pname = "arb-fft"; - version = "0.2.0.2"; - sha256 = "b719edb18b07ec45ce091d9d0269b846e36844a63a2da2f613bd87b3bf53b0fb"; + version = "0.3.0.0"; + sha256 = "4788916d5a3a5a5844ff1cf0b3a28d577aeacd3c214b58ccaee7552bd3c40fcc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -32027,7 +32211,6 @@ self: { testHaskellDepends = [ base containers QuickCheck tasty tasty-quickcheck vector ]; - jailbreak = true; homepage = "https://github.com/ian-ross/arb-fft"; description = "Pure Haskell arbitrary length FFT library"; license = stdenv.lib.licenses.bsd3; @@ -33535,7 +33718,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "async-dejafu" = callPackage + "async-dejafu_0_1_0_0" = callPackage ({ mkDerivation, base, dejafu, exceptions, HUnit, hunit-dejafu }: mkDerivation { pname = "async-dejafu"; @@ -33546,21 +33729,20 @@ self: { homepage = "https://github.com/barrucadu/dejafu"; description = "Run MonadConc operations asynchronously and wait for their results"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "async-dejafu_0_1_1_0" = callPackage + "async-dejafu" = callPackage ({ mkDerivation, base, dejafu, exceptions, HUnit, hunit-dejafu }: mkDerivation { pname = "async-dejafu"; - version = "0.1.1.0"; - sha256 = "13a3b0bd80363d90fee27abcab299082b4947bf1197716e9f7df9dbace306595"; + version = "0.1.2.1"; + sha256 = "084e4e8345ed6d4e4d2d9dc840e6c471384ae6ac51d9678ac5e82246a359d39d"; libraryHaskellDepends = [ base dejafu exceptions ]; testHaskellDepends = [ base dejafu HUnit hunit-dejafu ]; - jailbreak = true; homepage = "https://github.com/barrucadu/dejafu"; description = "Run MonadConc operations asynchronously and wait for their results"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "async-extras" = callPackage @@ -34146,7 +34328,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "attoparsec" = callPackage + "attoparsec_0_13_0_1" = callPackage ({ mkDerivation, array, base, bytestring, containers, deepseq , QuickCheck, quickcheck-unicode, scientific, test-framework , test-framework-quickcheck2, text, transformers, vector @@ -34167,9 +34349,10 @@ self: { homepage = "https://github.com/bos/attoparsec"; description = "Fast combinator parsing for bytestrings and text"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "attoparsec_0_13_0_2" = callPackage + "attoparsec" = callPackage ({ mkDerivation, array, base, bytestring, containers, deepseq , QuickCheck, quickcheck-unicode, scientific, tasty , tasty-quickcheck, text, transformers, vector @@ -34189,7 +34372,6 @@ self: { homepage = "https://github.com/bos/attoparsec"; description = "Fast combinator parsing for bytestrings and text"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-arff" = callPackage @@ -34716,7 +34898,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "auto-update" = callPackage + "auto-update_0_1_3" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "auto-update"; @@ -34726,14 +34908,27 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Efficiently run periodic, on-demand actions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "auto-update" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "auto-update"; + version = "0.1.3.1"; + sha256 = "01367ac53d1951ffdccfccbf338d00d3605967cf717f2404b9901a206385427c"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/yesodweb/wai"; + description = "Efficiently run periodic, on-demand actions"; + license = stdenv.lib.licenses.mit; }) {}; "autoexporter" = callPackage ({ mkDerivation, base, Cabal, directory, filepath }: mkDerivation { pname = "autoexporter"; - version = "0.2.0"; - sha256 = "e4c0145475197dd5dd61639d88c406090d472daa7bac28e9be70a230994bb8db"; + version = "0.2.2"; + sha256 = "2ad4c6d948984c0a5542f5ce87d806b3597088083bc179217d36d08380880d03"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base Cabal directory filepath ]; @@ -34743,22 +34938,6 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "autoexporter_0_2_1" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath }: - mkDerivation { - pname = "autoexporter"; - version = "0.2.1"; - sha256 = "fe46d1f434862dfaa4fd245c66d4a96ea8c4f3f8c3314ca6fc844e97e71097e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal directory filepath ]; - executableHaskellDepends = [ base ]; - homepage = "https://github.com/tfausak/autoexporter#readme"; - description = "Automatically re-export modules"; - license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "automitive-cse" = callPackage ({ mkDerivation, base, bytestring, cereal, cryptonite, memory , quickcheck-simple @@ -34783,8 +34962,8 @@ self: { }: mkDerivation { pname = "automotive-cse"; - version = "0.1.2.0"; - sha256 = "97873ddb30997908e2e82d30a8ffff21d16280efa3be2b9985d69794ccfc515a"; + version = "0.1.3.0"; + sha256 = "71b59c50b29748ae5991d53af5a7bed6ee283942e1df69c0b3c9da8107d06b9c"; libraryHaskellDepends = [ base bytestring bytestring-short cereal cryptonite memory ]; @@ -36173,7 +36352,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "b9" = callPackage + "b9_0_5_18" = callPackage ({ mkDerivation, aeson, async, base, bifunctors, binary, boxes , bytestring, conduit, conduit-extra, ConfigFile, directory , filepath, free, hashable, hspec, hspec-expectations, mtl @@ -36204,6 +36383,40 @@ 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" = 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.19"; + sha256 = "ea2706b4b0729a3250b6b5da718fb70845df9594eda7c7fb633cdb7eb53b3b56"; + 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; }) {}; "babylon" = callPackage @@ -37634,6 +37847,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bcrypt_0_0_9" = callPackage + ({ mkDerivation, base, bytestring, data-default, entropy, memory }: + mkDerivation { + pname = "bcrypt"; + version = "0.0.9"; + sha256 = "33b87031fe80d2be666df7e892b11dcb35f630d7fb93dd95e3920d86b5c91553"; + libraryHaskellDepends = [ + base bytestring data-default entropy memory + ]; + jailbreak = true; + description = "Haskell bindings to the bcrypt password hash"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "bdd" = callPackage ({ mkDerivation, base, directory, HUnit, mtl, process , test-framework, test-framework-hunit, transformers @@ -38487,15 +38715,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary_0_8_2_1" = callPackage + "binary_0_8_3_0" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, filepath, HUnit, QuickCheck, random, test-framework , test-framework-quickcheck2 }: mkDerivation { pname = "binary"; - version = "0.8.2.1"; - sha256 = "2452e32eccfe74214f689805745a11de1018f22eb19682772df23cce8816b750"; + version = "0.8.3.0"; + sha256 = "221385dde77d92f786c665ee6fce0a3beeb80e6a812b8edf9ded1b653f2ea821"; + revision = "1"; + editedCabalFile = "21a7449af6a6caa19c3b5c877c2331ccd3842ef1e9ab59c65918fbde0f6ac427"; libraryHaskellDepends = [ array base bytestring containers ]; testHaskellDepends = [ array base bytestring Cabal containers directory filepath HUnit @@ -38777,8 +39007,8 @@ self: { pname = "binary-orphans"; version = "0.1.4.0"; sha256 = "0a952a7521747a7aacf4aa1638674130262f2efacb7121727c1932d49017f742"; - revision = "5"; - editedCabalFile = "76b1ba2893085236d9989cf697d01fca25c7980563c5b5c452a133aeefec2b0d"; + revision = "6"; + editedCabalFile = "6353827d50132789cb11f3d5fb6c9ec22a36f8f7a38559e6138d2212572be253"; libraryHaskellDepends = [ aeson base binary hashable scientific semigroups tagged text text-binary time unordered-containers vector @@ -40895,8 +41125,8 @@ self: { }: mkDerivation { pname = "bitx-bitcoin"; - version = "0.7.0.1"; - sha256 = "808cce7f13d11c7ea5424fa017aada13e787dca3dafe67100e303e976dc6382e"; + version = "0.7.0.2"; + sha256 = "f86b55294f029255a5329137b3f075daf495a1f7f462aed66ac273f368985d02"; libraryHaskellDepends = [ aeson base bytestring http-client http-client-tls http-types microlens microlens-th network QuickCheck scientific split text @@ -42227,19 +42457,18 @@ self: { "bond" = callPackage ({ mkDerivation, aeson, async, base, bytestring, cmdargs, derive , Diff, directory, filepath, HUnit, monad-loops, mtl, parsec - , pretty, process, QuickCheck, shakespeare, tasty, tasty-golden - , tasty-hunit, tasty-quickcheck, text + , pretty, process, QuickCheck, scientific, shakespeare, tasty + , tasty-golden, tasty-hunit, tasty-quickcheck, text }: mkDerivation { pname = "bond"; - version = "0.4.0.1"; - sha256 = "40d7f0ddcb4779d16ce3ce94bb0f0d2ea47d6d2c82f296027cd3d068be0622c8"; - revision = "1"; - editedCabalFile = "f90dcbaa3a55c1918957942c01f21a574c268730f37aff34c19a6cd04b4ccc6d"; + version = "0.4.0.2"; + sha256 = "866c6880600baa54114914e005dd994bacc33377470bd31405bda0c9f47a3825"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bytestring filepath mtl parsec shakespeare text + aeson base bytestring filepath mtl parsec scientific shakespeare + text ]; executableHaskellDepends = [ aeson async base bytestring cmdargs directory filepath monad-loops @@ -43470,8 +43699,8 @@ self: { pname = "bumper"; version = "0.6.0.3"; sha256 = "7cfce3a38be30744a2eb322ad1e5271cd665fa62b4fe21bdf9aa00fcdbc4daa8"; - revision = "1"; - editedCabalFile = "d5083fd8bd41bdd8a9afb459891d3fbfd674b5279b30993928690410808a2af0"; + revision = "2"; + editedCabalFile = "bab175b04d4877724879ff0951490a7e0f5b98c3c99f802649e9b3db52c4db78"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -44842,7 +45071,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cabal-debian" = callPackage + "cabal-debian_4_32_2" = callPackage ({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal , containers, data-default, debian, deepseq, Diff, directory , exceptions, filepath, hsemail, HUnit, lens, memoize, mtl @@ -44874,6 +45103,41 @@ self: { homepage = "https://github.com/ddssff/cabal-debian"; description = "Create a Debianization for a Cabal package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cabal-debian" = callPackage + ({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal + , containers, data-default, debian, deepseq, Diff, directory + , exceptions, filepath, hsemail, HUnit, lens, memoize, mtl + , network-uri, newtype-generics, optparse-applicative, parsec + , pretty, process, pureMD5, regex-tdfa, set-extra, syb, text, unix + , Unixutils, utf8-string + }: + mkDerivation { + pname = "cabal-debian"; + version = "4.32.3"; + sha256 = "f75c98fdef25568683f1783e3ea8537bdea7395abf30d402d4a41b59ecb6a6b2"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ansi-wl-pprint base bifunctors Cabal containers data-default debian + deepseq Diff directory exceptions filepath hsemail HUnit lens + memoize mtl network-uri newtype-generics optparse-applicative + parsec pretty process pureMD5 regex-tdfa set-extra syb text unix + Unixutils utf8-string + ]; + executableHaskellDepends = [ + base Cabal debian lens mtl pretty Unixutils + ]; + testHaskellDepends = [ + base Cabal containers debian Diff directory filepath hsemail HUnit + lens pretty process text + ]; + doCheck = false; + homepage = "https://github.com/ddssff/cabal-debian"; + description = "Create a Debianization for a Cabal package"; + license = stdenv.lib.licenses.bsd3; }) {}; "cabal-dependency-licenses" = callPackage @@ -45425,6 +45689,44 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; + "cabal-install_1_24_0_0" = callPackage + ({ mkDerivation, array, async, base, base16-bytestring, binary + , bytestring, Cabal, containers, cryptohash-sha256, directory + , filepath, hackage-security, hashable, HTTP, mtl, network + , network-uri, pretty, process, QuickCheck, random, regex-posix + , stm, tagged, tar, tasty, tasty-hunit, tasty-quickcheck, time + , unix, zlib + }: + mkDerivation { + pname = "cabal-install"; + version = "1.24.0.0"; + sha256 = "d840ecfd0a95a96e956b57fb2f3e9c81d9fc160e1fd0ea350b0d37d169d9e87e"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + array async base base16-bytestring binary bytestring Cabal + containers cryptohash-sha256 directory filepath hackage-security + hashable HTTP mtl network network-uri pretty process random stm tar + time unix zlib + ]; + testHaskellDepends = [ + array async base binary bytestring Cabal containers directory + filepath hackage-security hashable HTTP mtl network network-uri + pretty process QuickCheck random regex-posix stm tagged tar tasty + tasty-hunit tasty-quickcheck time unix zlib + ]; + jailbreak = true; + postInstall = '' + mkdir $out/etc + mv bash-completion $out/etc/bash_completion.d + ''; + homepage = "http://www.haskell.org/cabal/"; + description = "The command-line interface for Cabal and Hackage"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ simons ]; + }) {}; + "cabal-install-bundle" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, filepath, old-time, pretty, process, time, unix, zlib @@ -47189,19 +47491,24 @@ self: { "casadi-bindings" = callPackage ({ mkDerivation, base, binary, casadi, casadi-bindings-core - , casadi-bindings-internal, cereal, containers, doctest, linear - , spatial-math, vector, vector-binary-instances + , casadi-bindings-internal, cereal, containers, doctest, HUnit + , linear, QuickCheck, spatial-math, test-framework + , test-framework-hunit, test-framework-quickcheck2, vector + , vector-binary-instances }: mkDerivation { pname = "casadi-bindings"; - version = "2.4.1.9"; - sha256 = "a5156237cfb2bf64bcee8b1e408ace7b4c69d69733a129ab7d0b15436dab3acd"; + version = "3.0.0.1"; + sha256 = "87ad635f973a69820c4238ba634f8c4f9ece450d994b4c31f83a8cbcf2a791cc"; libraryHaskellDepends = [ base binary casadi-bindings-core casadi-bindings-internal cereal containers linear spatial-math vector vector-binary-instances ]; libraryPkgconfigDepends = [ casadi ]; - testHaskellDepends = [ base doctest ]; + testHaskellDepends = [ + base containers doctest HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 vector + ]; homepage = "http://github.com/ghorn/casadi-bindings"; description = "mid-level bindings to CasADi"; license = stdenv.lib.licenses.gpl3; @@ -47232,8 +47539,8 @@ self: { }: mkDerivation { pname = "casadi-bindings-core"; - version = "2.4.1.0"; - sha256 = "f35fdfc2d8d33c5455d3e7dccce341332c0620db0445f99386f1e7920e053b6c"; + version = "3.0.0.0"; + sha256 = "8cd59ae975cc1de7db78ac59f6212f2523bdf723a782a9ce0c0b47922fdf31be"; libraryHaskellDepends = [ base casadi-bindings-internal containers vector ]; @@ -47247,8 +47554,8 @@ self: { ({ mkDerivation, base, casadi, containers, vector }: mkDerivation { pname = "casadi-bindings-internal"; - version = "0.1.3.1"; - sha256 = "7170eebb779a1e0dc18dc26edd55e7136978a1e24624c9953ddc5aee60f1e3a0"; + version = "0.1.4.0"; + sha256 = "c5a48653c1f893618287adad1979ee684064daeb9b060294d65a0bea6e378976"; libraryHaskellDepends = [ base containers vector ]; libraryPkgconfigDepends = [ casadi ]; homepage = "http://github.com/ghorn/casadi-bindings"; @@ -48005,6 +48312,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "category-printf" = callPackage + ({ mkDerivation, base, bytestring, comonad, text }: + mkDerivation { + pname = "category-printf"; + version = "0.1.0.0"; + sha256 = "e954c7ab4970551a334fae1fc4ef98f56c65290b366f17cfb00df85f93bd90e2"; + libraryHaskellDepends = [ base bytestring comonad text ]; + jailbreak = true; + description = "Highbrow approach to type-safe printf format specifications"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "category-traced" = callPackage ({ mkDerivation, base, categories }: mkDerivation { @@ -49024,7 +49343,7 @@ self: { license = stdenv.lib.licenses.agpl3; }) {}; - "cheapskate" = callPackage + "cheapskate_0_1_0_4" = callPackage ({ mkDerivation, aeson, base, blaze-html, bytestring, containers , data-default, http-types, mtl, syb, text, uniplate, wai , wai-extra, xss-sanitize @@ -49045,9 +49364,10 @@ self: { homepage = "http://github.com/jgm/cheapskate"; description = "Experimental markdown processor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cheapskate_0_1_0_5" = callPackage + "cheapskate" = callPackage ({ mkDerivation, aeson, base, blaze-html, bytestring, containers , data-default, http-types, mtl, syb, text, uniplate, wai , wai-extra, xss-sanitize @@ -49068,7 +49388,6 @@ self: { homepage = "http://github.com/jgm/cheapskate"; description = "Experimental markdown processor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cheapskate-highlight" = callPackage @@ -49859,6 +50178,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "circlehs" = callPackage + ({ mkDerivation, aeson, base, http-client, http-client-tls, mtl + , servant, servant-client, text, time, transformers + , unordered-containers + }: + mkDerivation { + pname = "circlehs"; + version = "0.0.3"; + sha256 = "aa5906bc29992227953845a4b39da6e3faf78a4520d5a85b2e0266daa0013ecf"; + libraryHaskellDepends = [ + aeson base http-client http-client-tls mtl servant servant-client + text time transformers unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/denisshevchenko/circlehs"; + description = "The CircleCI REST API for Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + "cirru-parser" = callPackage ({ mkDerivation, aeson, base, text, vector }: mkDerivation { @@ -52808,7 +53146,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clock" = callPackage + "clock_0_5_1" = callPackage ({ mkDerivation, base, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; @@ -52816,10 +53154,10 @@ self: { sha256 = "7c7a1f89bc4fa2f995d31a214bb7e3ad44c3570cb46b8f18e7de6011f78197d9"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-quickcheck ]; - doCheck = false; homepage = "https://github.com/corsis/clock"; description = "High-resolution clock functions: monotonic, realtime, cputime"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clock_0_6_0_1" = callPackage @@ -52837,7 +53175,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clock_0_7_2" = callPackage + "clock" = callPackage ({ mkDerivation, base, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; @@ -52845,10 +53183,10 @@ self: { sha256 = "886601978898d3a91412fef895e864576a7125d661e1f8abc49a2a08840e691f"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-quickcheck ]; + doCheck = false; homepage = "https://github.com/corsis/clock"; description = "High-resolution clock functions: monotonic, realtime, cputime"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clocked" = callPackage @@ -53364,6 +53702,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "cmph" = callPackage + ({ mkDerivation, array, base, bytestring, cmph, containers, hspec + , QuickCheck, semigroups, text + }: + mkDerivation { + pname = "cmph"; + version = "0.0.1"; + sha256 = "6308ca284f03d6b6a7cd2664bdab2e503079096a8457d95ff45ac305dfac923c"; + libraryHaskellDepends = [ array base bytestring containers ]; + librarySystemDepends = [ cmph ]; + testHaskellDepends = [ + base bytestring containers hspec QuickCheck semigroups text + ]; + testSystemDepends = [ cmph ]; + description = "low level interface to CMPH"; + license = stdenv.lib.licenses.bsd3; + }) {cmph = null;}; + "cmu" = callPackage ({ mkDerivation, array, base, containers }: mkDerivation { @@ -55300,7 +55656,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "concurrent-output" = callPackage + "concurrent-output_1_7_4" = callPackage ({ mkDerivation, ansi-terminal, async, base, directory, exceptions , process, stm, terminal-size, text, transformers, unix }: @@ -55314,6 +55670,23 @@ self: { ]; description = "Ungarble output from several threads or commands"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "concurrent-output" = callPackage + ({ mkDerivation, ansi-terminal, async, base, directory, exceptions + , process, stm, terminal-size, text, transformers, unix + }: + mkDerivation { + pname = "concurrent-output"; + version = "1.7.6"; + sha256 = "ca3668dad7999dd1366582bff46ef3a50ba8ce9a775a812883094db92adac6a5"; + libraryHaskellDepends = [ + ansi-terminal async base directory exceptions process stm + terminal-size text transformers unix + ]; + description = "Ungarble output from several threads or commands"; + license = stdenv.lib.licenses.bsd2; }) {}; "concurrent-rpc" = callPackage @@ -56492,7 +56865,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit-parse" = callPackage + "conduit-parse_0_1_1_0" = callPackage ({ mkDerivation, base, conduit, dlist, exceptions, hlint, mtl , parsers, resourcet, tasty, tasty-hunit, text, transformers }: @@ -56510,6 +56883,27 @@ self: { homepage = "https://github.com/k0ral/conduit-parse"; description = "Parsing framework based on conduit"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "conduit-parse" = callPackage + ({ mkDerivation, base, conduit, dlist, exceptions, hlint, mtl + , parsers, resourcet, tasty, tasty-hunit, text, transformers + }: + mkDerivation { + pname = "conduit-parse"; + version = "0.1.1.1"; + sha256 = "4366a66f5980bd328730c5d44b99f67d7081e5ef76b554bc8284942bf9977f4a"; + libraryHaskellDepends = [ + base conduit dlist exceptions mtl parsers text transformers + ]; + testHaskellDepends = [ + base conduit exceptions hlint mtl parsers resourcet tasty + tasty-hunit + ]; + homepage = "https://github.com/k0ral/conduit-parse"; + description = "Parsing framework based on conduit"; + license = "unknown"; }) {}; "conduit-resumablesink" = callPackage @@ -57184,8 +57578,8 @@ self: { }: mkDerivation { pname = "consumers"; - version = "1.0"; - sha256 = "2bc2a6c50462d734a82487cad419e48835d016747cb4f3a5fdda252569b2f2b8"; + version = "1.1"; + sha256 = "0a0c574fcc036653364d75f7ec597310bf8e0952acd9de97f97febb7d7cc958c"; libraryHaskellDepends = [ base containers exceptions hpqtypes lifted-base lifted-threads log monad-control mtl stm time transformers-base @@ -57588,7 +57982,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "contravariant-extras" = callPackage + "contravariant-extras_0_3_1" = callPackage ({ mkDerivation, base, base-prelude, contravariant , template-haskell, tuple-th }: @@ -57602,6 +57996,23 @@ self: { homepage = "https://github.com/nikita-volkov/contravariant-extras"; description = "Extras for the \"contravariant\" package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "contravariant-extras" = callPackage + ({ mkDerivation, base-prelude, contravariant, template-haskell + , tuple-th + }: + mkDerivation { + pname = "contravariant-extras"; + version = "0.3.2"; + sha256 = "9fd92b6d240f9492c0474ce5261751ed9f01b6fd4292f0bbfc482e19d9012505"; + libraryHaskellDepends = [ + base-prelude contravariant template-haskell tuple-th + ]; + homepage = "https://github.com/nikita-volkov/contravariant-extras"; + description = "Extras for the \"contravariant\" package"; + license = stdenv.lib.licenses.mit; }) {}; "control-bool" = callPackage @@ -58064,7 +58475,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cookie" = callPackage + "cookie_0_4_1_6" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty , tasty-hunit, tasty-quickcheck, text, time @@ -58084,9 +58495,10 @@ self: { homepage = "http://github.com/snoyberg/cookie"; description = "HTTP cookie parsing and rendering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cookie_0_4_2" = callPackage + "cookie" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty , tasty-hunit, tasty-quickcheck, text, time @@ -58106,7 +58518,6 @@ self: { homepage = "http://github.com/snoyberg/cookie"; description = "HTTP cookie parsing and rendering"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coordinate" = callPackage @@ -61129,7 +61540,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ctrie" = callPackage + "ctrie_0_1_0_3" = callPackage ({ mkDerivation, atomic-primops, base, containers, hashable , primitive, QuickCheck, test-framework, test-framework-quickcheck2 }: @@ -61145,6 +61556,25 @@ self: { homepage = "https://github.com/mcschroeder/ctrie"; description = "Non-blocking concurrent map"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ctrie" = callPackage + ({ mkDerivation, atomic-primops, base, containers, hashable + , primitive, QuickCheck, test-framework, test-framework-quickcheck2 + }: + mkDerivation { + pname = "ctrie"; + version = "0.1.1.0"; + sha256 = "8434b34f6c5980a8885eb0565c0d421c825a2b30574a367db2d121ed42fa5bb8"; + libraryHaskellDepends = [ atomic-primops base hashable primitive ]; + testHaskellDepends = [ + base containers hashable QuickCheck test-framework + test-framework-quickcheck2 + ]; + homepage = "https://github.com/mcschroeder/ctrie"; + description = "Non-blocking concurrent map"; + license = stdenv.lib.licenses.mit; }) {}; "cube" = callPackage @@ -61569,6 +61999,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "d3d11binding" = callPackage + ({ mkDerivation, base, c-storable-deriving, d3d11, D3DCompiler + , d3dx11, d3dxof, dxgi, dxguid, Win32 + }: + mkDerivation { + pname = "d3d11binding"; + version = "0.0.0.3"; + sha256 = "f156ed2e733df23922146d95cc438647a3685382fad7db424ebc459847668282"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base c-storable-deriving Win32 ]; + librarySystemDepends = [ + d3d11 D3DCompiler d3dx11 d3dxof dxgi dxguid + ]; + executableHaskellDepends = [ base Win32 ]; + homepage = "https://github.com/jwvg0425/d3d11binding"; + description = "A raw binding for the directX 11"; + license = stdenv.lib.licenses.mit; + }) {D3DCompiler = null; d3d11 = null; d3dx11 = null; + d3dxof = null; dxgi = null; dxguid = null;}; + "d3js" = callPackage ({ mkDerivation, base, mtl, random, text }: mkDerivation { @@ -61778,7 +62229,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) curl;}; - "darcs" = callPackage + "darcs_2_10_3" = callPackage ({ mkDerivation, array, attoparsec, base, base16-bytestring, binary , bytestring, cmdargs, containers, cryptohash, curl, data-ordlist , directory, filepath, FindBin, hashable, haskeline, html, HTTP @@ -61822,6 +62273,51 @@ self: { homepage = "http://darcs.net/"; description = "a distributed, interactive, smart revision control system"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) curl;}; + + "darcs" = callPackage + ({ mkDerivation, array, async, attoparsec, base, base16-bytestring + , binary, bytestring, cmdargs, containers, cryptohash, curl + , data-ordlist, directory, fgl, filepath, FindBin, graphviz + , hashable, haskeline, html, HTTP, HUnit, mmap, mtl, network + , network-uri, old-time, parsec, process, QuickCheck, random + , regex-applicative, regex-compat-tdfa, sandi, shelly, split, tar + , terminfo, test-framework, test-framework-hunit + , test-framework-quickcheck2, text, time, transformers + , transformers-compat, unix, unix-compat, utf8-string, vector + , zip-archive, zlib + }: + mkDerivation { + pname = "darcs"; + version = "2.12.0"; + sha256 = "17318d1b49ca4b1aa00a4bffc2ab30a448e7440ce1945eed9bf382d77582308d"; + configureFlags = [ "-fforce-char8-encoding" "-flibrary" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array async attoparsec base base16-bytestring binary bytestring + containers cryptohash data-ordlist directory fgl filepath graphviz + hashable haskeline html HTTP mmap mtl network network-uri old-time + parsec process random regex-applicative regex-compat-tdfa sandi tar + terminfo text time transformers transformers-compat unix + unix-compat utf8-string vector zip-archive zlib + ]; + librarySystemDepends = [ curl ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + array base bytestring cmdargs containers directory filepath FindBin + HUnit mtl QuickCheck shelly split test-framework + test-framework-hunit test-framework-quickcheck2 text zip-archive + ]; + doCheck = false; + postInstall = '' + mkdir -p $out/etc/bash_completion.d + mv contrib/darcs_completion $out/etc/bash_completion.d/darcs + ''; + homepage = "http://darcs.net/"; + description = "a distributed, interactive, smart revision control system"; + license = "GPL"; }) {inherit (pkgs) curl;}; "darcs-benchmark" = callPackage @@ -64193,12 +64689,11 @@ self: { }: mkDerivation { pname = "ddc-base"; - version = "0.4.1.3"; - sha256 = "d5e178099df92c82edf41999f01c292b19602e9cb7d599ada4284bc5dc9e78ec"; + version = "0.4.2.1"; + sha256 = "0870bebdecf1f86a9280d1ca5addf382ad3af75c502ecebf448a64cf9402b3fc"; libraryHaskellDepends = [ base containers deepseq parsec transformers wl-pprint ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler common utilities"; license = stdenv.lib.licenses.mit; @@ -64206,20 +64701,19 @@ self: { "ddc-build" = callPackage ({ mkDerivation, base, containers, ddc-base, ddc-core - , ddc-core-eval, ddc-core-flow, ddc-core-llvm, ddc-core-salt + , ddc-core-babel, ddc-core-flow, ddc-core-llvm, ddc-core-salt , ddc-core-simpl, ddc-core-tetra, ddc-source-tetra, deepseq - , directory, filepath, mtl, process + , directory, filepath, mtl, process, time }: mkDerivation { pname = "ddc-build"; - version = "0.4.1.3"; - sha256 = "5a3a6488df40354294bea963e5432909e5bbdc6381e1a41e54e122f2526e7295"; + version = "0.4.2.1"; + sha256 = "2704257a4e47a432e0b4873297d833910f86435e7fd1add4530089849313f8ad"; libraryHaskellDepends = [ - base containers ddc-base ddc-core ddc-core-eval ddc-core-flow + base containers ddc-base ddc-core ddc-core-babel ddc-core-flow ddc-core-llvm ddc-core-salt ddc-core-simpl ddc-core-tetra - ddc-source-tetra deepseq directory filepath mtl process + ddc-source-tetra deepseq directory filepath mtl process time ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler build framework"; license = stdenv.lib.licenses.mit; @@ -64230,10 +64724,9 @@ self: { ({ mkDerivation, base, filepath }: mkDerivation { pname = "ddc-code"; - version = "0.4.1.3"; - sha256 = "d9bceabc172cc9ab9ca9404971edd8ee657a5ff0017d9ae5545f33a1832520d5"; + version = "0.4.2.1"; + sha256 = "2584b9433a6b37233ce3a69dbcbb5f93b6014c39a5163a0bdee3b894477326a9"; libraryHaskellDepends = [ base filepath ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler base libraries"; license = stdenv.lib.licenses.mit; @@ -64241,22 +64734,38 @@ self: { "ddc-core" = callPackage ({ mkDerivation, array, base, containers, ddc-base, deepseq - , directory, mtl, transformers + , directory, mtl, text, transformers }: mkDerivation { pname = "ddc-core"; - version = "0.4.1.3"; - sha256 = "a5b5f0c484379060149efc82f6f704abf64691cb126c687c5d1adf311f0b4595"; + version = "0.4.2.1"; + sha256 = "9d6513e58ea47b5640d579ab655d2f13d5a9070f3ea2f34719cf9b9e1b43b874"; libraryHaskellDepends = [ - array base containers ddc-base deepseq directory mtl transformers + array base containers ddc-base deepseq directory mtl text + transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler core language and type checker"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "ddc-core-babel" = callPackage + ({ mkDerivation, base, containers, ddc-base, ddc-core + , ddc-core-tetra + }: + mkDerivation { + pname = "ddc-core-babel"; + version = "0.4.2.1"; + sha256 = "28f6950b26e2164936fa7669c770178d8b4c17094fe2533f6dcf7a4913202f06"; + libraryHaskellDepends = [ + base containers ddc-base ddc-core ddc-core-tetra + ]; + homepage = "http://disciple.ouroborus.net"; + description = "Disciplined Disciple Compiler PHP code generator"; + license = stdenv.lib.licenses.mit; + }) {}; + "ddc-core-eval" = callPackage ({ mkDerivation, array, base, containers, ddc-base, ddc-core , deepseq, mtl, transformers @@ -64277,17 +64786,18 @@ self: { "ddc-core-flow" = callPackage ({ mkDerivation, array, base, containers, ddc-base, ddc-core - , ddc-core-salt, ddc-core-simpl, deepseq, mtl, transformers + , ddc-core-salt, ddc-core-simpl, ddc-core-tetra, deepseq, limp + , limp-cbc, mtl, transformers }: mkDerivation { pname = "ddc-core-flow"; - version = "0.4.1.3"; - sha256 = "de0981453dd7b22c81e7a598f8ae3764397ba29152cda5d18a850a764b4ffeeb"; + version = "0.4.2.1"; + sha256 = "6257d14ff70d3afd4544402a6d34ddd8b0780bded8de2b03e28d0a2d5433591f"; libraryHaskellDepends = [ array base containers ddc-base ddc-core ddc-core-salt - ddc-core-simpl deepseq mtl transformers + ddc-core-simpl ddc-core-tetra deepseq limp limp-cbc mtl + transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler data flow compiler"; license = stdenv.lib.licenses.mit; @@ -64295,18 +64805,17 @@ self: { }) {}; "ddc-core-llvm" = callPackage - ({ mkDerivation, array, base, containers, ddc-base, ddc-core - , ddc-core-salt, ddc-core-simpl, mtl, transformers + ({ mkDerivation, array, base, bytestring, containers, ddc-base + , ddc-core, ddc-core-salt, ddc-core-simpl, mtl, text, transformers }: mkDerivation { pname = "ddc-core-llvm"; - version = "0.4.1.3"; - sha256 = "654d4a10027c1afa17189be38d07246be1531e2e029b2a55e11b629a805f0c38"; + version = "0.4.2.1"; + sha256 = "83780f3d1ee27ee5d754ceb2e221c262280fcdf96b28691519859deb7bc7ea61"; libraryHaskellDepends = [ - array base containers ddc-base ddc-core ddc-core-salt - ddc-core-simpl mtl transformers + array base bytestring containers ddc-base ddc-core ddc-core-salt + ddc-core-simpl mtl text transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler LLVM code generator"; license = stdenv.lib.licenses.mit; @@ -64315,16 +64824,16 @@ self: { "ddc-core-salt" = callPackage ({ mkDerivation, array, base, containers, ddc-base, ddc-core - , deepseq, mtl, transformers + , deepseq, mtl, text, transformers }: mkDerivation { pname = "ddc-core-salt"; - version = "0.4.1.3"; - sha256 = "f8f8b3c30b91b3efb542e5b61a06e5dcd3e3f1de216a84af53cadc3f6ee79ea1"; + version = "0.4.2.1"; + sha256 = "2559640cfdf05ecf15eeb805826dca2c6603ee0b6b949259c4fb80cf1768689f"; libraryHaskellDepends = [ - array base containers ddc-base ddc-core deepseq mtl transformers + array base containers ddc-base ddc-core deepseq mtl text + transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler C code generator"; license = stdenv.lib.licenses.mit; @@ -64337,12 +64846,11 @@ self: { }: mkDerivation { pname = "ddc-core-simpl"; - version = "0.4.1.3"; - sha256 = "7f2dde9108f0a1cc90d447ddbc9f5f8cba207288d9fd6386afb8192828eb7978"; + version = "0.4.2.1"; + sha256 = "d8b5f4ca8b25dad680f91b0e9e6fe98c9c7594fc830be5e50dc10bb2c6889d39"; libraryHaskellDepends = [ array base containers ddc-base ddc-core deepseq mtl transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler code transformations"; license = stdenv.lib.licenses.mit; @@ -64351,17 +64859,17 @@ self: { "ddc-core-tetra" = callPackage ({ mkDerivation, array, base, containers, ddc-base, ddc-core - , ddc-core-salt, ddc-core-simpl, deepseq, mtl, transformers + , ddc-core-salt, ddc-core-simpl, deepseq, mtl, pretty-show, text + , transformers }: mkDerivation { pname = "ddc-core-tetra"; - version = "0.4.1.3"; - sha256 = "6237cc475d9ef79fc1b2074c54292ed4259d2d0bbc9930069812b99c632b5d05"; + version = "0.4.2.1"; + sha256 = "3e6d8c466ac27d951ccf251fb93d6a0c0c0847a79f1b1f4361a3a002442e2761"; libraryHaskellDepends = [ array base containers ddc-base ddc-core ddc-core-salt - ddc-core-simpl deepseq mtl transformers + ddc-core-simpl deepseq mtl pretty-show text transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler intermediate language"; license = stdenv.lib.licenses.mit; @@ -64370,21 +64878,20 @@ self: { "ddc-driver" = callPackage ({ mkDerivation, base, containers, ddc-base, ddc-build, ddc-core - , ddc-core-eval, ddc-core-flow, ddc-core-llvm, ddc-core-salt - , ddc-core-simpl, ddc-core-tetra, ddc-interface, ddc-source-tetra - , deepseq, directory, filepath, mtl, process, transformers + , ddc-core-flow, ddc-core-llvm, ddc-core-salt, ddc-core-simpl + , ddc-core-tetra, ddc-source-tetra, deepseq, directory, filepath + , mtl, process, time, transformers }: mkDerivation { pname = "ddc-driver"; - version = "0.4.1.3"; - sha256 = "33678ecdd06c06a967fe7519d7b58c10d5b7456dc720a8454ebb00695dacdb47"; + version = "0.4.2.1"; + sha256 = "fe3427d7f5967f782ac67742345cad132c1bc9e576e9c369e3bba4fbc4c5d1cd"; libraryHaskellDepends = [ - base containers ddc-base ddc-build ddc-core ddc-core-eval - ddc-core-flow ddc-core-llvm ddc-core-salt ddc-core-simpl - ddc-core-tetra ddc-interface ddc-source-tetra deepseq directory - filepath mtl process transformers + base containers ddc-base ddc-build ddc-core ddc-core-flow + ddc-core-llvm ddc-core-salt ddc-core-simpl ddc-core-tetra + ddc-source-tetra deepseq directory filepath mtl process time + transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler top-level driver"; license = stdenv.lib.licenses.mit; @@ -64406,17 +64913,16 @@ self: { "ddc-source-tetra" = callPackage ({ mkDerivation, array, base, containers, ddc-base, ddc-core - , ddc-core-salt, ddc-core-tetra, deepseq, mtl, transformers + , ddc-core-salt, ddc-core-tetra, deepseq, mtl, text, transformers }: mkDerivation { pname = "ddc-source-tetra"; - version = "0.4.1.3"; - sha256 = "3acbf2b2f3ab0ae269238b6e4728c929488050909bb4febbef1e3ad2b7d21421"; + version = "0.4.2.1"; + sha256 = "579506d2d7de791ba46973e358b602093fb71fad531085724fbaf9a5f90b04f4"; libraryHaskellDepends = [ array base containers ddc-base ddc-core ddc-core-salt - ddc-core-tetra deepseq mtl transformers + ddc-core-tetra deepseq mtl text transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler source language"; license = stdenv.lib.licenses.mit; @@ -64425,24 +64931,22 @@ self: { "ddc-tools" = callPackage ({ mkDerivation, base, containers, ddc-base, ddc-build, ddc-code - , ddc-core, ddc-core-eval, ddc-core-flow, ddc-core-llvm - , ddc-core-salt, ddc-core-simpl, ddc-core-tetra, ddc-driver - , ddc-interface, ddc-source-tetra, directory, filepath, haskeline - , mtl, process, transformers + , ddc-core, ddc-core-flow, ddc-core-llvm, ddc-core-salt + , ddc-core-simpl, ddc-core-tetra, ddc-driver, ddc-source-tetra + , directory, filepath, haskeline, mtl, process, transformers }: mkDerivation { pname = "ddc-tools"; - version = "0.4.1.3"; - sha256 = "c2fc1cef2298a75b40d72f8a4a119f9b53d5db52ec88bc1772faac8ca582e6c1"; + version = "0.4.2.1"; + sha256 = "cc22d2bfef1d9de385da0e2eb31362c6f61e36b2784436b23d3beb24b9fa7e67"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base containers ddc-base ddc-build ddc-code ddc-core ddc-core-eval - ddc-core-flow ddc-core-llvm ddc-core-salt ddc-core-simpl - ddc-core-tetra ddc-driver ddc-interface ddc-source-tetra directory - filepath haskeline mtl process transformers + base containers ddc-base ddc-build ddc-code ddc-core ddc-core-flow + ddc-core-llvm ddc-core-salt ddc-core-simpl ddc-core-tetra + ddc-driver ddc-source-tetra directory filepath haskeline mtl + process transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler command line tools"; license = stdenv.lib.licenses.mit; @@ -65089,7 +65593,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "dejafu" = callPackage + "dejafu_0_2_0_0" = callPackage ({ mkDerivation, atomic-primops, base, containers, deepseq , exceptions, monad-loops, mtl, random, stm, transformers }: @@ -65104,17 +65608,18 @@ self: { homepage = "https://github.com/barrucadu/dejafu"; description = "Overloadable primitives for testable, potentially non-deterministic, concurrency"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dejafu_0_3_0_0" = callPackage + "dejafu" = callPackage ({ mkDerivation, array, atomic-primops, base, containers, deepseq , dpor, exceptions, monad-control, monad-loops, mtl, semigroups , stm, template-haskell, transformers, transformers-base }: mkDerivation { pname = "dejafu"; - version = "0.3.0.0"; - sha256 = "8df9b8ff0d09c75069c4abd06b879eb3b9ebba4e61d7429c45573cc0a108a7e1"; + version = "0.3.1.0"; + sha256 = "8761ad279a2f37200c62326cb16824587e05eb19b6ff8943f2b418a94679c9fe"; libraryHaskellDepends = [ array atomic-primops base containers deepseq dpor exceptions monad-control monad-loops mtl semigroups stm template-haskell @@ -65123,7 +65628,6 @@ self: { homepage = "https://github.com/barrucadu/dejafu"; description = "Overloadable primitives for testable, potentially non-deterministic, concurrency"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deka" = callPackage @@ -65731,25 +66235,6 @@ self: { }) {}; "deriving-compat" = callPackage - ({ mkDerivation, base, base-compat, containers, ghc-prim, hspec - , QuickCheck, template-haskell - }: - mkDerivation { - pname = "deriving-compat"; - version = "0.1"; - sha256 = "c33dfa865e409f3c520bda7f8c3d7b678c2497cb8857882d8741b796241da0ec"; - revision = "1"; - editedCabalFile = "364c925a70e5c49d3f98c2feb310e462c9db95b4ca3e173273144a1c715112fc"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - testHaskellDepends = [ base base-compat hspec QuickCheck ]; - homepage = "https://github.com/haskell-compat/deriving-compat"; - description = "Backports of GHC deriving extensions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "deriving-compat_0_2" = callPackage ({ mkDerivation, base, base-compat, base-orphans, containers , ghc-prim, hspec, QuickCheck, template-haskell, transformers , transformers-compat @@ -65765,11 +66250,9 @@ self: { base base-compat base-orphans hspec QuickCheck transformers transformers-compat ]; - jailbreak = true; homepage = "https://github.com/haskell-compat/deriving-compat"; description = "Backports of GHC deriving extensions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derp" = callPackage @@ -66449,7 +66932,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-cairo" = callPackage + "diagrams-cairo_1_3_0_5" = callPackage ({ mkDerivation, base, bytestring, cairo, colour, containers , data-default-class, diagrams-core, diagrams-lib, filepath , hashable, JuicyPixels, lens, mtl, optparse-applicative, pango @@ -66468,6 +66951,28 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Cairo backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-cairo" = callPackage + ({ mkDerivation, array, base, bytestring, cairo, colour, containers + , data-default-class, diagrams-core, diagrams-lib, filepath + , hashable, JuicyPixels, lens, mtl, optparse-applicative, pango + , split, statestack, transformers, unix, vector + }: + mkDerivation { + pname = "diagrams-cairo"; + version = "1.3.0.6"; + sha256 = "463f2072feb1eaa75435bf0345bcee662448b8aa0b376d92150cd1cc247b098b"; + libraryHaskellDepends = [ + array base bytestring cairo colour containers data-default-class + diagrams-core diagrams-lib filepath hashable JuicyPixels lens mtl + optparse-applicative pango split statestack transformers unix + vector + ]; + homepage = "http://projects.haskell.org/diagrams"; + description = "Cairo backend for diagrams drawing EDSL"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; @@ -66515,7 +67020,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-canvas" = callPackage + "diagrams-canvas_1_3_0_3" = callPackage ({ mkDerivation, base, blank-canvas, cmdargs, containers , data-default-class, diagrams-core, diagrams-lib, lens, mtl , NumInstances, optparse-applicative, statestack, text @@ -66532,6 +67037,26 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-canvas" = callPackage + ({ mkDerivation, base, blank-canvas, cmdargs, containers + , data-default-class, diagrams-core, diagrams-lib, lens, mtl + , NumInstances, optparse-applicative, statestack, text + }: + mkDerivation { + pname = "diagrams-canvas"; + version = "1.3.0.4"; + sha256 = "a1c5ea249029a8617db0e056bef80e5f4d95e8714882108982520286bef5c43d"; + libraryHaskellDepends = [ + base blank-canvas cmdargs containers data-default-class + diagrams-core diagrams-lib lens mtl NumInstances + optparse-applicative statestack text + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "HTML5 canvas backend for diagrams drawing EDSL"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-contrib_1_1_2_4" = callPackage @@ -66737,7 +67262,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-contrib" = callPackage + "diagrams-contrib_1_3_0_8" = callPackage ({ mkDerivation, base, circle-packing, colour, containers , data-default, data-default-class, diagrams-core, diagrams-lib , diagrams-solve, force-layout, HUnit, lens, linear, MonadRandom @@ -66762,6 +67287,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Collection of user contributions to diagrams EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-contrib_1_3_0_9" = callPackage @@ -66792,6 +67318,33 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "diagrams-contrib" = callPackage + ({ mkDerivation, base, circle-packing, colour, containers + , data-default, data-default-class, diagrams-core, diagrams-lib + , diagrams-solve, force-layout, HUnit, lens, linear, MonadRandom + , mtl, parsec, QuickCheck, random, semigroups, split + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text + }: + mkDerivation { + pname = "diagrams-contrib"; + version = "1.3.0.10"; + sha256 = "a1cc25a0aa9fefb4502b361b5193a18e34962aa1d3ccd01e5bb0426bd68779c1"; + libraryHaskellDepends = [ + base circle-packing colour containers data-default + data-default-class diagrams-core diagrams-lib diagrams-solve + force-layout lens linear MonadRandom mtl parsec random semigroups + split text + ]; + testHaskellDepends = [ + base containers diagrams-lib HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "Collection of user contributions to diagrams EDSL"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "diagrams-core_1_2_0_4" = callPackage ({ mkDerivation, base, containers, dual-tree, lens, MemoTrie , monoid-extras, newtype, semigroups, vector-space @@ -66932,7 +67485,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-core" = callPackage + "diagrams-core_1_3_0_6" = callPackage ({ mkDerivation, adjunctions, base, containers, distributive , dual-tree, lens, linear, monoid-extras, mtl, semigroups , unordered-containers @@ -66948,6 +67501,25 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Core libraries for diagrams EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-core" = callPackage + ({ mkDerivation, adjunctions, base, containers, distributive + , dual-tree, lens, linear, monoid-extras, mtl, semigroups + , unordered-containers + }: + mkDerivation { + pname = "diagrams-core"; + version = "1.3.0.7"; + sha256 = "96f29afcbc833abd8ba6ad07e9fbdb13c2beb99813a1e493d491e6e6fa6aaa79"; + libraryHaskellDepends = [ + adjunctions base containers distributive dual-tree lens linear + monoid-extras mtl semigroups unordered-containers + ]; + homepage = "http://projects.haskell.org/diagrams"; + description = "Core libraries for diagrams EDSL"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-graphviz" = callPackage @@ -67216,7 +67788,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-html5" = callPackage + "diagrams-html5_1_3_0_4" = callPackage ({ mkDerivation, base, cmdargs, containers, data-default-class , diagrams-core, diagrams-lib, lens, mtl, NumInstances , optparse-applicative, split, statestack, static-canvas, text @@ -67233,6 +67805,26 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-html5" = callPackage + ({ mkDerivation, base, cmdargs, containers, data-default-class + , diagrams-core, diagrams-lib, lens, mtl, NumInstances + , optparse-applicative, split, statestack, static-canvas, text + }: + mkDerivation { + pname = "diagrams-html5"; + version = "1.3.0.5"; + sha256 = "0b75f6280500064c94f18c86d896ad5592b8a64f011d0ff6e170cf77ec84b6e1"; + libraryHaskellDepends = [ + base cmdargs containers data-default-class diagrams-core + diagrams-lib lens mtl NumInstances optparse-applicative split + statestack static-canvas text + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "HTML5 canvas backend for diagrams drawing EDSL"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-lib_1_2_0_7" = callPackage @@ -67385,7 +67977,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-lib" = callPackage + "diagrams-lib_1_3_1_1" = callPackage ({ mkDerivation, active, adjunctions, array, base, colour , containers, data-default-class, diagrams-core, diagrams-solve , directory, distributive, dual-tree, exceptions, filepath @@ -67409,6 +68001,33 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Embedded domain-specific language for declarative graphics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-lib" = callPackage + ({ mkDerivation, active, adjunctions, array, base, colour + , containers, data-default-class, diagrams-core, diagrams-solve + , directory, distributive, dual-tree, exceptions, filepath + , fingertree, fsnotify, hashable, intervals, JuicyPixels, lens + , linear, monoid-extras, mtl, optparse-applicative, process + , semigroups, tagged, tasty, tasty-hunit, text, transformers + , unordered-containers + }: + mkDerivation { + pname = "diagrams-lib"; + version = "1.3.1.2"; + sha256 = "e2bc2914c5715cc93361945d75d15f111d2ac4f231d7c19cc243f515d65d658d"; + libraryHaskellDepends = [ + active adjunctions array base colour containers data-default-class + diagrams-core diagrams-solve directory distributive dual-tree + exceptions filepath fingertree fsnotify hashable intervals + JuicyPixels lens linear monoid-extras mtl optparse-applicative + process semigroups tagged text transformers unordered-containers + ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + homepage = "http://projects.haskell.org/diagrams"; + description = "Embedded domain-specific language for declarative graphics"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-pandoc" = callPackage @@ -67582,7 +68201,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-postscript" = callPackage + "diagrams-postscript_1_3_0_4" = callPackage ({ mkDerivation, base, containers, data-default-class , diagrams-core, diagrams-lib, dlist, filepath, hashable, lens , monoid-extras, mtl, semigroups, split, statestack @@ -67599,6 +68218,26 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Postscript backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-postscript" = callPackage + ({ mkDerivation, base, containers, data-default-class + , diagrams-core, diagrams-lib, dlist, filepath, hashable, lens + , monoid-extras, mtl, semigroups, split, statestack + }: + mkDerivation { + pname = "diagrams-postscript"; + version = "1.3.0.5"; + sha256 = "acaa68d5b8901767c3c7cb828a15b0e73e0be2b28cbbdb9cfb76682508039b31"; + libraryHaskellDepends = [ + base containers data-default-class diagrams-core diagrams-lib dlist + filepath hashable lens monoid-extras mtl semigroups split + statestack + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "Postscript backend for diagrams drawing EDSL"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-qrcode" = callPackage @@ -67706,7 +68345,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-rasterific" = callPackage + "diagrams-rasterific_1_3_1_5" = callPackage ({ mkDerivation, base, bytestring, containers, data-default-class , diagrams-core, diagrams-lib, filepath, FontyFruity, hashable , JuicyPixels, lens, mtl, optparse-applicative, Rasterific, split @@ -67724,6 +68363,27 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Rasterific backend for diagrams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-rasterific" = callPackage + ({ mkDerivation, base, bytestring, containers, data-default-class + , diagrams-core, diagrams-lib, filepath, FontyFruity, hashable + , JuicyPixels, lens, mtl, optparse-applicative, Rasterific, split + , unix + }: + mkDerivation { + pname = "diagrams-rasterific"; + version = "1.3.1.6"; + sha256 = "126a6d98a5ea11cccebdf3c2645db420895d4c71a60387a7d0d32e48db103600"; + libraryHaskellDepends = [ + base bytestring containers data-default-class diagrams-core + diagrams-lib filepath FontyFruity hashable JuicyPixels lens mtl + optparse-applicative Rasterific split unix + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "Rasterific backend for diagrams"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-reflex" = callPackage @@ -67973,7 +68633,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "diagrams-svg_1_4" = callPackage + "diagrams-svg_1_4_0_1" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, colour , containers, diagrams-core, diagrams-lib, directory, filepath , hashable, JuicyPixels, lens, monoid-extras, mtl, old-time @@ -67982,8 +68642,8 @@ self: { }: mkDerivation { pname = "diagrams-svg"; - version = "1.4"; - sha256 = "9845b2f999f3fb61bf36c064977d36aea9ad8c5532c2ce80e5e3a85f5f9df900"; + version = "1.4.0.1"; + sha256 = "76c8d38f44615af289d373c5abf1c6ba3ff42155f90eea73992cc708a35e6079"; libraryHaskellDepends = [ base base64-bytestring bytestring colour containers diagrams-core diagrams-lib directory filepath hashable JuicyPixels lens @@ -69034,12 +69694,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "directory_1_2_6_2" = callPackage + "directory_1_2_6_3" = callPackage ({ mkDerivation, base, filepath, time, unix }: mkDerivation { pname = "directory"; - version = "1.2.6.2"; - sha256 = "4c860441ca249c8395a7e74743957b1064359ba3d3c30b1c18df11b9a0a413e0"; + version = "1.2.6.3"; + sha256 = "0f54e0f01f0b2ec739f849d8db6237e3bc52eb1149202b2b4e5c325659228a29"; libraryHaskellDepends = [ base filepath time unix ]; testHaskellDepends = [ base filepath time unix ]; description = "Platform-agnostic library for filesystem operations"; @@ -69292,14 +69952,14 @@ self: { "distributed-closure" = callPackage ({ mkDerivation, base, binary, bytestring, constraints, hspec - , QuickCheck, template-haskell + , QuickCheck, syb, template-haskell }: mkDerivation { pname = "distributed-closure"; - version = "0.2.1.0"; - sha256 = "345140293e28e6feaae46e2e3e275e892d72029dbd57617ba8fc1b7251ae902f"; + version = "0.3.0.0"; + sha256 = "031ca8c6d30af04c872da9143bffa5536b8ed8326c6069f6a30d94d6c5ce3d91"; libraryHaskellDepends = [ - base binary bytestring constraints template-haskell + base binary bytestring constraints syb template-haskell ]; testHaskellDepends = [ base binary hspec QuickCheck ]; homepage = "https://github.com/tweag/distributed-closure"; @@ -70451,7 +71111,6 @@ self: { patches-vector servant servant-blaze servant-docs shakespeare text time vector ]; - jailbreak = true; homepage = "https://github.com/liamoc/dixi"; description = "A wiki implemented with a firm theoretical foundation"; license = stdenv.lib.licenses.bsd3; @@ -73245,7 +73904,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "effect-handlers" = callPackage + "effect-handlers_0_1_0_7" = callPackage ({ mkDerivation, base, free, hspec, hspec-discover, HUnit , kan-extensions, mtl, QuickCheck }: @@ -73260,6 +73919,24 @@ self: { homepage = "https://github.com/edofic/effect-handlers"; description = "A library for writing extensible algebraic effects and handlers. Similar to extensible-effects but with deep handlers."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "effect-handlers" = callPackage + ({ mkDerivation, base, free, hspec, hspec-discover, HUnit + , kan-extensions, mtl, QuickCheck + }: + mkDerivation { + pname = "effect-handlers"; + version = "0.1.0.8"; + sha256 = "2439a77b6ec8db236fc2809cb91219305a7071c72bfd68de795e01b3df9aa80c"; + libraryHaskellDepends = [ base free kan-extensions mtl ]; + testHaskellDepends = [ + base hspec hspec-discover HUnit QuickCheck + ]; + homepage = "https://github.com/edofic/effect-handlers"; + description = "A library for writing extensible algebraic effects and handlers. Similar to extensible-effects but with deep handlers."; + license = stdenv.lib.licenses.mit; }) {}; "effect-monad" = callPackage @@ -73997,7 +74674,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "elm-bridge" = callPackage + "elm-bridge_0_2_1_1" = callPackage ({ mkDerivation, aeson, base, containers, hspec, QuickCheck , template-haskell, text }: @@ -74012,6 +74689,24 @@ self: { homepage = "http://github.com/agrafix/elm-bridge"; description = "Derive Elm types from Haskell types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "elm-bridge" = callPackage + ({ mkDerivation, aeson, base, containers, hspec, QuickCheck + , template-haskell, text + }: + mkDerivation { + pname = "elm-bridge"; + version = "0.2.2.1"; + sha256 = "8920c626419291f8683fee026b9ea9c593996b4384ed53dd7251890ef6c55427"; + libraryHaskellDepends = [ aeson base template-haskell ]; + testHaskellDepends = [ + aeson base containers hspec QuickCheck text + ]; + homepage = "https://github.com/agrafix/elm-bridge"; + description = "Derive Elm types from Haskell types"; + license = stdenv.lib.licenses.bsd3; }) {}; "elm-build-lib" = callPackage @@ -75180,8 +75875,8 @@ self: { ({ mkDerivation, base, containers, hspec }: mkDerivation { pname = "envparse"; - version = "0.3.2"; - sha256 = "a1bed0ca630b07e634dca85a9770ea917866516bd456d8f5012435d512560156"; + version = "0.3.3"; + sha256 = "9fc908ed2d9174fbcd32bc05b2c449397720b8f23826304a72035867d83563ec"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base containers hspec ]; homepage = "https://supki.github.io/envparse"; @@ -76242,10 +76937,8 @@ self: { }: mkDerivation { pname = "ether"; - version = "0.4.0.1"; - sha256 = "2dd65384c5dd884c23cad897bc8ee343015b21bcddc04aeca3fca58c4f12716a"; - revision = "1"; - editedCabalFile = "478e2aa8efec5d299370c8f3d982280ba45f9bfb3eda97adabe7e96eb8f61a1f"; + version = "0.4.0.2"; + sha256 = "8b9dce4d444613dc46df988fa3a437297503e63ff29fd28113b35b98a8dcd953"; libraryHaskellDepends = [ base exceptions mmorph monad-control mtl template-haskell transformers transformers-base transformers-lift @@ -76535,8 +77228,8 @@ self: { }: mkDerivation { pname = "eventloop"; - version = "0.8.0.0"; - sha256 = "5fbdbe0201c18a2c9f82799f6367c1cb4c1554554677fc181018bca289077b01"; + version = "0.8.0.1"; + sha256 = "7e89dcc7ea6bcc0843ca16d6df613fa0b873117ef1bfd818478bdb301c6311cb"; libraryHaskellDepends = [ aeson base bytestring concurrent-utilities deepseq network stm suspend text timers websockets @@ -77767,7 +78460,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "extra" = callPackage + "extra_1_4_3" = callPackage ({ mkDerivation, base, directory, filepath, process, QuickCheck , time, unix }: @@ -77784,6 +78477,26 @@ self: { homepage = "https://github.com/ndmitchell/extra#readme"; description = "Extra functions I use"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "extra" = callPackage + ({ mkDerivation, base, directory, filepath, process, QuickCheck + , time, unix + }: + mkDerivation { + pname = "extra"; + version = "1.4.5"; + sha256 = "0fb35fe9c2c2c27305713c28d283cb4254abc792dd75ce8ef4c00fa4ee77ceb5"; + libraryHaskellDepends = [ + base directory filepath process time unix + ]; + testHaskellDepends = [ + base directory filepath QuickCheck time unix + ]; + homepage = "https://github.com/ndmitchell/extra#readme"; + description = "Extra functions I use"; + license = stdenv.lib.licenses.bsd3; }) {}; "extract-dependencies" = callPackage @@ -78102,7 +78815,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fast-builder" = callPackage + "fast-builder_0_0_0_3" = callPackage ({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck , stm }: @@ -78115,9 +78828,10 @@ self: { homepage = "http://github.com/takano-akio/fast-builder"; description = "Fast ByteString Builder"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fast-builder_0_0_0_4" = callPackage + "fast-builder" = callPackage ({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck , stm }: @@ -78130,7 +78844,6 @@ self: { homepage = "http://github.com/takano-akio/fast-builder"; description = "Fast ByteString Builder"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fast-digits" = callPackage @@ -78251,7 +78964,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fast-logger" = callPackage + "fast-logger_2_4_3" = callPackage ({ mkDerivation, array, auto-update, base, bytestring , bytestring-builder, directory, filepath, hspec, text }: @@ -78266,6 +78979,7 @@ self: { testHaskellDepends = [ base bytestring directory hspec ]; description = "A fast logging system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fast-logger_2_4_5" = callPackage @@ -78287,6 +79001,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "fast-logger" = callPackage + ({ mkDerivation, array, auto-update, base, bytestring + , bytestring-builder, directory, easy-file, filepath, hspec, text + , unix, unix-time + }: + mkDerivation { + pname = "fast-logger"; + version = "2.4.6"; + sha256 = "d45640acb40bf9b6f81cbe63e3587b6e59d9ec24a15401e52bdc7969b6f2cfd1"; + libraryHaskellDepends = [ + array auto-update base bytestring bytestring-builder directory + easy-file filepath text unix unix-time + ]; + testHaskellDepends = [ base bytestring directory hspec ]; + description = "A fast logging system"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "fast-math" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -78327,12 +79059,16 @@ self: { }) {}; "fast-tagsoup" = callPackage - ({ mkDerivation, base, bytestring, tagsoup, text, text-icu }: + ({ mkDerivation, base, bytestring, containers, tagsoup, text + , text-icu + }: mkDerivation { pname = "fast-tagsoup"; - version = "1.0.7"; - sha256 = "a885e4cb187c1b134bc4410bac8016f118090ee8220f941d051f01d95a563321"; - libraryHaskellDepends = [ base bytestring tagsoup text text-icu ]; + version = "1.0.9"; + sha256 = "20c9895e01e522215bf0b36df084dc78b53b1e9a05d4be220c4816a6d1260d9b"; + libraryHaskellDepends = [ + base bytestring containers tagsoup text text-icu + ]; homepage = "https://github.com/vshabanov/fast-tagsoup"; description = "Fast parser for tagsoup package"; license = stdenv.lib.licenses.bsd3; @@ -78834,8 +79570,8 @@ self: { pname = "fay-builder"; version = "0.2.0.5"; sha256 = "116dea6dc304834be81d70faec7e3de1fd867ebbda0d02d3c1c6a0f96d2b31a2"; - revision = "1"; - editedCabalFile = "09fb1a4f71c11547dadf8859e302ede4d65aed7437ed1da16376811724a6b1ef"; + revision = "2"; + editedCabalFile = "846d778c1b5f3feeb549d013338a08a746acb114d7c07c855b91032c4675d32b"; libraryHaskellDepends = [ base Cabal data-default directory fay filepath safe split text ]; @@ -80386,7 +81122,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "file-embed" = callPackage + "file-embed_0_0_9_1" = callPackage ({ mkDerivation, base, bytestring, directory, filepath , template-haskell }: @@ -80401,9 +81137,10 @@ self: { homepage = "https://github.com/snoyberg/file-embed"; description = "Use Template Haskell to embed file contents directly"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "file-embed_0_0_10" = callPackage + "file-embed" = callPackage ({ mkDerivation, base, bytestring, directory, filepath , template-haskell }: @@ -80418,7 +81155,6 @@ self: { homepage = "https://github.com/snoyberg/file-embed"; description = "Use Template Haskell to embed file contents directly"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "file-location_0_4_5_3" = callPackage @@ -82265,14 +83001,17 @@ self: { }) {}; "fold-debounce" = callPackage - ({ mkDerivation, base, data-default, hspec, stm, stm-delay, time }: + ({ mkDerivation, base, data-default-class, hspec, stm, stm-delay + , time + }: mkDerivation { pname = "fold-debounce"; - version = "0.2.0.0"; - sha256 = "ab4af7e815cfa2345cdf17c0e765da575f66c0b9b978c8234d620fcf933800db"; - libraryHaskellDepends = [ base data-default stm stm-delay time ]; + version = "0.2.0.1"; + sha256 = "0a59cd7d26dad8b5d87d6acd073152131642942736c1fdcb4a96ad0444037e56"; + libraryHaskellDepends = [ + base data-default-class stm stm-delay time + ]; testHaskellDepends = [ base hspec stm time ]; - jailbreak = true; homepage = "https://github.com/debug-ito/fold-debounce"; description = "Fold multiple events that happen in a given period of time"; license = stdenv.lib.licenses.bsd3; @@ -82285,8 +83024,8 @@ self: { }: mkDerivation { pname = "fold-debounce-conduit"; - version = "0.1.0.0"; - sha256 = "b348a7e2e83e6a98cd95fbc7a967f5a80e3772d6fa0377b8d53acef509e1be34"; + version = "0.1.0.1"; + sha256 = "d8e0a80f0172ab80a842253aeb856ec327832e7f7f91d221ecf2ce66d265dc10"; libraryHaskellDepends = [ base conduit fold-debounce resourcet stm transformers transformers-base @@ -82294,7 +83033,6 @@ self: { testHaskellDepends = [ base conduit hspec resourcet stm transformers ]; - jailbreak = true; homepage = "https://github.com/debug-ito/fold-debounce-conduit"; description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; license = stdenv.lib.licenses.bsd3; @@ -82810,7 +83548,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "force-layout" = callPackage + "force-layout_0_4_0_3" = callPackage ({ mkDerivation, base, containers, data-default-class, lens, linear }: mkDerivation { @@ -82822,6 +83560,21 @@ self: { ]; description = "Simple force-directed layout"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "force-layout" = callPackage + ({ mkDerivation, base, containers, data-default-class, lens, linear + }: + mkDerivation { + pname = "force-layout"; + version = "0.4.0.4"; + sha256 = "dc6183723dc02b0f03346386a6eff97b7c3334c373a14b1f47ebb84a31ead8f4"; + libraryHaskellDepends = [ + base containers data-default-class lens linear + ]; + description = "Simple force-directed layout"; + license = stdenv.lib.licenses.bsd3; }) {}; "fordo" = callPackage @@ -83542,6 +84295,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "freddy" = callPackage + ({ mkDerivation, amqp, async, base, broadcast-chan, bytestring + , data-default, hspec, random, text, uuid + }: + mkDerivation { + pname = "freddy"; + version = "0.1.0.0"; + sha256 = "5513ee3231f1b5cb407d13dd8ea153f2737b25f0270eb12b304ffee56cda275a"; + libraryHaskellDepends = [ + amqp base broadcast-chan bytestring data-default random text uuid + ]; + testHaskellDepends = [ + amqp async base broadcast-chan bytestring data-default hspec random + text uuid + ]; + jailbreak = true; + homepage = "https://github.com/salemove/freddy-hs"; + description = "RabbitMQ Messaging API supporting request-response"; + license = stdenv.lib.licenses.mit; + }) {}; + "free_4_9" = callPackage ({ mkDerivation, base, bifunctors, comonad, distributive, mtl , prelude-extras, profunctors, semigroupoids, semigroups @@ -86198,7 +86972,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "geniplate-mirror" = callPackage + "geniplate-mirror_0_7_2" = callPackage ({ mkDerivation, base, mtl, template-haskell }: mkDerivation { pname = "geniplate-mirror"; @@ -86208,9 +86982,10 @@ self: { homepage = "https://github.com/danr/geniplate"; description = "Use Template Haskell to generate Uniplate-like functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "geniplate-mirror_0_7_4" = callPackage + "geniplate-mirror" = callPackage ({ mkDerivation, base, mtl, template-haskell }: mkDerivation { pname = "geniplate-mirror"; @@ -86220,7 +86995,6 @@ self: { homepage = "https://github.com/danr/geniplate"; description = "Use Template Haskell to generate Uniplate-like functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geniserver" = callPackage @@ -87698,8 +88472,8 @@ self: { }: mkDerivation { pname = "ghcid"; - version = "0.6.1"; - sha256 = "f3a69db6c66670aefa9c38ec8f30cec1e5a5ac3405b661fcc320a613518b4a4c"; + version = "0.6.2"; + sha256 = "2977c1f260d3552e321ac120b37e25537f81f127d2aa579310a9f4232d3fd690"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -88541,31 +89315,6 @@ self: { }) {}; "giphy-api" = callPackage - ({ mkDerivation, aeson, base, basic-prelude, bytestring, containers - , directory, either, hspec, lens, microlens, microlens-th, mtl - , network-uri, servant, servant-client, text - }: - mkDerivation { - pname = "giphy-api"; - version = "0.2.5.0"; - sha256 = "63630c590dbdf0d2681e4d15121439f0b5762b284c77411148edf7155df8881b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers either microlens microlens-th mtl network-uri - servant servant-client text - ]; - executableHaskellDepends = [ base network-uri text ]; - testHaskellDepends = [ - aeson base basic-prelude bytestring containers directory hspec lens - network-uri text - ]; - homepage = "http://github.com/passy/giphy-api#readme"; - description = "Giphy HTTP API wrapper and CLI search tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "giphy-api_0_4_0_0" = callPackage ({ mkDerivation, aeson, base, basic-prelude, bytestring, containers , directory, hspec, http-api-data, http-client, http-client-tls , lens, microlens, microlens-th, mtl, network-uri, servant @@ -88587,11 +89336,9 @@ self: { aeson base basic-prelude bytestring containers directory hspec lens network-uri text ]; - jailbreak = true; homepage = "http://github.com/passy/giphy-api#readme"; description = "Giphy HTTP API wrapper and CLI search tool"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gist" = callPackage @@ -88859,8 +89606,8 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "6.20160418"; - sha256 = "9d13586cc38d78bcd94c1f3a245d5283e67f43b0ea88033c40d54e78f6544fa2"; + version = "6.20160419"; + sha256 = "1452a55809ba7367847fc4a77f2d8a5365af92e130d5ca460bf0880a26a6fb8e"; configureFlags = [ "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" @@ -91000,6 +91747,7 @@ self: { mwc-random-monad statistics vector ]; executableHaskellDepends = [ base goal-core goal-geometry vector ]; + jailbreak = true; description = "Manifolds of probability distributions"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -92320,6 +93068,7 @@ self: { libraryHaskellDepends = [ aeson base bytestring either servant servant-client text ]; + jailbreak = true; description = "Google Translate API bindings"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -93469,7 +94218,6 @@ self: { ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base ]; - jailbreak = true; homepage = "https://bitbucket.org/janmasrovira/am3-project/overview"; description = "GRASP implementation for the AMMM project"; license = stdenv.lib.licenses.bsd3; @@ -97141,6 +97889,7 @@ self: { attoparsec base bytestring hadoop-rpc tasty tasty-hunit tasty-quickcheck vector ]; + jailbreak = true; homepage = "http://github.com/jystic/hadoop-tools"; description = "Fast command line tools for working with Hadoop"; license = stdenv.lib.licenses.asl20; @@ -97459,7 +98208,7 @@ self: { , pandoc-citeproc, parsec, process, QuickCheck, random, regex-base , regex-tdfa, snap-core, snap-server, system-filepath, tagsoup , test-framework, test-framework-hunit, test-framework-quickcheck2 - , text, time + , text, time, utillinux }: mkDerivation { pname = "hakyll"; @@ -97486,12 +98235,13 @@ self: { system-filepath tagsoup test-framework test-framework-hunit test-framework-quickcheck2 text time ]; + testToolDepends = [ utillinux ]; jailbreak = true; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_6_8_0" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97501,7 +98251,7 @@ self: { , pandoc-citeproc, parsec, process, QuickCheck, random, regex-base , regex-tdfa, snap-core, snap-server, system-filepath, tagsoup , test-framework, test-framework-hunit, test-framework-quickcheck2 - , text, time, time-locale-compat + , text, time, time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97527,13 +98277,14 @@ self: { system-filepath tagsoup test-framework test-framework-hunit test-framework-quickcheck2 text time ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_6_8_1" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97543,7 +98294,7 @@ self: { , pandoc-citeproc, parsec, process, QuickCheck, random, regex-base , regex-tdfa, snap-core, snap-server, system-filepath, tagsoup , test-framework, test-framework-hunit, test-framework-quickcheck2 - , text, time, time-locale-compat + , text, time, time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97569,13 +98320,14 @@ self: { system-filepath tagsoup test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_6_9_0" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97585,7 +98337,7 @@ self: { , pandoc-citeproc, parsec, process, QuickCheck, random, regex-base , regex-tdfa, snap-core, snap-server, system-filepath, tagsoup , test-framework, test-framework-hunit, test-framework-quickcheck2 - , text, time, time-locale-compat + , text, time, time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97611,13 +98363,14 @@ self: { system-filepath tagsoup test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_7_2_3" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97627,7 +98380,7 @@ self: { , process, QuickCheck, random, regex-base, regex-tdfa, snap-core , snap-server, system-filepath, tagsoup, test-framework , test-framework-hunit, test-framework-quickcheck2, text, time - , time-locale-compat + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97653,13 +98406,14 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_7_3_0" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97669,7 +98423,7 @@ self: { , process, QuickCheck, random, regex-base, regex-tdfa, snap-core , snap-server, system-filepath, tagsoup, test-framework , test-framework-hunit, test-framework-quickcheck2, text, time - , time-locale-compat + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97695,13 +98449,14 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_7_3_1" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97711,7 +98466,7 @@ self: { , process, QuickCheck, random, regex-base, regex-tdfa, snap-core , snap-server, system-filepath, tagsoup, test-framework , test-framework-hunit, test-framework-quickcheck2, text, time - , time-locale-compat + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97737,13 +98492,14 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_7_4_0" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97753,7 +98509,7 @@ self: { , process, QuickCheck, random, regex-base, regex-tdfa, snap-core , snap-server, system-filepath, tagsoup, test-framework , test-framework-hunit, test-framework-quickcheck2, text, time - , time-locale-compat + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97779,13 +98535,14 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_7_5_0" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97795,7 +98552,7 @@ self: { , process, QuickCheck, random, regex-base, regex-tdfa, snap-core , snap-server, system-filepath, tagsoup, test-framework , test-framework-hunit, test-framework-quickcheck2, text, time - , time-locale-compat + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97821,13 +98578,14 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_7_5_1" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97837,7 +98595,7 @@ self: { , process, QuickCheck, random, regex-base, regex-tdfa, snap-core , snap-server, system-filepath, tagsoup, test-framework , test-framework-hunit, test-framework-quickcheck2, text, time - , time-locale-compat + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97863,15 +98621,16 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; - "hakyll" = callPackage + "hakyll_4_7_5_2" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring , cmdargs, containers, cryptohash, data-default, deepseq, directory , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache @@ -97879,7 +98638,7 @@ self: { , process, QuickCheck, random, regex-base, regex-tdfa, snap-core , snap-server, system-filepath, tagsoup, test-framework , test-framework-hunit, test-framework-quickcheck2, text, time - , time-locale-compat + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97905,12 +98664,14 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; - }) {}; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) utillinux;}; - "hakyll_4_8_0_1" = callPackage + "hakyll" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring , cmdargs, containers, cryptohash, data-default, deepseq, directory , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache @@ -97918,12 +98679,12 @@ self: { , process, QuickCheck, random, regex-base, regex-tdfa, resourcet , snap-core, snap-server, system-filepath, tagsoup, test-framework , test-framework-hunit, test-framework-quickcheck2, text, time - , time-locale-compat, unordered-containers, vector, yaml + , time-locale-compat, unordered-containers, utillinux, vector, yaml }: mkDerivation { pname = "hakyll"; - version = "4.8.0.1"; - sha256 = "c5e860cd6cf8bc525e032da106fbe44667bc5bdc5d3023ca77cc32b3c6bc41d5"; + version = "4.8.3.0"; + sha256 = "d01a2ec0fbc3efffb6e7fcc2971842b6c6bd893327324cada0e345d3a5e504ef"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -97944,11 +98705,11 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat unordered-containers vector yaml ]; + testToolDepends = [ utillinux ]; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll-R" = callPackage ({ mkDerivation, base, directory, filepath, hakyll, pandoc, process @@ -98097,6 +98858,7 @@ self: { libraryHaskellDepends = [ base filestore hakyll time time-locale-compat ]; + jailbreak = true; homepage = "https://gitlab.com/aergus/hakyll-filestore"; description = "FileStore utilities for Hakyll"; license = stdenv.lib.licenses.publicDomain; @@ -101047,6 +101809,7 @@ self: { base either network-uri QuickCheck servant servant-client servant-mock servant-server split transformers warp ]; + jailbreak = true; homepage = "https://github.com/soundcloud/haskell-kubernetes"; description = "Haskell bindings to the Kubernetes API (via swagger-codegen)"; license = stdenv.lib.licenses.mit; @@ -103432,8 +104195,8 @@ self: { }: mkDerivation { pname = "hasql"; - version = "0.19.10"; - sha256 = "e656386350fdba654177ac5efb96db00a7dd5e1675c710bf65bd75b0ed64b5dc"; + version = "0.19.11"; + sha256 = "48b12698e6168f176fa583317cb3f058e99f604ceda5036e891bc496bf4158e4"; libraryHaskellDepends = [ aeson attoparsec base base-prelude bytestring bytestring-tree-builder contravariant contravariant-extras @@ -104155,7 +104918,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hasty-hamiltonian" = callPackage + "hasty-hamiltonian_1_1_2" = callPackage ({ mkDerivation, ad, base, lens, mcmc-types, mwc-probability, pipes , primitive, transformers }: @@ -104170,6 +104933,24 @@ self: { homepage = "http://jtobin.github.com/hasty-hamiltonian"; description = "Speedy traversal through parameter space"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hasty-hamiltonian" = callPackage + ({ mkDerivation, ad, base, lens, mcmc-types, mwc-probability, pipes + , primitive, transformers + }: + mkDerivation { + pname = "hasty-hamiltonian"; + version = "1.1.3"; + sha256 = "15fe3075dc4cf9a5ea9875cb15da469ee414223696c0e9eb3163a44d23c38463"; + libraryHaskellDepends = [ + base lens mcmc-types mwc-probability pipes primitive transformers + ]; + testHaskellDepends = [ ad base mwc-probability ]; + homepage = "http://github.com/jtobin/hasty-hamiltonian"; + description = "Speedy traversal through parameter space"; + license = stdenv.lib.licenses.mit; }) {}; "hat" = callPackage @@ -105828,15 +106609,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hedis_0_8_0" = callPackage + "hedis_0_8_2" = callPackage ({ mkDerivation, base, bytestring, bytestring-lexing, deepseq , HUnit, mtl, network, resource-pool, scanner, slave-thread , test-framework, test-framework-hunit, text, time, vector }: mkDerivation { pname = "hedis"; - version = "0.8.0"; - sha256 = "8bde5dcda10b768bdc55a0e0c529f2dacd06f02f88839b986cf75ae426c4811b"; + version = "0.8.2"; + sha256 = "4d577fcb4e1457455210ee58d0aef3f02069d2d4d055108a0391899544a254a9"; libraryHaskellDepends = [ base bytestring bytestring-lexing deepseq mtl network resource-pool scanner text time vector @@ -106082,7 +106863,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "heist" = callPackage + "heist_0_14_1_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html , bytestring, containers, directory, directory-tree, dlist, either , filepath, hashable, map-syntax, MonadCatchIO-transformers, mtl @@ -106102,6 +106883,29 @@ self: { homepage = "http://snapframework.com/"; description = "An Haskell template system supporting both HTML5 and XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "heist" = callPackage + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html + , bytestring, containers, directory, directory-tree, dlist, either + , filepath, hashable, map-syntax, MonadCatchIO-transformers, mtl + , process, random, text, time, transformers, unordered-containers + , vector, xmlhtml + }: + mkDerivation { + pname = "heist"; + version = "0.14.1.4"; + sha256 = "debf008e68310d7e494560ebf7226693e5bc6820be39b6dae91f965805cf5fc9"; + libraryHaskellDepends = [ + aeson attoparsec base blaze-builder blaze-html bytestring + containers directory directory-tree dlist either filepath hashable + map-syntax MonadCatchIO-transformers mtl process random text time + transformers unordered-containers vector xmlhtml + ]; + homepage = "http://snapframework.com/"; + description = "An Haskell template system supporting both HTML5 and XML"; + license = stdenv.lib.licenses.bsd3; }) {}; "heist-aeson" = callPackage @@ -106573,13 +107377,15 @@ self: { }) {}; "heredocs" = callPackage - ({ mkDerivation, base, doctest, parsec, template-haskell }: + ({ mkDerivation, base, doctest, parsec, template-haskell, text }: mkDerivation { pname = "heredocs"; - version = "0.1.1.0"; - sha256 = "fb6779b1eba4fade43b1c25d0289152390d37027e9e79f072331e175dbee7fa6"; - libraryHaskellDepends = [ base doctest parsec template-haskell ]; - testHaskellDepends = [ base doctest ]; + version = "0.1.2.1"; + sha256 = "9eb58206ced97594e688a8905040e9aff81047a38156f38719b62718cf3a6570"; + libraryHaskellDepends = [ + base doctest parsec template-haskell text + ]; + testHaskellDepends = [ base doctest text ]; homepage = "http://github.com/cutsea110/heredoc.git"; description = "heredocument"; license = stdenv.lib.licenses.bsd3; @@ -107881,8 +108687,8 @@ self: { }: mkDerivation { pname = "highlight-versions"; - version = "0.1.3.5"; - sha256 = "475a6c4fd63a684ccd681d613c47567f08688209c6c80a06ad027bfa7f9b675a"; + version = "0.1.3.6"; + sha256 = "7b752972d159fd1ef0458b310830ada06db3190716e44053110b3a46584fb3fd"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -108471,6 +109277,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hinotify-bytestring" = callPackage + ({ mkDerivation, base, bytestring, containers, directory + , posix-paths, unix, utf8-string + }: + mkDerivation { + pname = "hinotify-bytestring"; + version = "0.3.8.1"; + sha256 = "f67eacc194a427d48358fc63c5a896fdadbe996f15e55f423f6a9148204eac7b"; + libraryHaskellDepends = [ + base bytestring containers directory unix + ]; + testHaskellDepends = [ + base bytestring directory posix-paths unix utf8-string + ]; + homepage = "https://github.com/hasufell/hinotify-bytestring.git"; + description = "Haskell binding to inotify, using ByteString filepaths"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hinquire" = callPackage ({ mkDerivation, base, bifunctors, QuickCheck, test-framework , test-framework-quickcheck2, test-framework-th @@ -108725,7 +109550,6 @@ self: { network-uri servant servant-client split string-conversions text time ]; - jailbreak = true; description = "Hipchat API bindings in Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -109251,6 +110075,7 @@ self: { language-javascript QuickCheck test-framework test-framework-hunit text ]; + jailbreak = true; homepage = "http://github.com/erikd/hjsmin"; description = "Haskell implementation of a javascript minifier"; license = stdenv.lib.licenses.bsd3; @@ -109280,13 +110105,14 @@ self: { language-javascript QuickCheck test-framework test-framework-hunit text ]; + jailbreak = true; homepage = "http://github.com/erikd/hjsmin"; description = "Haskell implementation of a javascript minifier"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hjsmin" = callPackage + "hjsmin_0_1_5_3" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, Cabal, containers , HUnit, language-javascript, optparse-applicative, QuickCheck , test-framework, test-framework-hunit, text @@ -109309,12 +110135,14 @@ self: { language-javascript QuickCheck test-framework test-framework-hunit text ]; + jailbreak = true; homepage = "http://github.com/erikd/hjsmin"; description = "Haskell implementation of a javascript minifier"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hjsmin_0_2_0_1" = callPackage + "hjsmin" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, containers , language-javascript, optparse-applicative, text }: @@ -109331,11 +110159,9 @@ self: { base blaze-builder bytestring containers language-javascript optparse-applicative text ]; - jailbreak = true; homepage = "http://github.com/erikd/hjsmin"; description = "Haskell implementation of a javascript minifier"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hjson" = callPackage @@ -109432,6 +110258,7 @@ self: { QuickCheck tasty tasty-hunit tasty-quickcheck text unordered-containers vector wai-app-static warp ]; + jailbreak = true; homepage = "https://github.com/seagreen/hjsonschema"; description = "JSON Schema library"; license = stdenv.lib.licenses.mit; @@ -110764,12 +111591,12 @@ self: { ({ mkDerivation, base, hmatrix, liblapack, transformers }: mkDerivation { pname = "hmatrix-banded"; - version = "0.0"; - sha256 = "52a90b2094eacfbeb87befaa6a2ae44924dc175c9245b61574967a6ae1a84f16"; + version = "0.0.0.2"; + sha256 = "cb3b825d4eef1813bd1bdf43199c200d254f0d7ad78ff1ad6b0ce3752ed33b32"; libraryHaskellDepends = [ base hmatrix transformers ]; librarySystemDepends = [ liblapack ]; jailbreak = true; - homepage = "http://code.haskell.org/~thielema/hmatrix-banded/"; + homepage = "http://hub.darcs.net/thielema/hmatrix-banded/"; description = "HMatrix interface to LAPACK functions for banded matrices"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -111643,15 +112470,14 @@ self: { "hobbits" = callPackage ({ mkDerivation, base, deepseq, haskell-src-exts, haskell-src-meta , mtl, syb, tagged, template-haskell, th-expand-syns, transformers - , type-equality }: mkDerivation { pname = "hobbits"; - version = "1.1.1"; - sha256 = "1aa60e29544face622e4c049f467833f23a54caa69ba23e8f047e34bb744c660"; + version = "1.2"; + sha256 = "f778c6919bb011b565005a540f3aba6c9d4a08be530333939612358225595d50"; libraryHaskellDepends = [ base deepseq haskell-src-exts haskell-src-meta mtl syb tagged - template-haskell th-expand-syns transformers type-equality + template-haskell th-expand-syns transformers ]; jailbreak = true; description = "A library for canonically representing terms with binding"; @@ -113381,8 +114207,8 @@ self: { }: mkDerivation { pname = "hpack"; - version = "0.12.0"; - sha256 = "564bdf6870efa6437d51d2bf05a09eafe61cb3bae33cc9c43a02fa094c868748"; + version = "0.13.0"; + sha256 = "1e374c9c6ea4784371e91353bc2204d9724a0f5864916bcba355d882cde44830"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -118491,8 +119317,8 @@ self: { ({ mkDerivation, base, seccomp, tasty, tasty-hunit, unix }: mkDerivation { pname = "hsseccomp"; - version = "0.1.0.2"; - sha256 = "fce6e18b1a87e1f62f3aad709d8a41fa4b34646cc32ec973ed279914c794dc0b"; + version = "0.2.0.1"; + sha256 = "b138481c5b6ca765e06cfdad0d6efbb40c3241f09569fbd9645ca19b0bdd372f"; libraryHaskellDepends = [ base ]; librarySystemDepends = [ seccomp ]; testHaskellDepends = [ base tasty tasty-hunit unix ]; @@ -118532,28 +119358,46 @@ self: { }) {}; "hssqlppp" = callPackage - ({ mkDerivation, base, containers, groom, HUnit, mtl, parsec - , pretty, syb, template-haskell, test-framework - , test-framework-hunit, transformers, uniplate + ({ mkDerivation, base, containers, haskell-src-exts, mtl, parsec + , pretty, pretty-show, syb, tasty, tasty-hunit, template-haskell + , text, transformers, uniplate }: mkDerivation { pname = "hssqlppp"; - version = "0.4.2"; - sha256 = "f4735a94367c044eeeab7d4ee07c0c126142046a1576843c1545b1b2f0677520"; + version = "0.6.0"; + sha256 = "7052d03cfb1251f806999fee3566dc7ecc838fe1db1025ed1ac2de34774e0cbc"; libraryHaskellDepends = [ - base containers mtl parsec pretty syb template-haskell transformers + base containers mtl parsec pretty pretty-show syb text transformers uniplate ]; testHaskellDepends = [ - base containers groom HUnit mtl parsec pretty syb template-haskell - test-framework test-framework-hunit transformers uniplate + base containers haskell-src-exts mtl parsec pretty pretty-show syb + tasty tasty-hunit template-haskell text transformers uniplate ]; - jailbreak = true; homepage = "http://jakewheat.github.com/hssqlppp/"; description = "SQL parser and type checker"; license = stdenv.lib.licenses.bsd3; }) {}; + "hssqlppp-th" = callPackage + ({ mkDerivation, base, hssqlppp, syb, tasty, tasty-hunit + , template-haskell, text + }: + mkDerivation { + pname = "hssqlppp-th"; + version = "0.6.0"; + sha256 = "546e917a7e737a8e7dc78d19c15d85aae8ec98857357706e74f19f4347635785"; + libraryHaskellDepends = [ + base hssqlppp syb template-haskell text + ]; + testHaskellDepends = [ + base hssqlppp syb tasty tasty-hunit template-haskell text + ]; + homepage = "http://jakewheat.github.com/hssqlppp/"; + description = "hssqlppp extras which need template-haskell"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hstatistics_0_2_5_2" = callPackage ({ mkDerivation, array, base, hmatrix, hmatrix-gsl-stats, random , vector @@ -120859,6 +121703,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "http-dispatch" = callPackage + ({ mkDerivation, aeson, base, bytestring, case-insensitive, hspec + , http-client, http-client-tls, http-types + }: + mkDerivation { + pname = "http-dispatch"; + version = "0.3.0.0"; + sha256 = "db60bbb10034b944c940004db750de89a6baaa6a765606e20475af7650aa0f8a"; + libraryHaskellDepends = [ + aeson base bytestring case-insensitive http-client http-client-tls + http-types + ]; + testHaskellDepends = [ base hspec ]; + homepage = "http://github.com/owainlewis/http-dispatch#readme"; + description = "High level HTTP client for Haskell"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "http-encodings" = callPackage ({ mkDerivation, base, bytestring, HTTP, iconv, mime, mtl, parsec , text, utf8-string, zlib @@ -121873,13 +122735,27 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "hunit-dejafu" = callPackage + "hunit-dejafu_0_2_0_0" = callPackage ({ mkDerivation, base, dejafu, HUnit }: mkDerivation { pname = "hunit-dejafu"; version = "0.2.0.0"; sha256 = "c81eb0cd3e6c53509c056b0f37dcdb5f7fac6e7766abf36fb68c44e3dd997db0"; libraryHaskellDepends = [ base dejafu HUnit ]; + jailbreak = true; + homepage = "https://github.com/barrucadu/dejafu"; + description = "Deja Fu support for the HUnit test framework"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hunit-dejafu" = callPackage + ({ mkDerivation, base, dejafu, exceptions, HUnit }: + mkDerivation { + pname = "hunit-dejafu"; + version = "0.3.0.0"; + sha256 = "583e2d26610be4cc53c1a5b8c739e06537b86f94a9f24316274aab331deec2c9"; + libraryHaskellDepends = [ base dejafu exceptions HUnit ]; homepage = "https://github.com/barrucadu/dejafu"; description = "Deja Fu support for the HUnit test framework"; license = stdenv.lib.licenses.mit; @@ -122186,35 +123062,6 @@ self: { }) {}; "hw-bits" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, conduit - , criterion, deepseq, ghc-prim, hspec, hw-prim, lens, mmap - , mono-traversable, parsec, QuickCheck, random, resourcet, safe - , text, transformers, vector, word8 - }: - mkDerivation { - pname = "hw-bits"; - version = "0.0.0.5"; - sha256 = "a65a46718827efefcee0126b047eca6cc77561aebda3fb6e94d354b94f1d87a8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array attoparsec base bytestring conduit deepseq ghc-prim hw-prim - lens mmap mono-traversable parsec QuickCheck random resourcet safe - text vector word8 - ]; - executableHaskellDepends = [ - base bytestring conduit criterion mmap resourcet vector - ]; - testHaskellDepends = [ - attoparsec base bytestring conduit hspec mmap parsec QuickCheck - resourcet transformers vector - ]; - homepage = "http://github.com/haskell-works/hw-bits#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "hw-bits_0_0_0_6" = callPackage ({ mkDerivation, base, bytestring, criterion, hspec, hw-prim, mmap , parsec, QuickCheck, resourcet, vector }: @@ -122232,7 +123079,6 @@ self: { homepage = "http://github.com/haskell-works/hw-bits#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hw-conduit" = callPackage @@ -122256,31 +123102,6 @@ self: { }) {}; "hw-diagnostics" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, conduit - , criterion, deepseq, ghc-prim, hspec, lens, mmap, mono-traversable - , parsec, QuickCheck, random, resourcet, safe, text, vector, word8 - }: - mkDerivation { - pname = "hw-diagnostics"; - version = "0.0.0.1"; - sha256 = "109d2f419e8d8ebb4580863f84528c2d2b229a210d756f7ced7383136fed18b7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array attoparsec base bytestring conduit deepseq ghc-prim lens mmap - mono-traversable parsec QuickCheck random resourcet safe text - vector word8 - ]; - executableHaskellDepends = [ - base bytestring conduit criterion mmap resourcet vector - ]; - testHaskellDepends = [ base hspec QuickCheck ]; - homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "hw-diagnostics_0_0_0_2" = callPackage ({ mkDerivation, base, hspec, QuickCheck }: mkDerivation { pname = "hw-diagnostics"; @@ -122294,7 +123115,22 @@ self: { homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hw-parser" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, hw-prim + , mono-traversable, text + }: + mkDerivation { + pname = "hw-parser"; + version = "0.0.0.1"; + sha256 = "9b08d5bc3441cfcaa91ae613655c47dfb4e988210245df7cada3dbc2a5128025"; + libraryHaskellDepends = [ + attoparsec base bytestring hw-prim mono-traversable text + ]; + homepage = "http://github.com/haskell-works/hw-parser#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; }) {}; "hw-prim" = callPackage @@ -122303,8 +123139,8 @@ self: { }: mkDerivation { pname = "hw-prim"; - version = "0.0.0.7"; - sha256 = "ea9c3334e62e4fdaeca3db78b877621750529fa23323b1a7bee8976c6b5ba4f6"; + version = "0.0.0.10"; + sha256 = "641a1da0488664d12438f396f08577e02f9ca43b53a6f00e52085f63a5ab776e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring random vector ]; @@ -122315,25 +123151,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hw-prim_0_0_0_8" = callPackage - ({ mkDerivation, base, bytestring, hspec, QuickCheck, random - , vector - }: - mkDerivation { - pname = "hw-prim"; - version = "0.0.0.8"; - sha256 = "47c84f878d396475590223529fd9d70b277e8345a1f1b2c0d7956d968a5b14b1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring random vector ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base hspec QuickCheck ]; - homepage = "http://github.com/haskell-works/hw-prim#readme"; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hw-rankselect" = callPackage ({ mkDerivation, base, hspec, hw-bits, hw-prim, QuickCheck, vector }: @@ -122354,50 +123171,20 @@ self: { }) {}; "hw-succinct" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, conduit - , criterion, deepseq, ghc-prim, hspec, hw-bits, hw-prim, lens, mmap - , mono-traversable, parsec, QuickCheck, random, resourcet, safe - , text, transformers, vector, word8 - }: - mkDerivation { - pname = "hw-succinct"; - version = "0.0.0.7"; - sha256 = "7bca3413676c9ada97feafd12ed174fc4be570a1b8eb00a258f2a240e6adeee1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array attoparsec base bytestring conduit deepseq ghc-prim hw-bits - hw-prim lens mmap mono-traversable parsec QuickCheck random - resourcet safe text vector word8 - ]; - executableHaskellDepends = [ - base bytestring conduit criterion hw-bits hw-prim mmap resourcet - vector - ]; - testHaskellDepends = [ - attoparsec base bytestring conduit hspec hw-bits hw-prim mmap - parsec QuickCheck resourcet transformers vector - ]; - homepage = "http://github.com/haskell-works/hw-succinct#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "hw-succinct_0_0_0_8" = callPackage ({ mkDerivation, attoparsec, base, bytestring, conduit, criterion - , hspec, hw-bits, hw-conduit, hw-diagnostics, hw-prim + , hspec, hw-bits, hw-conduit, hw-diagnostics, hw-parser, hw-prim , hw-rankselect, mmap, mono-traversable, parsec, QuickCheck , resourcet, text, transformers, vector }: mkDerivation { pname = "hw-succinct"; - version = "0.0.0.8"; - sha256 = "70b1e52059a18d9ce9f6b5735f4497bf341cce4ec9265858584a4eea0d7215a2"; + version = "0.0.0.12"; + sha256 = "2005251655ba822fd8eabbb81247126014e5aea55e68dadd1547c8460a448310"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - attoparsec base bytestring conduit hw-bits hw-conduit hw-prim - hw-rankselect mono-traversable text vector + attoparsec base bytestring conduit hw-bits hw-conduit hw-parser + hw-prim hw-rankselect mono-traversable text vector ]; executableHaskellDepends = [ base bytestring conduit criterion hw-bits hw-conduit hw-diagnostics @@ -122410,7 +123197,6 @@ self: { homepage = "http://github.com/haskell-works/hw-succinct#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hwall-auth-iitk" = callPackage @@ -123448,16 +124234,19 @@ self: { }) {}; "hylogen" = callPackage - ({ mkDerivation, base, bytestring, filepath, fsnotify, http-types - , process, text, vector-space, wai, warp, websockets + ({ mkDerivation, base, bytestring, containers, filepath, fsnotify + , hashable, http-types, mtl, process, text, vector-space, wai, warp + , websockets }: mkDerivation { pname = "hylogen"; - version = "0.1.0.10"; - sha256 = "a8e59008ec5d4293ae14b52b900a8182f02640e6e5724d56f856e94cd1e5d40a"; + version = "0.1.0.12"; + sha256 = "b8906eb87088336087918208b9735259b7b5116565461ecd0333f09d46f420a9"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base vector-space ]; + libraryHaskellDepends = [ + base containers hashable mtl vector-space + ]; executableHaskellDepends = [ base bytestring filepath fsnotify http-types process text wai warp websockets @@ -124774,16 +125563,17 @@ self: { ({ mkDerivation, annotated-wl-pprint, ansi-terminal, ansi-wl-pprint , async, base, base64-bytestring, binary, blaze-html, blaze-markup , bytestring, cheapskate, containers, deepseq, directory, filepath - , fingertree, fsnotify, gmp, haskeline, libffi, mtl, network - , optparse-applicative, parsers, pretty, process, safe, split - , terminal-size, text, time, transformers, transformers-compat - , trifecta, uniplate, unix, unordered-containers, utf8-string - , vector, vector-binary-instances, zip-archive + , fingertree, fsnotify, gmp, haskeline, ieee754, libffi, mtl + , network, optparse-applicative, parsers, pretty, process, safe + , split, terminal-size, text, time, transformers + , transformers-compat, trifecta, uniplate, unix + , unordered-containers, utf8-string, vector + , vector-binary-instances, zip-archive }: mkDerivation { pname = "idris"; - version = "0.11"; - sha256 = "e0ea4df41f63f9d4292fe2ae9d3031cbc511a96c80e43240df16374335261a2a"; + version = "0.11.1"; + sha256 = "51df8882aa778000833127a64b319aba07f712fe6e41033af401fbf99c08b964"; configureFlags = [ "-fcurses" "-fffi" "-fgmp" ]; isLibrary = true; isExecutable = true; @@ -124791,10 +125581,11 @@ self: { annotated-wl-pprint ansi-terminal ansi-wl-pprint async base base64-bytestring binary blaze-html blaze-markup bytestring cheapskate containers deepseq directory filepath fingertree - fsnotify haskeline libffi mtl network optparse-applicative parsers - pretty process safe split terminal-size text time transformers - transformers-compat trifecta uniplate unix unordered-containers - utf8-string vector vector-binary-instances zip-archive + fsnotify haskeline ieee754 libffi mtl network optparse-applicative + parsers pretty process safe split terminal-size text time + transformers transformers-compat trifecta uniplate unix + unordered-containers utf8-string vector vector-binary-instances + zip-archive ]; librarySystemDepends = [ gmp ]; executableHaskellDepends = [ @@ -124804,6 +125595,7 @@ self: { base containers directory filepath haskeline process time transformers ]; + doCheck = false; homepage = "http://www.idris-lang.org/"; description = "Functional Programming Language with Dependent Types"; license = stdenv.lib.licenses.bsd3; @@ -125715,31 +126507,38 @@ self: { }) {}; "imm" = callPackage - ({ mkDerivation, async, base, bytestring, case-insensitive, cond - , data-default, directory, dyre, feed, filepath, hslogger - , http-conduit, http-types, lens, mime-mail, monad-control, mtl - , network, network-uri, old-locale, opml, random, resourcet, text - , text-icu, time, timerep, tls, transformers, transformers-base - , utf8-string, xdg-basedir, xml + ({ mkDerivation, aeson, ansi-wl-pprint, atom-conduit, base + , bytestring, case-insensitive, chunked-data, comonad, compdata + , conduit, conduit-combinators, conduit-parse, connection + , containers, directory, dyre, exceptions, fast-logger, filepath + , free, hashable, HaskellNet, HaskellNet-SSL, http-client + , http-client-tls, http-types, mime-mail, mono-traversable + , monoid-subclasses, network, opml-conduit, optparse-applicative + , rainbow, rainbox, rss-conduit, text, time, timerep, tls + , transformers, uri-bytestring, xml, xml-conduit }: mkDerivation { pname = "imm"; - version = "0.6.0.3"; - sha256 = "b488b4a0011abf516b4d71eeea0c5cdbd2a4ebb561c2ec200cb90bd9cd58183a"; - revision = "1"; - editedCabalFile = "c14d5caa0066c05d15589dfbb663c5397bcb6d12ab4477de1d7572e3a16b132d"; + version = "1.0.0.0"; + sha256 = "05bca52253f0f6ea4fc52e07f5920012e75f20cd5e3127c7ffac5647a1512af5"; + revision = "3"; + editedCabalFile = "63bff92fa6fd212e3ba6f81b4d2e74fe47e02e86b06e8b1b1cd19588331ce5e4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - async base bytestring case-insensitive cond data-default directory - dyre feed filepath hslogger http-conduit http-types lens mime-mail - monad-control mtl network network-uri old-locale opml random - resourcet text text-icu time timerep tls transformers - transformers-base utf8-string xdg-basedir xml + aeson ansi-wl-pprint atom-conduit base bytestring case-insensitive + chunked-data comonad compdata conduit conduit-combinators + conduit-parse connection containers directory dyre exceptions + fast-logger filepath free hashable HaskellNet HaskellNet-SSL + http-client http-client-tls http-types mime-mail mono-traversable + monoid-subclasses network opml-conduit optparse-applicative rainbow + rainbox rss-conduit text time timerep tls transformers + uri-bytestring xml xml-conduit ]; - executableHaskellDepends = [ base ]; + executableHaskellDepends = [ base free ]; jailbreak = true; - description = "Retrieve RSS/Atom feeds and write one mail per new item in a maildir"; + homepage = "https://github.com/k0ral/imm"; + description = "Execute arbitrary actions for each unread element of RSS/Atom feeds"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -126702,6 +127501,25 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "inline-java" = callPackage + ({ mkDerivation, base, binary, bytestring, containers + , distributed-closure, inline-c, jvm, singletons, text + , thread-local-storage, vector + }: + mkDerivation { + pname = "inline-java"; + version = "0.1"; + sha256 = "ec4a751af5749b1b12dd9fd20ae40745f0410375024bd895293d52b8386f5dcb"; + libraryHaskellDepends = [ + base binary bytestring containers distributed-closure inline-c + singletons text thread-local-storage vector + ]; + librarySystemDepends = [ jvm ]; + homepage = "http://github.com/tweag/inline-java#readme"; + description = "Java interop via inline Java code in Haskell modules"; + license = stdenv.lib.licenses.bsd3; + }) {jvm = null;}; + "inline-r" = callPackage ({ mkDerivation, aeson, base, bytestring, c2hs, containers , data-default-class, deepseq, directory, exceptions, filepath @@ -126758,6 +127576,8 @@ self: { pname = "insert-ordered-containers"; version = "0.1.0.1"; sha256 = "4905e5d128c19887a79b281150acb16cb3b043ab2c5a7788b0151ba7d46b900a"; + revision = "1"; + editedCabalFile = "845948717464c40358d8d635fa3b8240fb4a2464558527a4cfeccdf426403eaa"; libraryHaskellDepends = [ aeson base base-compat hashable lens semigroupoids semigroups text transformers unordered-containers @@ -127452,6 +128272,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "invertible" = callPackage + ({ mkDerivation, arrows, base, haskell-src-meta, HList, invariant + , lens, partial-isomorphisms, Piso, semigroupoids, template-haskell + , TypeCompose + }: + mkDerivation { + pname = "invertible"; + version = "0.1"; + sha256 = "f51ee09313044a21f4c0a5e9d7b9c9c8bb1bd91de33de9cb23d462991713829e"; + libraryHaskellDepends = [ + arrows base haskell-src-meta HList invariant lens + partial-isomorphisms Piso semigroupoids template-haskell + TypeCompose + ]; + description = "bidirectional arrows, bijective functions, and invariant functors"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "invertible-syntax" = callPackage ({ mkDerivation, base, partial-isomorphisms }: mkDerivation { @@ -130238,8 +131076,8 @@ self: { }: mkDerivation { pname = "json-ast"; - version = "0.2"; - sha256 = "595ed692fa82dc6e178d368a6a247eb19f96f643ce030b8c178ec7d54b0a4b5c"; + version = "0.3"; + sha256 = "877c8fde915cae37aa24a3d1c98dab75a81aa00a86aa7077b766ab5033c516b9"; libraryHaskellDepends = [ base scientific text unordered-containers vector ]; @@ -130258,6 +131096,7 @@ self: { libraryHaskellDepends = [ base json-ast QuickCheck quickcheck-instances ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/json-ast-quickcheck"; description = "Compatibility layer for \"json-ast\" and \"QuickCheck\""; license = stdenv.lib.licenses.mit; @@ -130506,7 +131345,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "json-autotype" = callPackage + "json-autotype_1_0_13" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, directory , filepath, GenericPretty, hashable, hflags, hint, lens, mmap, mtl , pretty, process, QuickCheck, scientific, smallcheck, text @@ -130536,6 +131375,39 @@ self: { homepage = "https://github.com/mgajda/json-autotype"; description = "Automatic type declaration for JSON input data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "json-autotype" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, directory + , filepath, GenericPretty, hashable, hflags, lens, mmap, mtl + , pretty, process, QuickCheck, scientific, smallcheck, text + , uniplate, unordered-containers, vector + }: + mkDerivation { + pname = "json-autotype"; + version = "1.0.14"; + sha256 = "37536fd9cd18ae8fa9527359cbfb8c69dc5bed51abdd7c7931ac0d12642fd2f4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers filepath GenericPretty hashable + hflags lens mmap mtl pretty process scientific text uniplate + unordered-containers vector + ]; + executableHaskellDepends = [ + aeson base bytestring containers filepath GenericPretty hashable + hflags lens mtl pretty process scientific text uniplate + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers directory filepath GenericPretty + hashable hflags lens mtl pretty process QuickCheck scientific + smallcheck text uniplate unordered-containers vector + ]; + homepage = "https://github.com/mgajda/json-autotype"; + description = "Automatic type declaration for JSON input data"; + license = stdenv.lib.licenses.bsd3; }) {}; "json-b" = callPackage @@ -130586,8 +131458,8 @@ self: { }: mkDerivation { pname = "json-encoder"; - version = "0.1.6"; - sha256 = "c19d6d4530d654f31637db1ab409295a0b33f5a3bbd16724253c0e9c347d17d9"; + version = "0.1.7"; + sha256 = "8796142da268ecd869042f8ab7cf5069dad8d75155715f39cee4ec7429b98c9d"; libraryHaskellDepends = [ base-prelude bytestring bytestring-tree-builder contravariant contravariant-extras scientific semigroups text @@ -130794,8 +131666,8 @@ self: { }: mkDerivation { pname = "json-rpc-client"; - version = "0.2.3.0"; - sha256 = "6c4325ad6d9fc8552d496f6bf680444dd90454c44c3a4265ed7e9a5b473f6a3a"; + version = "0.2.4.0"; + sha256 = "9f65be9991b073441332023cdfdf232e8455a530fb2fe922af2932e39436cee7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -130819,8 +131691,8 @@ self: { }: mkDerivation { pname = "json-rpc-server"; - version = "0.2.3.0"; - sha256 = "73d633f3bfeea0ad785916c53afb1f4e3d481bef55977dc20d51297180148337"; + version = "0.2.4.0"; + sha256 = "2a3a993a2d99f503fed13fad0193d005b2c75d768abdb64a254a687bb65e3ed1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -131877,34 +132749,6 @@ self: { }) {}; "katip" = callPackage - ({ mkDerivation, aeson, auto-update, base, bytestring, containers - , directory, either, exceptions, hostname, lens, lens-aeson - , monad-control, mtl, old-locale, quickcheck-instances - , regex-tdfa-rc, resourcet, string-conv, tasty, tasty-hunit - , tasty-quickcheck, template-haskell, temporary, text, time - , time-locale-compat, transformers, transformers-base - , transformers-compat, unix, unordered-containers - }: - mkDerivation { - pname = "katip"; - version = "0.1.1.0"; - sha256 = "37b3c7e8975343a0f3e819b402b39b97c838916a42f00a497fcdf4e04512c1e8"; - libraryHaskellDepends = [ - aeson auto-update base bytestring containers either exceptions - hostname lens lens-aeson monad-control mtl old-locale resourcet - string-conv template-haskell text time time-locale-compat - transformers transformers-base transformers-compat unix - unordered-containers - ]; - testHaskellDepends = [ - aeson base directory quickcheck-instances regex-tdfa-rc tasty - tasty-hunit tasty-quickcheck template-haskell temporary text time - ]; - description = "A structured logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "katip_0_2_0_0" = callPackage ({ mkDerivation, aeson, auto-update, base, bytestring, containers , directory, either, exceptions, hostname, microlens, microlens-th , monad-control, mtl, old-locale, quickcheck-instances @@ -131932,37 +132776,9 @@ self: { homepage = "https://github.com/Soostone/katip"; description = "A structured logging framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "katip-elasticsearch" = callPackage - ({ mkDerivation, aeson, async, base, bloodhound, containers - , enclosed-exceptions, exceptions, http-client, http-types, katip - , lens, lens-aeson, quickcheck-instances, random, retry, scientific - , stm, stm-chans, tasty, tasty-hunit, tasty-quickcheck, text, time - , transformers, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "katip-elasticsearch"; - version = "0.1.1.0"; - sha256 = "4985289f907ce8b00041bd5dd5126745eff3b7f55a5a5e8aec349869413b990f"; - libraryHaskellDepends = [ - aeson async base bloodhound enclosed-exceptions exceptions - http-client http-types katip random retry scientific stm stm-chans - text time transformers unordered-containers uuid - ]; - testHaskellDepends = [ - aeson base bloodhound containers http-client http-types katip lens - lens-aeson quickcheck-instances scientific stm tasty tasty-hunit - tasty-quickcheck text time transformers unordered-containers vector - ]; - doCheck = false; - description = "ElasticSearch scribe for the Katip logging framework"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - - "katip-elasticsearch_0_2_0_0" = callPackage ({ mkDerivation, aeson, async, base, bloodhound, containers , enclosed-exceptions, exceptions, http-client, http-types, katip , lens, lens-aeson, quickcheck-instances, random, retry, scientific @@ -131983,7 +132799,7 @@ self: { lens-aeson quickcheck-instances scientific stm tasty tasty-hunit tasty-quickcheck text time transformers unordered-containers vector ]; - jailbreak = true; + doCheck = false; description = "ElasticSearch scribe for the Katip logging framework"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -132834,7 +133650,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "keycode" = callPackage + "keycode_0_1_1" = callPackage ({ mkDerivation, base, containers }: mkDerivation { pname = "keycode"; @@ -132846,9 +133662,10 @@ self: { homepage = "https://github.com/RyanGlScott/keycode"; description = "Maps web browser keycodes to their corresponding keyboard keys"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "keycode_0_2" = callPackage + "keycode" = callPackage ({ mkDerivation, base, containers, ghc-prim }: mkDerivation { pname = "keycode"; @@ -132858,7 +133675,6 @@ self: { homepage = "https://github.com/RyanGlScott/keycode"; description = "Maps web browser keycodes to their corresponding keyboard keys"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keyed" = callPackage @@ -133598,33 +134414,18 @@ self: { }) {}; "lackey" = callPackage - ({ mkDerivation, base, servant, tasty, tasty-hspec }: - mkDerivation { - pname = "lackey"; - version = "0.2.0"; - sha256 = "8c54bd4c8901fe0a16149d57e366c3d11d21b9656f8be9ffe8eb86f25e0d0f19"; - libraryHaskellDepends = [ base servant ]; - testHaskellDepends = [ base servant tasty tasty-hspec ]; - homepage = "https://github.com/tfausak/lackey#readme"; - description = "Generate Ruby consumers of Servant APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - - "lackey_0_3_1" = callPackage ({ mkDerivation, base, servant, servant-foreign, tasty, tasty-hspec , text }: mkDerivation { pname = "lackey"; - version = "0.3.1"; - sha256 = "a7b552e3c24fbb6e272cabb897b6788712da789a3934d0ad3bae6fe9857d1d2a"; + version = "0.3.2"; + sha256 = "0da7478ee80d29eb96efaf8d3df9acc24f037b062c743a6c987765d00abf84e1"; libraryHaskellDepends = [ base servant servant-foreign text ]; testHaskellDepends = [ base servant tasty tasty-hspec text ]; - jailbreak = true; homepage = "https://github.com/tfausak/lackey#readme"; description = "Generate Ruby clients from Servant APIs"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lagrangian" = callPackage @@ -135330,7 +136131,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-javascript" = callPackage + "language-javascript_0_5_14_7" = callPackage ({ mkDerivation, alex, array, base, blaze-builder, bytestring , Cabal, containers, happy, HUnit, mtl, QuickCheck, test-framework , test-framework-hunit, utf8-light, utf8-string @@ -135351,9 +136152,10 @@ self: { homepage = "http://github.com/erikd/language-javascript"; description = "Parser for JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-javascript_0_6_0_4" = callPackage + "language-javascript" = callPackage ({ mkDerivation, alex, array, base, blaze-builder, bytestring , Cabal, containers, happy, hspec, mtl, QuickCheck, text , utf8-light, utf8-string @@ -135370,11 +136172,9 @@ self: { array base blaze-builder bytestring Cabal containers hspec mtl QuickCheck utf8-light utf8-string ]; - jailbreak = true; homepage = "http://github.com/erikd/language-javascript"; description = "Parser for JavaScript"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-kort" = callPackage @@ -135859,6 +136659,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "language-webidl" = callPackage + ({ mkDerivation, base, parsec, wl-pprint }: + mkDerivation { + pname = "language-webidl"; + version = "0.1.1.0"; + sha256 = "2318258e89b6301ae23fde9e4301f40e354f7cd4a8953c55de3291259f2cde19"; + libraryHaskellDepends = [ base parsec wl-pprint ]; + description = "Parser and Pretty Printer for WebIDL"; + license = stdenv.lib.licenses.mit; + }) {}; + "largeword_1_2_3" = callPackage ({ mkDerivation, base, binary, bytestring, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -135982,7 +136793,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "latex-formulae-hakyll" = callPackage + "latex-formulae-hakyll_0_2_0_1" = callPackage ({ mkDerivation, base, hakyll, latex-formulae-image , latex-formulae-pandoc, lrucache, pandoc-types }: @@ -135994,12 +136805,14 @@ self: { base hakyll latex-formulae-image latex-formulae-pandoc lrucache pandoc-types ]; + jailbreak = true; homepage = "https://github.com/liamoc/latex-formulae#readme"; description = "Use actual LaTeX to render formulae inside Hakyll pages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "latex-formulae-hakyll_0_2_0_2" = callPackage + "latex-formulae-hakyll" = callPackage ({ mkDerivation, base, hakyll, latex-formulae-image , latex-formulae-pandoc, lrucache, pandoc-types }: @@ -136014,7 +136827,6 @@ self: { homepage = "https://github.com/liamoc/latex-formulae#readme"; description = "Use actual LaTeX to render formulae inside Hakyll pages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "latex-formulae-image_0_1_1_0" = callPackage @@ -136863,7 +137675,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "lens_4_13_2_1" = callPackage + "lens_4_14" = callPackage ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring , comonad, containers, contravariant, deepseq, directory , distributive, doctest, exceptions, filepath, free @@ -136876,8 +137688,8 @@ self: { }: mkDerivation { pname = "lens"; - version = "4.13.2.1"; - sha256 = "d48509a066f864c3c6a8944117e788bab80587d40b1799600c99da389ee249b6"; + version = "4.14"; + sha256 = "70a3cd18ef352950b88d6cac449988b9320704b56dceda80e7de9f2907ee5f4b"; libraryHaskellDepends = [ array base base-orphans bifunctors bytestring comonad containers contravariant distributive exceptions filepath free ghc-prim @@ -137044,10 +137856,10 @@ self: { ({ mkDerivation, base, lens, time }: mkDerivation { pname = "lens-datetime"; - version = "0.2.1"; - sha256 = "e2445f051d99a3f76890f7a6c91c7baccb1e587e1ba6d67ea4d20e6efdd113f3"; + version = "0.3"; + sha256 = "bb1f8d7bf71c9ef8901bc39e2a2d629b1101307115c0c4d844fcbd8e86b6ccd4"; libraryHaskellDepends = [ base lens time ]; - homepage = "http://github.com/nilcons/lens-datetime"; + homepage = "https://github.com/nilcons/lens-datetime"; description = "Lenses for Data.Time.* types"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -137330,7 +138142,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lentil" = callPackage + "lentil_0_1_11_0" = callPackage ({ mkDerivation, ansi-wl-pprint, base, csv, directory, filemanip , filepath, hspec, natural-sort, optparse-applicative, parsec , regex-tdfa @@ -137339,6 +138151,33 @@ self: { pname = "lentil"; version = "0.1.11.0"; sha256 = "7185c00900bb288df3f335c87e522e12a4ba2052c4937d98d50a053a609bb71f"; + revision = "1"; + editedCabalFile = "0636a6b80d201ceb5d301d9057052f30eb83da5fb153ba06aa5091cfc3c2999e"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + ansi-wl-pprint base csv directory filemanip filepath natural-sort + optparse-applicative parsec regex-tdfa + ]; + testHaskellDepends = [ + ansi-wl-pprint base csv directory filemanip filepath hspec + natural-sort optparse-applicative parsec regex-tdfa + ]; + homepage = "http://www.ariis.it/static/articles/lentil/page.html"; + description = "frugal issue tracker"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "lentil" = callPackage + ({ mkDerivation, ansi-wl-pprint, base, csv, directory, filemanip + , filepath, hspec, natural-sort, optparse-applicative, parsec + , regex-tdfa + }: + mkDerivation { + pname = "lentil"; + version = "0.1.12.0"; + sha256 = "a49c806f024ba30197a85f043c84d8ad1ca5aaca3b6d96ebb8727a4e438380fb"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -138110,22 +138949,35 @@ self: { }) {}; "libravatar" = callPackage - ({ mkDerivation, base, bytestring, crypto-api, data-default-class - , dns, network-uri, pureMD5, random, SHA, url, utf8-string + ({ mkDerivation, base, bytestring, cryptonite, data-default-class + , dns, network-uri, random, url, utf8-string }: mkDerivation { pname = "libravatar"; - version = "0.3.0.0"; - sha256 = "2371b91f8ff4abdeba4374d20b4fa9c90fe0e9871c874bd61f32380b32ef88bf"; + version = "0.3.0.1"; + sha256 = "43c646e85abcf577cb0fa09feffbbd45f4cd4cc6203db33d5a6e5a61da42dace"; libraryHaskellDepends = [ - base bytestring crypto-api data-default-class dns network-uri - pureMD5 random SHA url utf8-string + base bytestring cryptonite data-default-class dns network-uri + random url utf8-string ]; homepage = "http://rel4tion.org/projects/libravatar/"; description = "Use Libravatar, the decentralized avatar delivery service"; license = stdenv.lib.licenses.publicDomain; }) {}; + "libroman" = callPackage + ({ mkDerivation, base, hspec, QuickCheck, word8 }: + mkDerivation { + pname = "libroman"; + version = "1.0.1"; + sha256 = "864dd1ebfe4709ff48c0d4678ca2ee5da62b864228b165e04dbcccc64fb24b84"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec QuickCheck word8 ]; + homepage = "https://ahakki.xyz"; + description = "arabic to roman numeral conversions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "libssh2" = callPackage ({ mkDerivation, base, bytestring, c2hs, libssh2, network, ssh2 , syb, time @@ -140842,8 +141694,8 @@ self: { }: mkDerivation { pname = "log"; - version = "0.3.1"; - sha256 = "6239019b513145e0e8117dff2deaca0a85c9f36f0419c892c7c93def98624b0e"; + version = "0.4"; + sha256 = "0358e82bd4e261545fefbf197eac335daa5e05987948dc322b7e16439755132f"; libraryHaskellDepends = [ aeson aeson-pretty base base64-bytestring bytestring deepseq exceptions hpqtypes lifted-base monad-control monad-time mtl @@ -142259,8 +143111,8 @@ self: { }: mkDerivation { pname = "luminance"; - version = "0.11"; - sha256 = "d29c8b29daba5fc5f563cac7c1ac32f876338ff62f3012bc18ed966d35a36378"; + version = "0.11.0.1"; + sha256 = "bb61c59d14a0f12866365c5ec97bc791c4f9ae0cbad7b191769d14650f52eb44"; libraryHaskellDepends = [ base containers contravariant dlist gl linear mtl resourcet semigroups transformers vector void @@ -143335,8 +144187,8 @@ self: { ({ mkDerivation, base, containers, srcloc, text }: mkDerivation { pname = "mainland-pretty"; - version = "0.4.1.3"; - sha256 = "d833485def1f7b9320b76fee7f7cbc1462d6358e87af05aea049ddd6cc7b4640"; + version = "0.4.1.4"; + sha256 = "b6526b119dd84e006740c69ab794d0a43b855fea29bb2a3a8ed2568b995faf9c"; libraryHaskellDepends = [ base containers srcloc text ]; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "Pretty printing designed for printing source code"; @@ -144017,7 +144869,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mandrill" = callPackage + "mandrill_0_5_1_0" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, blaze-html , bytestring, containers, email-validate, http-client , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck @@ -144039,6 +144891,31 @@ self: { ]; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mandrill" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, blaze-html + , bytestring, containers, email-validate, http-client + , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck + , raw-strings-qq, tasty, tasty-hunit, tasty-quickcheck, text, time + , unordered-containers + }: + mkDerivation { + pname = "mandrill"; + version = "0.5.2.0"; + sha256 = "323a44776aaf831361f395a50d43032c615936112c147719221008c6a89e62cd"; + libraryHaskellDepends = [ + aeson base base64-bytestring blaze-html bytestring containers + email-validate http-client http-client-tls http-types lens mtl + old-locale QuickCheck text time unordered-containers + ]; + testHaskellDepends = [ + aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit + tasty-quickcheck text + ]; + description = "Library for interfacing with the Mandrill JSON API"; + license = stdenv.lib.licenses.mit; }) {}; "mandulia" = callPackage @@ -144758,7 +145635,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) pcre;}; - "math-functions" = callPackage + "math-functions_0_1_5_2" = callPackage ({ mkDerivation, base, deepseq, erf, HUnit, ieee754, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 , vector, vector-th-unbox @@ -144779,9 +145656,10 @@ self: { homepage = "https://github.com/bos/math-functions"; description = "Special functions and Chebyshev polynomials"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "math-functions_0_1_6_0" = callPackage + "math-functions" = callPackage ({ mkDerivation, base, deepseq, erf, HUnit, ieee754, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 , vector, vector-th-unbox @@ -144797,10 +145675,10 @@ self: { base HUnit ieee754 QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 vector ]; + doCheck = false; homepage = "https://github.com/bos/math-functions"; description = "Special functions and Chebyshev polynomials"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mathblog" = callPackage @@ -147537,7 +148415,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mime-types" = callPackage + "mime-types_0_1_0_6" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "mime-types"; @@ -147547,9 +148425,10 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Basic mime-type handling types and functions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mime-types_0_1_0_7" = callPackage + "mime-types" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "mime-types"; @@ -147559,7 +148438,6 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Basic mime-type handling types and functions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mines" = callPackage @@ -148322,8 +149200,8 @@ self: { }: mkDerivation { pname = "module-management"; - version = "0.20.4"; - sha256 = "f85be205a423d8fb2251a432ec4492a4d11cfa41aaa7005a3e958108809fbba0"; + version = "0.21"; + sha256 = "2518ed4e792fe743d14bc787347cda74bd4eb0aa070831e5453f5b1063a3e28e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -148339,7 +149217,6 @@ self: { testHaskellDepends = [ base containers filepath haskell-src-exts HUnit process ]; - jailbreak = true; homepage = "https://github.com/seereason/module-management"; description = "Clean up module imports, split and merge modules"; license = stdenv.lib.licenses.bsd3; @@ -148967,6 +149844,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "monad-log" = callPackage + ({ mkDerivation, aeson, base, bytestring, exceptions, fast-logger + , lifted-base, monad-control, template-haskell, text, text-show + , transformers + }: + mkDerivation { + pname = "monad-log"; + version = "0.1.1.0"; + sha256 = "34000c62083e4b32c59a8a7a731608a573ce3fec97a4cf34d16cf77c2e7e8bc1"; + libraryHaskellDepends = [ + aeson base bytestring exceptions fast-logger lifted-base + monad-control template-haskell text text-show transformers + ]; + description = "A simple and fast logging monad"; + license = stdenv.lib.licenses.mit; + }) {}; + "monad-logger_0_3_11" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, conduit , conduit-extra, exceptions, fast-logger, lifted-base @@ -149690,7 +150584,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "monad-time" = callPackage + "monad-time_0_1" = callPackage ({ mkDerivation, base, mtl, time }: mkDerivation { pname = "monad-time"; @@ -149700,6 +150594,20 @@ self: { homepage = "https://github.com/scrive/monad-time"; description = "Type class for monads which carry the notion of the current time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-time" = callPackage + ({ mkDerivation, base, mtl, time }: + mkDerivation { + pname = "monad-time"; + version = "0.2"; + sha256 = "a9b901ca94b4c71d5f374a472506db92d26b13af523ceafe1e3302e8bae8b05d"; + libraryHaskellDepends = [ base mtl time ]; + testHaskellDepends = [ base mtl time ]; + homepage = "https://github.com/scrive/monad-time"; + description = "Type class for monads which carry the notion of the current time"; + license = stdenv.lib.licenses.bsd3; }) {}; "monad-tx" = callPackage @@ -149729,7 +150637,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monad-unlift" = callPackage + "monad-unlift_0_1_1_0" = callPackage ({ mkDerivation, base, constraints, exceptions, monad-control, mtl , mutable-containers, resourcet, stm, transformers , transformers-base @@ -149745,6 +150653,61 @@ self: { homepage = "https://github.com/fpco/monad-unlift"; description = "Typeclasses for representing monad transformer unlifting"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-unlift" = callPackage + ({ mkDerivation, base, constraints, exceptions, monad-control, mtl + , mutable-containers, resourcet, stm, transformers + , transformers-base + }: + mkDerivation { + pname = "monad-unlift"; + version = "0.1.2.0"; + sha256 = "3cefba607cd9ebc42c93afa17b2d4be0dd9496638b79895a2a5fff0e3e17641d"; + libraryHaskellDepends = [ + base constraints exceptions monad-control mtl mutable-containers + resourcet stm transformers transformers-base + ]; + homepage = "https://github.com/fpco/monad-unlift"; + description = "Typeclasses for representing monad transformer unlifting"; + license = stdenv.lib.licenses.mit; + }) {}; + + "monad-unlift_0_2_0" = callPackage + ({ mkDerivation, base, constraints, monad-control, transformers + , transformers-base + }: + mkDerivation { + pname = "monad-unlift"; + version = "0.2.0"; + sha256 = "4b5e638619e4821918b4ec67aeffb581ab9df23d168fbb72164137009a15ee0f"; + libraryHaskellDepends = [ + base constraints monad-control transformers transformers-base + ]; + homepage = "https://github.com/fpco/monad-unlift"; + description = "Typeclasses for representing monad transformer unlifting"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-unlift-ref" = callPackage + ({ mkDerivation, base, constraints, exceptions, monad-control + , monad-unlift, mtl, mutable-containers, resourcet, stm + , transformers, transformers-base + }: + mkDerivation { + pname = "monad-unlift-ref"; + version = "0.2.0"; + sha256 = "a97acc3384dcde65109400d77fa0cd58617c77708204d7d825b6591a65444ce1"; + libraryHaskellDepends = [ + base constraints exceptions monad-control monad-unlift mtl + mutable-containers resourcet stm transformers transformers-base + ]; + jailbreak = true; + homepage = "https://github.com/fpco/monad-unlift"; + description = "Typeclasses for representing monad transformer unlifting"; + license = stdenv.lib.licenses.mit; }) {}; "monad-wrap" = callPackage @@ -150081,7 +151044,6 @@ self: { base hspec network servant servant-client servant-server time timerep transformers wai warp ]; - jailbreak = true; description = "Haskell bindings for the Mondo API"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -150842,7 +151804,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monoidal-containers" = callPackage + "monoidal-containers_0_1_2_4" = callPackage ({ mkDerivation, base, containers, deepseq, hashable, lens, newtype , unordered-containers }: @@ -150856,6 +151818,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.1.2.5"; + sha256 = "c82124b1e867a271bafeffb6fb8fb1febb1887154bf28225b174180babc9d438"; + 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 @@ -151079,34 +152058,6 @@ self: { }) {}; "morte" = callPackage - ({ mkDerivation, alex, array, base, binary, containers, deepseq - , Earley, http-client, http-client-tls, microlens, microlens-mtl - , mtl, optparse-applicative, pipes, QuickCheck, system-fileio - , system-filepath, tasty, tasty-hunit, tasty-quickcheck, text - , text-format, transformers - }: - mkDerivation { - pname = "morte"; - version = "1.5.1"; - sha256 = "51868301687ac66d80597267a36c99622a1a357a88690fadf283974d7936f0f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base binary containers deepseq Earley http-client - http-client-tls microlens microlens-mtl pipes system-fileio - system-filepath text text-format transformers - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ base optparse-applicative text ]; - testHaskellDepends = [ - base mtl QuickCheck system-filepath tasty tasty-hunit - tasty-quickcheck text transformers - ]; - description = "A bare-bones calculus of constructions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "morte_1_6_0" = callPackage ({ mkDerivation, alex, array, base, binary, containers, deepseq , Earley, http-client, http-client-tls, microlens, microlens-mtl , mtl, optparse-applicative, pipes, QuickCheck, system-fileio @@ -151132,7 +152083,6 @@ self: { ]; description = "A bare-bones calculus of constructions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mosaico-lib" = callPackage @@ -152329,7 +153279,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "murmur-hash" = callPackage + "murmur-hash_0_1_0_8" = callPackage ({ mkDerivation, base, bytestring }: mkDerivation { pname = "murmur-hash"; @@ -152339,6 +153289,19 @@ self: { homepage = "http://github.com/nominolo/murmur-hash"; description = "MurmurHash2 implementation for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "murmur-hash" = callPackage + ({ mkDerivation, base, bytestring }: + mkDerivation { + pname = "murmur-hash"; + version = "0.1.0.9"; + sha256 = "89b9db94ead4cc0784dbcfb47c51b5664c1718860db00cd8ada3ef6fdd4465ad"; + libraryHaskellDepends = [ base bytestring ]; + homepage = "http://github.com/nominolo/murmur-hash"; + description = "MurmurHash2 implementation for Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "murmur3" = callPackage @@ -152785,7 +153748,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mutable-containers" = callPackage + "mutable-containers_0_3_2" = callPackage ({ mkDerivation, base, containers, ghc-prim, hspec , mono-traversable, primitive, QuickCheck, vector }: @@ -152802,9 +153765,10 @@ 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_0_3_2_1" = callPackage + "mutable-containers" = callPackage ({ mkDerivation, base, containers, ghc-prim, hspec , mono-traversable, primitive, QuickCheck, vector }: @@ -152821,7 +153785,6 @@ 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-iter" = callPackage @@ -154567,13 +155530,12 @@ self: { pname = "netrc"; version = "0.2.0.0"; sha256 = "9a5e07efa44f4b715b110aa4f9687e2b75458fb7537a2f4f1a3582c9e2e82a86"; - revision = "1"; - editedCabalFile = "55e4e8785866fa2145f9b4de21522d4092a7c486845062915704b2917b8c4fbd"; + revision = "2"; + editedCabalFile = "81e838434e1cae11b94edbcfb61fee89f847a32e5a745fe59de69e6af9207ac9"; libraryHaskellDepends = [ base bytestring deepseq parsec ]; testHaskellDepends = [ base bytestring tasty tasty-golden tasty-quickcheck ]; - jailbreak = true; homepage = "https://github.com/hvr/netrc"; description = "Parser for .netrc files"; license = stdenv.lib.licenses.gpl3; @@ -155031,6 +155993,7 @@ self: { attoparsec base bytestring exceptions hspec mtl network network-simple transformers ]; + doCheck = false; homepage = "http://github.com/solatis/haskell-network-attoparsec"; description = "Utility functions for running a parser against a socket"; license = stdenv.lib.licenses.mit; @@ -156266,13 +157229,12 @@ self: { }: mkDerivation { pname = "newtype-deriving"; - version = "0.1.3"; - sha256 = "15090bbb5327da577b9f06d8d703c9762aabf7446cf930096b9c1273d28f83ba"; + version = "0.1.4"; + sha256 = "14f62033ad7c59aa3121c336c2fac3fd1374accde3ad996d6c94c525f55697e2"; libraryHaskellDepends = [ base base-prelude monad-control template-haskell transformers transformers-base ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/newtype-deriving"; description = "Instance derivers for newtype wrappers"; license = stdenv.lib.licenses.mit; @@ -156716,8 +157678,8 @@ self: { ({ mkDerivation, array, base, containers, regex-compat }: mkDerivation { pname = "nofib-analyse"; - version = "7.12.0.20151208"; - sha256 = "d0ba0f82bbd0d1324e6331d75f43a0b5c1c207a3ad7df16668b730bb336725ad"; + version = "8.1.0.20160428"; + sha256 = "2672847477c5a5cceb0495cea009f1b531ae84901e563d5d851d187729384ea1"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ array base containers regex-compat ]; @@ -157823,8 +158785,8 @@ self: { }: mkDerivation { pname = "octane"; - version = "0.4.17"; - sha256 = "0384e4d970bed711c8415bba64e4fae6d8a18a442defc3775bd08fb46bbdd18e"; + version = "0.4.18"; + sha256 = "75662d122bf7eb1f552cda017e45d74b2f0364a45ac0a11eb3af1687d8ce8f44"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -157840,15 +158802,15 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "octane_0_4_18" = callPackage + "octane_0_4_19" = callPackage ({ mkDerivation, aeson, aeson-pretty, autoexporter, base, binary , binary-bits, bytestring, containers, data-binary-ieee754, deepseq , newtype-generics, tasty, tasty-hspec, text }: mkDerivation { pname = "octane"; - version = "0.4.18"; - sha256 = "75662d122bf7eb1f552cda017e45d74b2f0364a45ac0a11eb3af1687d8ce8f44"; + version = "0.4.19"; + sha256 = "e0e71189d3c0848e2c2c59cae80d82979be5d00c25e38a100392022c9ce43ab1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -158702,8 +159664,8 @@ self: { }: mkDerivation { pname = "open-typerep"; - version = "0.5"; - sha256 = "8060a300cc6a3f72a0b3aba74574399c112362f74bbc69498203e82dd0986d22"; + version = "0.6"; + sha256 = "22f9e8654c243e7f98c110dbf7401c1d0ff3a547e012fa9d10a16ab4853f77b0"; libraryHaskellDepends = [ base constraints mtl syntactic tagged template-haskell ]; @@ -159016,6 +159978,26 @@ self: { license = "GPL"; }) {}; + "opensource" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-client + , http-client-tls, tasty, tasty-hunit, text, transformers + }: + mkDerivation { + pname = "opensource"; + version = "0.1.0.0"; + sha256 = "3459b6ce70fb8fc8bdf9d9f6ed0476724cb8a11b673fc60422edac2376620127"; + libraryHaskellDepends = [ + aeson base http-client http-client-tls text transformers + ]; + testHaskellDepends = [ + aeson base bytestring http-client http-client-tls tasty tasty-hunit + text transformers + ]; + homepage = "https://api.opensource.org/"; + description = "Haskell API Wrapper for the Open Source License API"; + license = stdenv.lib.licenses.mit; + }) {}; + "openssh-github-keys" = callPackage ({ mkDerivation, base, directory, dotenv, filepath, hspec , keyword-args, octohat, optparse-applicative, parsec, text, unix @@ -161559,8 +162541,8 @@ self: { }: mkDerivation { pname = "pandoc-crossref"; - version = "0.2.0.1"; - sha256 = "44bdbc38d8d7a743951a2333fb70b33a6497b2d50ccdb5696736fdc5133aef21"; + version = "0.2.1.1"; + sha256 = "4b90d228a8943e31ad7d2a1861b74bdb98af9422e3e675c209a012ca54e0deaa"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -162114,6 +163096,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "paranoia" = callPackage + ({ mkDerivation, base, bytestring, directory, filepath, hdaemonize + , HsOpenSSL, http-client, http-client-openssl, http-types, network + , optparse-applicative, split, streaming-commons, text, time, unix + , wai, warp + }: + mkDerivation { + pname = "paranoia"; + version = "0.1.0.0"; + sha256 = "57fba4430304c244476c898cf22206077c54f827e698ca7e18cf60a42fe7c2ec"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring directory filepath HsOpenSSL http-client + http-client-openssl http-types network split streaming-commons text + time unix wai warp + ]; + executableHaskellDepends = [ + base hdaemonize optparse-applicative + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/troydm/paranoia#readme"; + description = "http proxy server"; + license = stdenv.lib.licenses.mit; + }) {}; + "parco" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { @@ -164121,6 +165129,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "perfecthash" = callPackage + ({ mkDerivation, array, base, bytestring, cmph, containers, hspec + , QuickCheck, time + }: + mkDerivation { + pname = "perfecthash"; + version = "0.2.0"; + sha256 = "99274578782539261b153b1f76adce3346157fa41cb6844d6265a70f72e209e3"; + libraryHaskellDepends = [ + array base bytestring cmph containers time + ]; + testHaskellDepends = [ + base bytestring cmph containers hspec QuickCheck + ]; + description = "A perfect hashing library for mapping bytestrings to values"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "period" = callPackage ({ mkDerivation, base, hspec, HUnit, old-locale , optparse-applicative, parsec, text, text-show, time @@ -164815,6 +165841,34 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent-audit" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, getopt-generics + , hspec, mongoDB, persistent, persistent-mongoDB, persistent-sqlite + , persistent-template, text, time, transformers + }: + mkDerivation { + pname = "persistent-audit"; + version = "0.1.0.1"; + sha256 = "d610b0614e3005958e5dcaf59fd9e847d36606cbf5dd1af0b43708e39729f956"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base bytestring mongoDB persistent persistent-mongoDB + persistent-template text time transformers + ]; + executableHaskellDepends = [ + attoparsec base bytestring getopt-generics mongoDB persistent + persistent-mongoDB persistent-template text time + ]; + testHaskellDepends = [ + attoparsec base bytestring hspec mongoDB persistent + persistent-mongoDB persistent-sqlite persistent-template text time + transformers + ]; + description = "Parses a Persist Model file and produces Audit Models"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "persistent-cereal" = callPackage ({ mkDerivation, base, cereal, persistent, text }: mkDerivation { @@ -166162,7 +167216,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-template" = callPackage + "persistent-template_2_1_6" = callPackage ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers , ghc-prim, hspec, http-api-data, monad-control, monad-logger , path-pieces, persistent, QuickCheck, tagged, template-haskell @@ -166183,6 +167237,31 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "persistent-template" = callPackage + ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers + , ghc-prim, hspec, http-api-data, monad-control, monad-logger + , path-pieces, persistent, QuickCheck, tagged, template-haskell + , text, transformers, unordered-containers + }: + mkDerivation { + pname = "persistent-template"; + version = "2.1.8"; + sha256 = "71fdbbf04cc9f2f9f897eafb71bf6c3243a9cee58942eb381e2ef6b684456a77"; + libraryHaskellDepends = [ + aeson aeson-compat base bytestring containers ghc-prim + http-api-data monad-control monad-logger path-pieces persistent + tagged template-haskell text transformers unordered-containers + ]; + testHaskellDepends = [ + aeson base bytestring hspec persistent QuickCheck text transformers + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, non-relational, multi-backend persistence"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -166639,6 +167718,29 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; + "phoityne-vscode" = callPackage + ({ mkDerivation, aeson, base, bytestring, Cabal, cmdargs, conduit + , conduit-extra, ConfigFile, containers, directory, filepath + , hslogger, hspec, HStringTemplate, MissingH, mtl, parsec, process + , resourcet, safe, split, text, transformers + }: + mkDerivation { + pname = "phoityne-vscode"; + version = "0.0.1.0"; + sha256 = "17c662ed380004e0268b3b2dc5c467914e74bd479688fd9ce2b66530f49fb07e"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base bytestring Cabal cmdargs conduit conduit-extra + ConfigFile containers directory filepath hslogger HStringTemplate + MissingH mtl parsec process resourcet safe split text transformers + ]; + testHaskellDepends = [ aeson base hspec ]; + homepage = "https://sites.google.com/site/phoityne/"; + description = "ghci debug viewer on Visual Studio Code"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "phone-numbers" = callPackage ({ mkDerivation, base, bytestring, phonenumber }: mkDerivation { @@ -167045,16 +168147,17 @@ self: { "pinchot" = callPackage ({ mkDerivation, base, containers, Earley, lens, ListLike - , template-haskell, transformers + , semigroups, template-haskell, transformers }: mkDerivation { pname = "pinchot"; - version = "0.16.0.0"; - sha256 = "b0fef14a482caff2cb1e7985205ec914019996a75960fc1f937d2d8da18b15bd"; + version = "0.18.0.0"; + sha256 = "83493be81fe847f04dccd8868f33fedb95f35e4624d99a8e40e41c6eee3a2c9a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers Earley lens ListLike template-haskell transformers + base containers Earley lens ListLike semigroups template-haskell + transformers ]; homepage = "http://www.github.com/massysett/pinchot"; description = "Write grammars, not parsers"; @@ -168276,28 +169379,6 @@ self: { }) {}; "pipes-transduce" = callPackage - ({ mkDerivation, base, bifunctors, bytestring, conceit, doctest - , foldl, free, lens-family-core, pipes, pipes-bytestring - , pipes-concurrency, pipes-group, pipes-parse, pipes-safe - , pipes-text, tasty, tasty-hunit, text, transformers, void - }: - mkDerivation { - pname = "pipes-transduce"; - version = "0.3.3.0"; - sha256 = "af40b285eb0e55f8ba17223890b09b4b9cc9b9774d55c7539d878e1d3d68c49b"; - libraryHaskellDepends = [ - base bifunctors bytestring conceit foldl free lens-family-core - pipes pipes-bytestring pipes-concurrency pipes-group pipes-parse - pipes-safe pipes-text text transformers void - ]; - testHaskellDepends = [ - base doctest foldl free pipes tasty tasty-hunit text - ]; - description = "Interfacing pipes with foldl folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "pipes-transduce_0_4" = callPackage ({ mkDerivation, base, bifunctors, bytestring, conceit, doctest , foldl, free, microlens, pipes, pipes-bytestring , pipes-concurrency, pipes-group, pipes-parse, pipes-safe @@ -168317,7 +169398,6 @@ self: { ]; description = "Interfacing pipes with foldl folds"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-vector" = callPackage @@ -170446,6 +171526,7 @@ self: { tasty tasty-hunit tasty-quickcheck tasty-smallcheck text time transformers uuid vector ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/postgresql-binary"; description = "Encoders and decoders for the PostgreSQL's binary format"; @@ -170744,7 +171825,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "postgresql-simple" = callPackage + "postgresql-simple_0_5_1_2" = callPackage ({ mkDerivation, aeson, attoparsec, base, base16-bytestring , bytestring, bytestring-builder, case-insensitive, containers , cryptohash, hashable, HUnit, postgresql-libpq, scientific @@ -170766,6 +171847,31 @@ self: { doCheck = false; description = "Mid-Level PostgreSQL client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "postgresql-simple" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring + , bytestring, bytestring-builder, case-insensitive, containers + , cryptohash, hashable, HUnit, postgresql-libpq, scientific + , template-haskell, text, time, transformers, uuid-types, vector + }: + mkDerivation { + pname = "postgresql-simple"; + version = "0.5.1.3"; + sha256 = "fadc86b416d0f16b12b8a30a98196ab9b1788d5612cc66e5c871726a861cbc24"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring bytestring-builder + case-insensitive containers hashable postgresql-libpq scientific + template-haskell text time transformers uuid-types vector + ]; + testHaskellDepends = [ + aeson base base16-bytestring bytestring containers cryptohash HUnit + text time vector + ]; + doCheck = false; + description = "Mid-Level PostgreSQL client library"; + license = stdenv.lib.licenses.bsd3; }) {}; "postgresql-simple-migration" = callPackage @@ -170843,6 +171949,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "postgresql-transactional" = callPackage + ({ mkDerivation, base, monad-control, mtl, postgresql-simple }: + mkDerivation { + pname = "postgresql-transactional"; + version = "1.0.0"; + sha256 = "5d4468f6142628432a6f6ace9485ac441a54f6ce42a99d8efaad6f532a9bfd48"; + libraryHaskellDepends = [ + base monad-control mtl postgresql-simple + ]; + description = "a transactional monad on top of postgresql-simple"; + license = stdenv.lib.licenses.mit; + }) {}; + "postgresql-typed" = callPackage ({ mkDerivation, aeson, array, attoparsec, base, binary, bytestring , containers, cryptonite, haskell-src-meta, memory, network @@ -171168,6 +172287,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "pred-set" = callPackage + ({ mkDerivation, base, hashable, hashtables, HSet }: + mkDerivation { + pname = "pred-set"; + version = "0.0.1"; + sha256 = "cb22ec50f94cf76b6bc55fd66b91badfef657cbe1a6b6a59b691e48004c37726"; + libraryHaskellDepends = [ base hashable hashtables HSet ]; + description = "Simple cached predicates"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pred-trie_0_2_0" = callPackage ({ mkDerivation, base, hspec, QuickCheck, quickcheck-instances , semigroups @@ -171185,7 +172315,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pred-trie" = callPackage + "pred-trie_0_5_0" = callPackage ({ mkDerivation, attoparsec, base, composition-extra, deepseq , errors, hashable, mtl, poly-arity, QuickCheck , quickcheck-instances, semigroups, tasty, tasty-hunit @@ -171206,6 +172336,31 @@ self: { ]; description = "Predicative tries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pred-trie" = callPackage + ({ mkDerivation, attoparsec, base, composition-extra, containers + , deepseq, errors, hashable, hashtables, mtl, poly-arity, pred-set + , QuickCheck, quickcheck-instances, semigroups, tasty, tasty-hunit + , tasty-quickcheck, text, tries, unordered-containers + }: + mkDerivation { + pname = "pred-trie"; + version = "0.5.1"; + sha256 = "821e1cefa47a3090808af5c39d9997f6471e05aa4f98b46e05eccb9c4a99cdd1"; + libraryHaskellDepends = [ + base composition-extra containers hashable hashtables mtl + poly-arity pred-set QuickCheck semigroups tries + unordered-containers + ]; + testHaskellDepends = [ + attoparsec base composition-extra deepseq errors hashable mtl + poly-arity QuickCheck quickcheck-instances semigroups tasty + tasty-hunit tasty-quickcheck text tries unordered-containers + ]; + description = "Predicative tries"; + license = stdenv.lib.licenses.bsd3; }) {}; "predicates" = callPackage @@ -171835,6 +172990,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "prim-spoon" = callPackage + ({ mkDerivation, base, ghc-prim, HUnit, QuickCheck, spoon }: + mkDerivation { + pname = "prim-spoon"; + version = "0.1.0"; + sha256 = "3349b21d56c9c635c89b679d805e155cf658a26a675f553cbb261d61b776a27c"; + libraryHaskellDepends = [ base ghc-prim spoon ]; + testHaskellDepends = [ base HUnit QuickCheck spoon ]; + homepage = "https://github.com/michaeljklein/prim-spoon"; + description = "Catch errors thrown from pure computations using primops"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "prim-uniq" = callPackage ({ mkDerivation, base, dependent-sum, primitive }: mkDerivation { @@ -173079,8 +174247,8 @@ self: { }: mkDerivation { pname = "propellor"; - version = "3.0.1"; - sha256 = "6a0e12e90f1c962f477e210f3f99216c1d1a7b1ac2459a7122d04ab1e4fc5263"; + version = "3.0.3"; + sha256 = "c0dc9dff49c9062e51fd4e7486fe3d882766633f51110161d56c5011c378ee45"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -173792,7 +174960,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "psqueues" = callPackage + "psqueues_0_2_2_0" = callPackage ({ mkDerivation, array, base, deepseq, ghc-prim, hashable, HUnit , QuickCheck, tagged, test-framework, test-framework-hunit , test-framework-quickcheck2 @@ -173808,9 +174976,10 @@ self: { ]; description = "Pure priority search queues"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "psqueues_0_2_2_1" = callPackage + "psqueues" = callPackage ({ mkDerivation, array, base, deepseq, ghc-prim, hashable, HUnit , QuickCheck, tagged, test-framework, test-framework-hunit , test-framework-quickcheck2 @@ -173826,7 +174995,6 @@ self: { ]; description = "Pure priority search queues"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pub" = callPackage @@ -174513,50 +175681,6 @@ self: { }) {}; "purescript" = callPackage - ({ mkDerivation, aeson, aeson-better-errors, ansi-wl-pprint, base - , base-compat, bower-json, boxes, bytestring, containers, directory - , dlist, edit-distance, filepath, fsnotify, Glob, haskeline, hspec - , hspec-discover, http-types, HUnit, language-javascript - , lifted-base, monad-control, monad-logger, mtl, network - , optparse-applicative, parallel, parsec, pattern-arrows, pipes - , pipes-http, process, regex-tdfa, safe, semigroups, sourcemap - , split, stm, syb, text, time, transformers, transformers-base - , transformers-compat, unordered-containers, utf8-string, vector - }: - mkDerivation { - pname = "purescript"; - version = "0.8.3.0"; - sha256 = "3081eb17a8e3a61ef2b41c993b74f29d9e1091a2a7739f3c9c31530b1baebda7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-better-errors base base-compat bower-json boxes - bytestring containers directory dlist edit-distance filepath - fsnotify Glob http-types language-javascript lifted-base - monad-control monad-logger mtl parallel parsec pattern-arrows pipes - pipes-http process regex-tdfa safe semigroups sourcemap split stm - syb text time transformers transformers-base transformers-compat - unordered-containers utf8-string vector - ]; - executableHaskellDepends = [ - aeson ansi-wl-pprint base base-compat boxes bytestring containers - directory filepath Glob haskeline monad-logger mtl network - optparse-applicative parsec process split stm text time - transformers transformers-compat utf8-string - ]; - testHaskellDepends = [ - aeson aeson-better-errors base base-compat boxes bytestring - containers directory filepath Glob haskeline hspec hspec-discover - HUnit mtl optparse-applicative parsec process stm text time - transformers transformers-compat - ]; - doCheck = false; - homepage = "http://www.purescript.org/"; - description = "PureScript Programming Language Compiler"; - license = stdenv.lib.licenses.mit; - }) {}; - - "purescript_0_8_5_0" = callPackage ({ mkDerivation, aeson, aeson-better-errors, ansi-wl-pprint, base , base-compat, bower-json, boxes, bytestring, containers, directory , dlist, edit-distance, filepath, fsnotify, Glob, haskeline, hspec @@ -174595,11 +175719,10 @@ self: { HUnit mtl optparse-applicative parsec process stm text time transformers transformers-compat utf8-string vector ]; - jailbreak = true; + doCheck = false; homepage = "http://www.purescript.org/"; description = "PureScript Programming Language Compiler"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "purescript-bridge" = callPackage @@ -174636,6 +175759,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "pursuit-client" = callPackage + ({ mkDerivation, base, http-client, lens, taggy-lens, text, wreq }: + mkDerivation { + pname = "pursuit-client"; + version = "0.1.0"; + sha256 = "ac4d1ea126212eaeda65860a27293e7b9301507bd869280d836552e8bb427c35"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base http-client lens taggy-lens text wreq + ]; + executableHaskellDepends = [ base text ]; + homepage = "https://github.com/soupi/pursuit-client"; + description = "A cli client for pursuit"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "push-notify" = callPackage ({ mkDerivation, aeson, async, attoparsec-conduit, base , base16-bytestring, bytestring, cereal, certificate, conduit @@ -176627,8 +177767,8 @@ self: { }: mkDerivation { pname = "random-variates"; - version = "0.1.3.0"; - sha256 = "a2a4a5b450c9d33a60565dfd34645e0af970bcc87e60985c7387eeab75e255c4"; + version = "0.1.4.0"; + sha256 = "266a3e0a39914bf15da877e1cf866c263d73be820017d6543445510b16fda554"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -176636,7 +177776,7 @@ self: { reinterpret-cast ]; executableHaskellDepends = [ base ]; - testHaskellDepends = [ base directory HUnit ]; + testHaskellDepends = [ base directory HUnit random ]; jailbreak = true; homepage = "https://bitbucket.org/kpratt/random-variate"; description = "\"Uniform RNG => Non-Uniform RNGs\""; @@ -176995,25 +178135,6 @@ self: { }) {}; "ratel" = callPackage - ({ mkDerivation, aeson, base, bytestring, case-insensitive - , containers, http-client, http-client-tls, http-types, tasty - , tasty-hspec, text, uuid - }: - mkDerivation { - pname = "ratel"; - version = "0.1.2"; - sha256 = "fb84658a310ff52cdff01b2186989929a6deb5e4cd1ed6877357302c3c09fcc1"; - libraryHaskellDepends = [ - aeson base bytestring case-insensitive containers http-client - http-client-tls http-types text uuid - ]; - testHaskellDepends = [ base tasty tasty-hspec ]; - homepage = "https://github.com/tfausak/ratel#readme"; - description = "Notify Honeybadger about exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - - "ratel_0_1_3" = callPackage ({ mkDerivation, aeson, base, bytestring, case-insensitive , containers, http-client, http-client-tls, http-types, tasty , tasty-hspec, text, uuid @@ -177030,26 +178151,9 @@ self: { homepage = "https://github.com/tfausak/ratel#readme"; description = "Notify Honeybadger about exceptions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ratel-wai" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , http-client, ratel, wai - }: - mkDerivation { - pname = "ratel-wai"; - version = "0.1.1"; - sha256 = "687dde2f720a53d17d60fa3b91bac1bb12b5dd896b5d8603d6f5cfbe1502614c"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers http-client ratel wai - ]; - homepage = "https://github.com/tfausak/ratel-wai#readme"; - description = "Notify Honeybadger about exceptions via a WAI middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - - "ratel-wai_0_1_2" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, containers , http-client, ratel, wai }: @@ -177063,7 +178167,6 @@ self: { homepage = "https://github.com/tfausak/ratel-wai#readme"; description = "Notify Honeybadger about exceptions via a WAI middleware"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ratio-int" = callPackage @@ -177610,18 +178713,18 @@ self: { "reactivity" = callPackage ({ mkDerivation, array, base, bmp, bytestring, comctl32, comdlg32 - , comonad, ConcurrentUtils, containers, gdi32, ghc-prim - , list-extras, monad-loops, monads-tf, parallel, random, time - , transformers, Win32, winspool + , comonad, concurrent-extra, ConcurrentUtils, containers, gdi32 + , ghc-prim, list-extras, monad-loops, monads-tf, parallel, random + , time, transformers, Win32, winspool }: mkDerivation { pname = "reactivity"; - version = "0.3.0.0"; - sha256 = "cc86376a74f88b58085252d37622b11917ed9808d07af3aacf86eca8ae31dd12"; + version = "0.3.1.0"; + sha256 = "fbf859a63d567967e912a000169edd39b95a271c0f614b334dc78101500f4f06"; libraryHaskellDepends = [ - array base bmp bytestring comonad ConcurrentUtils containers - ghc-prim list-extras monad-loops monads-tf parallel random time - transformers Win32 + array base bmp bytestring comonad concurrent-extra ConcurrentUtils + containers ghc-prim list-extras monad-loops monads-tf parallel + random time transformers Win32 ]; librarySystemDepends = [ comctl32 comdlg32 gdi32 winspool ]; homepage = "http://www.alkalisoftware.net/Reactivity.html"; @@ -177755,6 +178858,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "readshp" = callPackage + ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 + , filepath, monad-loops + }: + mkDerivation { + pname = "readshp"; + version = "0.1.0.0"; + sha256 = "354f8e8e649110d0da687dcadefe7145f03a7a9b2c0a752023fa9c9a55f6bc36"; + revision = "1"; + editedCabalFile = "c8fa843aeed4743a1f664a42097730dd4d5c8f8f7de06f8af26bdf09814efd57"; + libraryHaskellDepends = [ + base binary bytestring data-binary-ieee754 filepath monad-loops + ]; + description = "Code for reading ESRI Shapefiles"; + license = stdenv.lib.licenses.mit; + }) {}; + "really-simple-xml-parser" = callPackage ({ mkDerivation, base, parsec }: mkDerivation { @@ -177805,8 +178925,8 @@ self: { }: mkDerivation { pname = "rebase"; - version = "0.5.2"; - sha256 = "a1181002cd0ac9d1cdad0f43095c4432bea5c19169534b99f6d1321f6a9928ab"; + version = "0.5.3"; + sha256 = "f5737cb4408b0bf1f19736fa8387d6e92f73d23c49f2455b530232f8f17b64fc"; libraryHaskellDepends = [ base base-prelude bifunctors bytestring containers contravariant contravariant-extras deepseq dlist either fail hashable mtl @@ -179241,6 +180361,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "regex-tdfa_1_2_2" = callPackage + ({ mkDerivation, array, base, bytestring, containers, ghc-prim, mtl + , parsec, regex-base + }: + mkDerivation { + pname = "regex-tdfa"; + version = "1.2.2"; + sha256 = "cb12d675be7b31ed8086d8d022023d03eb553e55dbee6e1b7a4154933d471d39"; + libraryHaskellDepends = [ + array base bytestring containers ghc-prim mtl parsec regex-base + ]; + homepage = "https://github.com/ChrisKuklewicz/regex-tdfa"; + description = "Replaces/Enhances Text.Regex"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "regex-tdfa-pipes" = callPackage ({ mkDerivation, array, base, lens, monads-tf, pipes, regex-base , regex-tdfa @@ -179792,8 +180929,8 @@ self: { }: mkDerivation { pname = "relational-query"; - version = "0.8.1.0"; - sha256 = "9b84f39179751df082ad6706f388aa6cb340f000b6a01f8fae11138f9527fa62"; + version = "0.8.2.0"; + sha256 = "b7cf3a04b353413c21128dec79569dab465f92d42ad918cc55e44ffe03976735"; libraryHaskellDepends = [ array base bytestring containers dlist names-th persistable-record sql-words template-haskell text time time-locale-compat @@ -179832,8 +180969,8 @@ self: { }: mkDerivation { pname = "relational-record"; - version = "0.1.3.0"; - sha256 = "7f7cf98fce68186028315dade3bf33e8b4bfb57ad1af9c8397e1bd8a1b88e282"; + version = "0.1.4.0"; + sha256 = "e38b0ad61798e506ce7ab3bc3b7df3207f2f7cfc80b6d52b39e2281cd534a834"; libraryHaskellDepends = [ base persistable-types-HDBC-pg relational-query relational-query-HDBC @@ -181573,10 +182710,8 @@ self: { }: mkDerivation { pname = "rest-core"; - version = "0.38"; - sha256 = "b491b734c2d74729f427ca02370f12b839dd92347fea44b5fb66c66a39b11cec"; - revision = "2"; - editedCabalFile = "ed51d0cdb0e2562b3d3d03bc87c0da6d8da947ccec0f66307cf9455e82bd39dc"; + version = "0.39"; + sha256 = "d760d0547fc1a99cd949dde08b7945fb93af24f4e55d45ecf410c352d5005404"; libraryHaskellDepends = [ aeson aeson-utils base base-compat bytestring case-insensitive errors fclabels hxt hxt-pickle-utils json-schema mtl mtl-compat @@ -181593,24 +182728,23 @@ self: { }) {}; "rest-example" = callPackage - ({ mkDerivation, aeson, base, containers, generic-aeson - , generic-xmlpickler, hxt, json-schema, mtl, rest-core, rest-gen - , safe, stm, text, time, transformers, transformers-compat - , unordered-containers + ({ mkDerivation, aeson, base, base-compat, bytestring, containers + , generic-aeson, generic-xmlpickler, hxt, json-schema, mtl + , rest-core, rest-gen, safe, stm, text, time, transformers + , transformers-compat, unordered-containers }: mkDerivation { pname = "rest-example"; - version = "0.2.0.3"; - sha256 = "d71368418eca3128e887198f365b857011017e2515dd30856076b54d185b1a5e"; + version = "0.2.0.4"; + sha256 = "22cd99443ad2aa06616d5b47731c83c4650f2601eaedc0d799693752ca1e2832"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base containers generic-aeson generic-xmlpickler hxt - json-schema mtl rest-core safe stm text time transformers - transformers-compat unordered-containers + aeson base base-compat bytestring containers generic-aeson + generic-xmlpickler hxt json-schema mtl rest-core safe stm text time + transformers transformers-compat unordered-containers ]; - executableHaskellDepends = [ base rest-gen ]; - jailbreak = true; + executableHaskellDepends = [ base base-compat rest-gen ]; homepage = "http://www.github.com/silkapp/rest"; description = "Example project for rest"; license = stdenv.lib.licenses.bsd3; @@ -181996,10 +183130,8 @@ self: { }: mkDerivation { pname = "rest-gen"; - version = "0.19.0.2"; - sha256 = "12caa70e7b29b073cb0e066cf7d5c590b13e0fb5b2f924944cd1ae5217c79330"; - revision = "2"; - editedCabalFile = "e4e4528467c593e7cfc6ae2180bfa4a255097f1921a9daa70b46c48c0e84763a"; + version = "0.19.0.3"; + sha256 = "9ed4224ed8de81c56000b6814724bfed46f4e7b8890fe5892d308b6edcab2e76"; libraryHaskellDepends = [ aeson base base-compat blaze-html Cabal code-builder directory fclabels filepath hashable haskell-src-exts HStringTemplate hxt @@ -182088,7 +183220,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-happstack" = callPackage + "rest-happstack_0_3_1" = callPackage ({ mkDerivation, base, containers, happstack-server, mtl, rest-core , rest-gen, utf8-string }: @@ -182101,6 +183233,23 @@ self: { libraryHaskellDepends = [ base containers happstack-server mtl rest-core rest-gen utf8-string ]; + jailbreak = true; + description = "Rest driver for Happstack"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rest-happstack" = callPackage + ({ mkDerivation, base, containers, happstack-server, mtl, rest-core + , rest-gen, utf8-string + }: + mkDerivation { + pname = "rest-happstack"; + version = "0.3.1.1"; + sha256 = "794f06eb2c96b995397e21f4578bd7094a20334f43883e97af81dbe60b394ff6"; + libraryHaskellDepends = [ + base containers happstack-server mtl rest-core rest-gen utf8-string + ]; description = "Rest driver for Happstack"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -182159,7 +183308,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-snap" = callPackage + "rest-snap_0_2" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, rest-core , safe, snap-core, unordered-containers, uri-encode, utf8-string }: @@ -182173,6 +183322,25 @@ self: { base bytestring case-insensitive rest-core safe snap-core unordered-containers uri-encode utf8-string ]; + jailbreak = true; + description = "Rest driver for Snap"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rest-snap" = callPackage + ({ mkDerivation, base, base-compat, bytestring, case-insensitive + , rest-core, safe, snap-core, unordered-containers, uri-encode + , utf8-string + }: + mkDerivation { + pname = "rest-snap"; + version = "0.2.0.1"; + sha256 = "24ff57b82808aac05a04d8b1e4ac24e5a2a71655991d95415d8a713533c402d5"; + libraryHaskellDepends = [ + base base-compat bytestring case-insensitive rest-core safe + snap-core unordered-containers uri-encode utf8-string + ]; description = "Rest driver for Snap"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -182366,7 +183534,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-wai" = callPackage + "rest-wai_0_2" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, containers , http-types, mime-types, mtl, rest-core, text , unordered-containers, wai @@ -182381,6 +183549,25 @@ self: { base bytestring case-insensitive containers http-types mime-types mtl rest-core text unordered-containers wai ]; + jailbreak = true; + description = "Rest driver for WAI applications"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rest-wai" = callPackage + ({ mkDerivation, base, base-compat, bytestring, case-insensitive + , containers, http-types, mime-types, mtl, rest-core, text + , unordered-containers, wai + }: + mkDerivation { + pname = "rest-wai"; + version = "0.2.0.1"; + sha256 = "38205eb7b85a4e052f11db099dd65e9d952b8533d1a35001f0b1958b443c0d02"; + libraryHaskellDepends = [ + base base-compat bytestring case-insensitive containers http-types + mime-types mtl rest-core text unordered-containers wai + ]; description = "Rest driver for WAI applications"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -183093,6 +184280,37 @@ self: { license = "unknown"; }) {}; + "riak_1_0_1_0" = callPackage + ({ mkDerivation, aeson, attoparsec, base, binary, blaze-builder + , bytestring, containers, data-default-class, deepseq + , enclosed-exceptions, exceptions, hashable, HUnit + , mersenne-random-pure64, monad-control, mtl, network + , protocol-buffers, pureMD5, QuickCheck, random, random-shuffle + , resource-pool, riak-protobuf, semigroups, tasty, tasty-hunit + , tasty-quickcheck, text, time, transformers, unordered-containers + , vector + }: + mkDerivation { + pname = "riak"; + version = "1.0.1.0"; + sha256 = "d851130b0e59c4e432c050349c5c288740b6b27cafddc719dccc6c36608f6bde"; + libraryHaskellDepends = [ + aeson attoparsec base binary blaze-builder bytestring containers + data-default-class deepseq enclosed-exceptions exceptions hashable + mersenne-random-pure64 monad-control network protocol-buffers + pureMD5 random random-shuffle resource-pool riak-protobuf + semigroups text time transformers unordered-containers vector + ]; + testHaskellDepends = [ + base bytestring containers data-default-class HUnit mtl QuickCheck + semigroups tasty tasty-hunit tasty-quickcheck text + ]; + homepage = "http://github.com/markhibberd/riak-haskell-client"; + description = "A Haskell client for the Riak decentralized data store"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "riak-protobuf_0_20_0_0" = callPackage ({ mkDerivation, array, base, parsec, protocol-buffers , protocol-buffers-descriptor @@ -184143,8 +185361,8 @@ self: { }: mkDerivation { pname = "rss-conduit"; - version = "0.2.0.1"; - sha256 = "c06317ac567f3a025bd5ba498837a64f0f045a3fa38e4ae36ca9ca76c4aafe3a"; + version = "0.2.0.2"; + sha256 = "304a2918743f7b65191ce8c4a57c94b1c3afb2692e5c79d6b0822a05be3294d1"; libraryHaskellDepends = [ base conduit conduit-parse containers exceptions foldl lens-simple mono-traversable parsers safe text time timerep uri-bytestring @@ -185339,8 +186557,8 @@ self: { }: mkDerivation { pname = "satchmo"; - version = "2.9.9.1"; - sha256 = "3414dcc5184cd34bce55eb041ff84f8985672964c64786d146b9520237ee13e2"; + version = "2.9.9.3"; + sha256 = "8a4dc9b233326e6742f7fe1e7d7d8c9fbc705b0341fe68908a26b2378ce2224f"; libraryHaskellDepends = [ array async base bytestring containers deepseq directory hashable lens memoize minisat mtl process transformers @@ -187924,6 +189142,8 @@ self: { pname = "semigroups"; version = "0.18.1"; sha256 = "ae7607fb2b497a53192c378dc84c00b45610fdc5de0ac8c1ac3234ec7acee807"; + revision = "1"; + editedCabalFile = "7dd2b3dcc9517705391c1c6a0b51eba1da605b554f9817255c4a1a1df4d4ae3d"; libraryHaskellDepends = [ base binary bytestring containers deepseq hashable tagged text transformers unordered-containers @@ -188668,7 +189888,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant" = callPackage + "servant_0_4_4_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, case-insensitive, directory, doctest , filemanip, filepath, hspec, http-media, http-types, network-uri @@ -188692,6 +189912,34 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring + , bytestring-conversion, case-insensitive, directory, doctest + , filemanip, filepath, hspec, http-api-data, http-media, http-types + , network-uri, QuickCheck, quickcheck-instances, string-conversions + , text, url, vault + }: + mkDerivation { + pname = "servant"; + version = "0.6.1"; + sha256 = "830154335052270314be49644db3a88665b1910d1678ff35337a9b3caabaab3a"; + libraryHaskellDepends = [ + aeson attoparsec base base-compat bytestring bytestring-conversion + case-insensitive http-api-data http-media http-types network-uri + string-conversions text vault + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring directory doctest filemanip + filepath hspec QuickCheck quickcheck-instances string-conversions + text url + ]; + doCheck = false; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant_0_7" = callPackage @@ -188737,6 +189985,7 @@ self: { executableHaskellDepends = [ base JuicyPixels servant servant-server wai warp ]; + jailbreak = true; homepage = "https://github.com/tvh/servant-JuicyPixels"; description = "servant-JuicyPixels"; license = stdenv.lib.licenses.gpl3; @@ -188759,6 +190008,7 @@ self: { executableHaskellDepends = [ base JuicyPixels servant servant-server wai warp ]; + jailbreak = true; homepage = "https://github.com/tvh/servant-JuicyPixels"; description = "Servant support for JuicyPixels"; license = stdenv.lib.licenses.bsd3; @@ -188781,6 +190031,7 @@ self: { executableHaskellDepends = [ base JuicyPixels servant servant-server wai warp ]; + jailbreak = true; homepage = "https://github.com/tvh/servant-JuicyPixels"; description = "Servant support for JuicyPixels"; license = stdenv.lib.licenses.bsd3; @@ -188795,6 +190046,8 @@ self: { pname = "servant-JuicyPixels"; version = "0.3.0.2"; sha256 = "34ed22ef256d7ff3af3fff56484261448928f140b1b4287965619fe6b10b3ebd"; + revision = "1"; + editedCabalFile = "896414688b7da96443399f111448da3cb7861618eab516590dce96e394c744ea"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -188815,6 +190068,21 @@ self: { version = "0.4.4.6"; sha256 = "ef7ec4007b43679fd50133c097afb3ed33f64696fb44b03a281160384f693f91"; libraryHaskellDepends = [ base blaze-html http-media servant ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "Blaze-html support for servant"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-blaze_0_4_4_7" = callPackage + ({ mkDerivation, base, blaze-html, http-media, servant }: + mkDerivation { + pname = "servant-blaze"; + version = "0.4.4.7"; + sha256 = "5f3648d0831de475364c9570b527041d5a5a26ea6257b44f2e140509ba8c0b60"; + libraryHaskellDepends = [ base blaze-html http-media servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Blaze-html support for servant"; license = stdenv.lib.licenses.bsd3; @@ -188825,8 +190093,8 @@ self: { ({ mkDerivation, base, blaze-html, http-media, servant }: mkDerivation { pname = "servant-blaze"; - version = "0.4.4.7"; - sha256 = "5f3648d0831de475364c9570b527041d5a5a26ea6257b44f2e140509ba8c0b60"; + version = "0.6.1"; + sha256 = "f34b45f7c15f53858034052bc0e662ce884ca2c231bc7f3fecc69bc8763f209f"; libraryHaskellDepends = [ base blaze-html http-media servant ]; homepage = "http://haskell-servant.github.io/"; description = "Blaze-html support for servant"; @@ -188907,6 +190175,7 @@ self: { http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -188934,6 +190203,7 @@ self: { http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -188961,6 +190231,7 @@ self: { http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -188988,6 +190259,7 @@ self: { http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189015,13 +190287,14 @@ self: { http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-client" = callPackage + "servant-client_0_4_4_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq , either, exceptions, hspec, http-client, http-client-tls , http-media, http-types, HUnit, network, network-uri, QuickCheck @@ -189042,6 +190315,36 @@ self: { http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "automatical derivation of querying functions for servant webservices"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-client" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , bytestring, deepseq, exceptions, hspec, http-api-data + , http-client, http-client-tls, http-media, http-types, HUnit + , network, network-uri, QuickCheck, safe, servant, servant-server + , string-conversions, text, transformers, transformers-compat, wai + , warp + }: + mkDerivation { + pname = "servant-client"; + version = "0.6.1"; + sha256 = "3b2724cd01fd60c10132b4c20384e5bc734f2e46b03db9b6a0f6d4b947decee4"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring bytestring exceptions + http-api-data http-client http-client-tls http-media http-types + network-uri safe servant string-conversions text transformers + transformers-compat + ]; + testHaskellDepends = [ + aeson base bytestring deepseq hspec http-client http-media + http-types HUnit network QuickCheck servant servant-server text + transformers transformers-compat wai warp + ]; homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189078,17 +190381,19 @@ self: { }) {}; "servant-csharp" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath - , haskell-src-exts, heredocs, http-types, lens, servant - , servant-foreign, text, time, uuid, uuid-types + ({ mkDerivation, aeson, base, bytestring, directory, filepath + , heredocs, http-types, lens, mtl, servant, servant-foreign + , servant-swagger, swagger2, text, time, unordered-containers, uuid + , uuid-types }: mkDerivation { pname = "servant-csharp"; - version = "0.0.7.1"; - sha256 = "98bb40bf02a4ed672fe50c1c5c90901e61ebe5ade8d639a1dfdee215ce1de4ff"; + version = "0.0.8.1"; + sha256 = "a715c53a3684f1e7f33d96f6b3fad006edfce6c029eb810d33647ffc180c097d"; libraryHaskellDepends = [ - base bytestring directory filepath haskell-src-exts heredocs - http-types lens servant servant-foreign text time uuid uuid-types + aeson base bytestring directory filepath heredocs http-types lens + mtl servant servant-foreign servant-swagger swagger2 text time + unordered-containers uuid uuid-types ]; jailbreak = true; homepage = "https://github.com/cutsea110/servant-csharp.git"; @@ -189142,6 +190447,7 @@ self: { testHaskellDepends = [ aeson base hspec lens servant string-conversions ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; @@ -189171,6 +190477,7 @@ self: { testHaskellDepends = [ aeson base hspec lens servant string-conversions ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; @@ -189200,6 +190507,7 @@ self: { testHaskellDepends = [ aeson base hspec lens servant string-conversions ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; @@ -189229,6 +190537,7 @@ self: { testHaskellDepends = [ aeson base hspec lens servant string-conversions ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; @@ -189258,13 +190567,14 @@ self: { testHaskellDepends = [ aeson base hspec lens servant string-conversions ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-docs" = callPackage + "servant-docs_0_4_4_7" = callPackage ({ mkDerivation, aeson, base, bytestring, bytestring-conversion , case-insensitive, hashable, hspec, http-media, http-types, lens , servant, string-conversions, text, unordered-containers @@ -189287,6 +190597,37 @@ self: { testHaskellDepends = [ aeson base hspec lens servant string-conversions ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "generate API docs for your servant webservice"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-docs" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, bytestring + , bytestring-conversion, case-insensitive, control-monad-omega + , hashable, hspec, http-media, http-types, lens, servant + , string-conversions, text, unordered-containers + }: + mkDerivation { + pname = "servant-docs"; + version = "0.6.1"; + sha256 = "66604bcbeee4f84847d64fb7ed127eb4f32570d16a33aa24adf2684688aae33b"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty base bytestring bytestring-conversion + case-insensitive control-monad-omega hashable http-media http-types + lens servant string-conversions text unordered-containers + ]; + executableHaskellDepends = [ + aeson base bytestring-conversion lens servant string-conversions + text + ]; + testHaskellDepends = [ + aeson base hspec lens servant string-conversions + ]; homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; @@ -189395,6 +190736,19 @@ self: { }) {}; "servant-foreign" = callPackage + ({ mkDerivation, base, hspec, http-types, lens, servant, text }: + mkDerivation { + pname = "servant-foreign"; + version = "0.6.1"; + sha256 = "de131f3538d9e01a5c9a8c57ee85a22753fa25e80f98031e0c2947c5aca9b324"; + libraryHaskellDepends = [ base http-types lens servant text ]; + testHaskellDepends = [ base hspec ]; + description = "Helpers for generating clients for servant APIs in any programming language"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-foreign_0_7" = callPackage ({ mkDerivation, base, hspec, http-types, lens, servant, text }: mkDerivation { pname = "servant-foreign"; @@ -189449,6 +190803,7 @@ self: { http-client-tls http-media http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; homepage = "http://github.com/ElvishJerricco/servant-haxl-client/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189493,6 +190848,7 @@ self: { testHaskellDepends = [ base hspec hspec-expectations language-ecmascript lens servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189517,6 +190873,7 @@ self: { testHaskellDepends = [ base hspec hspec-expectations language-ecmascript lens servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189541,6 +190898,7 @@ self: { testHaskellDepends = [ base hspec hspec-expectations language-ecmascript lens servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189565,6 +190923,7 @@ self: { testHaskellDepends = [ base hspec hspec-expectations language-ecmascript lens servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189589,6 +190948,7 @@ self: { testHaskellDepends = [ base hspec hspec-expectations language-ecmascript lens servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189613,12 +190973,41 @@ self: { testHaskellDepends = [ base hspec hspec-expectations language-ecmascript lens servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; }) {}; "servant-js" = callPackage + ({ mkDerivation, aeson, base, base-compat, charset, filepath, hspec + , hspec-expectations, language-ecmascript, lens, servant + , servant-foreign, servant-server, stm, text, transformers, warp + }: + mkDerivation { + pname = "servant-js"; + version = "0.6.1"; + sha256 = "8bafcd5632bb49346280a1922e1708e55da639c485347d0566724445e2854611"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base-compat charset lens servant-foreign text + ]; + executableHaskellDepends = [ + aeson base filepath lens servant servant-server stm transformers + warp + ]; + testHaskellDepends = [ + base base-compat hspec hspec-expectations language-ecmascript lens + servant text + ]; + homepage = "http://haskell-servant.github.io/"; + description = "Automatically derive javascript functions to query servant webservices"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-js_0_7" = callPackage ({ mkDerivation, aeson, base, base-compat, charset, filepath, hspec , hspec-expectations, language-ecmascript, lens, servant , servant-foreign, servant-server, stm, text, transformers, warp @@ -189661,13 +191050,14 @@ self: { }) {}; "servant-mock" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-types, QuickCheck - , servant, servant-server, transformers, wai, warp + ({ mkDerivation, aeson, base, bytestring, bytestring-conversion + , hspec, hspec-wai, http-types, QuickCheck, servant, servant-server + , transformers, wai, warp }: mkDerivation { pname = "servant-mock"; - version = "0.4.4.7"; - sha256 = "d8fdc27bc4bc347d1fc31e125c29f0d786e44abc567a7187b757d0c6563d75c0"; + version = "0.6.1"; + sha256 = "c612d546f82f0b633cab8396c71583f0866034abd9c3f2462fce3faec9006621"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -189677,6 +191067,10 @@ self: { executableHaskellDepends = [ aeson base QuickCheck servant-server warp ]; + testHaskellDepends = [ + aeson base bytestring-conversion hspec hspec-wai QuickCheck servant + servant-server wai + ]; homepage = "http://github.com/haskell-servant/servant"; description = "Derive a mock server for free from your servant API types"; license = stdenv.lib.licenses.bsd3; @@ -190047,7 +191441,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-server" = callPackage + "servant-server_0_4_4_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, directory, doctest, either, exceptions , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl @@ -190073,6 +191467,43 @@ self: { network parsec QuickCheck servant string-conversions temporary text transformers wai wai-extra warp ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs and serving them"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-server" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat + , base64-bytestring, bytestring, bytestring-conversion, containers + , directory, doctest, exceptions, filemanip, filepath, hspec + , hspec-wai, http-api-data, http-types, mmorph, mtl, network + , network-uri, parsec, QuickCheck, safe, servant + , should-not-typecheck, split, string-conversions, system-filepath + , temporary, text, transformers, transformers-compat, wai + , wai-app-static, wai-extra, warp, word8 + }: + mkDerivation { + pname = "servant-server"; + version = "0.6.1"; + sha256 = "4d1b0871008945009bf4d4756108cc1376edbd08e49ce96d9c1365d9b382ec07"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base base-compat base64-bytestring bytestring + containers filepath http-api-data http-types mmorph mtl network + network-uri safe servant split string-conversions system-filepath + text transformers transformers-compat wai wai-app-static warp word8 + ]; + executableHaskellDepends = [ aeson base servant text wai warp ]; + testHaskellDepends = [ + aeson base base-compat base64-bytestring bytestring + bytestring-conversion directory doctest exceptions filemanip + filepath hspec hspec-wai http-types mtl network parsec QuickCheck + safe servant should-not-typecheck string-conversions temporary text + transformers transformers-compat wai wai-extra warp + ]; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; @@ -190195,8 +191626,8 @@ self: { pname = "servant-yaml"; version = "0.1.0.0"; sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204"; - revision = "5"; - editedCabalFile = "49eac863eece8a51ed250931103972dae2bf1551a4d6cb5d55c5d4ae65cb24b3"; + revision = "6"; + editedCabalFile = "a9fa85d3e31c0057aa1144044436cc833a1a46165760b03e00e4c23bce578cb0"; libraryHaskellDepends = [ base bytestring http-media servant yaml ]; @@ -191462,6 +192893,7 @@ self: { libraryHaskellDepends = [ base bytestring css-text hjsmin shake text ]; + jailbreak = true; homepage = "https://github.com/LukeHoersten/shake-minify"; description = "Shake Minify Rules"; license = stdenv.lib.licenses.bsd3; @@ -191785,7 +193217,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "shakespeare" = callPackage + "shakespeare_2_0_8_1" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec , process, scientific, template-haskell, text, time, transformers @@ -191808,10 +193240,11 @@ self: { homepage = "http://www.yesodweb.com/book/shakespearean-templates"; description = "A toolkit for making compile-time interpolated templates"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "shakespeare_2_0_8_2" = callPackage + "shakespeare" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec , process, scientific, template-haskell, text, time, transformers @@ -191834,7 +193267,6 @@ self: { homepage = "http://www.yesodweb.com/book/shakespearean-templates"; description = "A toolkit for making compile-time interpolated templates"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -192440,7 +193872,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shelly" = callPackage + "shelly_1_6_5" = callPackage ({ mkDerivation, async, base, bytestring, containers, directory , enclosed-exceptions, exceptions, hspec, HUnit, lifted-async , lifted-base, monad-control, mtl, process, system-fileio @@ -192469,9 +193901,10 @@ self: { homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shell-like (systems) programming in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shelly_1_6_6" = callPackage + "shelly" = callPackage ({ mkDerivation, async, base, bytestring, containers, directory , enclosed-exceptions, exceptions, hspec, HUnit, lifted-async , lifted-base, monad-control, mtl, process, system-fileio @@ -192499,7 +193932,6 @@ self: { homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shell-like (systems) programming in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shelly-extra" = callPackage @@ -193741,6 +195173,8 @@ self: { pname = "simplex-basic"; version = "0.0.0.1"; sha256 = "f8a30128d4e16714f75fee3b16fd3d4b24832a30f17ff29936a1c5a066b60ba0"; + revision = "1"; + editedCabalFile = "5f5008bcffb4338739343d6ab9e7f47e0d1c35ec5d606dbdbb9f02943de2b7a1"; libraryHaskellDepends = [ base bifunctors linear-grammar mtl QuickCheck transformers ]; @@ -194969,6 +196403,7 @@ self: { aeson base either lens servant servant-client servant-docs text time ]; + jailbreak = true; homepage = "https://github.com/GetShopTV/smsaero"; description = "SMSAero API and HTTP client based on servant library"; license = stdenv.lib.licenses.bsd3; @@ -197379,8 +198814,8 @@ self: { }: mkDerivation { pname = "solr"; - version = "0.3"; - sha256 = "7cc47e9998197624cb78adb5bec4dabec4febf11cda876cecac56dd0a4d5ef66"; + version = "0.3.1"; + sha256 = "9bee7a32661231a132491cf361140d40d3a810bd72763abebcee97bfbdd06e66"; libraryHaskellDepends = [ base-prelude bytestring bytestring-tree-builder case-insensitive contravariant http-client http-response-decoder json-encoder @@ -197746,6 +199181,28 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "sparkle" = callPackage + ({ mkDerivation, base, binary, bytestring, distributed-closure + , filepath, inline-java, process, regex-tdfa, singletons, text + , vector, zip-archive + }: + mkDerivation { + pname = "sparkle"; + version = "0.1"; + sha256 = "91e7c8309028201b55d0174b0f6882ada77c41ae4ede94ffc422c48b80c68fb2"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring distributed-closure inline-java singletons + text vector + ]; + executableHaskellDepends = [ + base bytestring filepath process regex-tdfa text zip-archive + ]; + description = "Distributed Apache Spark applications in Haskell"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "sparse" = callPackage ({ mkDerivation, base, bytestring, containers, contravariant , deepseq, directory, doctest, filepath, hlint, hybrid-vectors @@ -198330,6 +199787,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "split_0_2_3_1" = callPackage + ({ mkDerivation, base, QuickCheck }: + mkDerivation { + pname = "split"; + version = "0.2.3.1"; + sha256 = "7615b60adee20c19ddafd9d74456e8fe8e4274e2c676a5e858511b664205c688"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base QuickCheck ]; + description = "Combinator library for splitting lists"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "split-channel" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -198664,10 +200134,8 @@ self: { ({ mkDerivation, base, QuickCheck, quickcheck-simple }: mkDerivation { pname = "sql-words"; - version = "0.1.3.1"; - sha256 = "c9ce5f8402cdfc610e3d58774ad5c3aedaa6f4d0e7724937ecd97a654351b59d"; - revision = "1"; - editedCabalFile = "6de32c6b306d3b438564e263deb20c68698a5cdaa198a3d711ee768954608e17"; + version = "0.1.4.0"; + sha256 = "4ae839c4e1d47d2cd6a6b06ff8301473bcf12cbc5b3efa5fa59e1300797b1716"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base QuickCheck quickcheck-simple ]; homepage = "http://khibino.github.io/haskell-relational-record/"; @@ -199817,8 +201285,8 @@ self: { pname = "stack"; version = "1.0.4.3"; sha256 = "2a445ff671cfd75ccf3185c52832298598dc03dbfbede2b7be21237f63c305b2"; - revision = "2"; - editedCabalFile = "a2cedd499125c5380a6f2e7f7a57c6b67e330e07ecd5e95114b83cefe7975e3f"; + revision = "4"; + editedCabalFile = "a1315a0d9d005e7e93d6c0893eec2f2d055dda364543edf7b9e172c8d54d7ae2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -200866,7 +202334,7 @@ self: { license = "GPL"; }) {}; - "stateWriter" = callPackage + "stateWriter_0_2_6" = callPackage ({ mkDerivation, base, free, hspec, mtl, QuickCheck, transformers }: mkDerivation { @@ -200877,9 +202345,10 @@ self: { testHaskellDepends = [ base free hspec mtl QuickCheck ]; description = "A faster variant of the RWS monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stateWriter_0_2_7" = callPackage + "stateWriter" = callPackage ({ mkDerivation, base, free, hspec, mtl, QuickCheck, transformers }: mkDerivation { @@ -200890,7 +202359,6 @@ self: { testHaskellDepends = [ base free hspec mtl QuickCheck ]; description = "A faster variant of the RWS monad transformers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "statechart" = callPackage @@ -202063,6 +203531,7 @@ self: { sha256 = "17f488ef8e74a9dc4ad7e8a649abc386d010379a9b63f88d52638a078fbc16f6"; libraryHaskellDepends = [ base clock transformers ]; testHaskellDepends = [ base clock hspec ]; + jailbreak = true; homepage = "https://github.com/debug-ito/stopwatch"; description = "A simple stopwatch utility"; license = stdenv.lib.licenses.bsd3; @@ -202746,7 +204215,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "streaming-commons" = callPackage + "streaming-commons_0_1_15_2" = callPackage ({ mkDerivation, array, async, base, blaze-builder, bytestring , deepseq, directory, hspec, network, process, QuickCheck, random , stm, text, transformers, unix, zlib @@ -202766,9 +204235,10 @@ self: { homepage = "https://github.com/fpco/streaming-commons"; description = "Common lower-level functions needed by various streaming data libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "streaming-commons_0_1_15_4" = callPackage + "streaming-commons" = callPackage ({ mkDerivation, array, async, base, blaze-builder, bytestring , deepseq, directory, hspec, network, process, QuickCheck, random , stm, text, transformers, unix, zlib @@ -202788,7 +204258,6 @@ self: { homepage = "https://github.com/fpco/streaming-commons"; description = "Common lower-level functions needed by various streaming data libraries"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "streaming-histogram" = callPackage @@ -206227,6 +207696,31 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "table-layout" = callPackage + ({ mkDerivation, base, data-default-class + , data-default-instances-base, hspec, HUnit, QuickCheck + }: + mkDerivation { + pname = "table-layout"; + version = "0.5.1.1"; + sha256 = "11c47bed5d8c6dd6d003dad96f80ad9e6a5bcc0566aefd8ff97afa3889950b11"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base data-default-class data-default-instances-base + ]; + executableHaskellDepends = [ + base data-default-class data-default-instances-base + ]; + testHaskellDepends = [ + base data-default-class data-default-instances-base hspec HUnit + QuickCheck + ]; + homepage = "https://github.com/muesli4/table-layout"; + description = "Layout text as grid or table"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "table-tennis" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -206470,7 +207964,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tagged" = callPackage + "tagged_0_8_3" = callPackage ({ mkDerivation, base, deepseq, template-haskell }: mkDerivation { pname = "tagged"; @@ -206480,9 +207974,10 @@ self: { homepage = "http://github.com/ekmett/tagged"; description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tagged_0_8_4" = callPackage + "tagged" = callPackage ({ mkDerivation, base, deepseq, template-haskell }: mkDerivation { pname = "tagged"; @@ -206492,7 +207987,6 @@ self: { homepage = "http://github.com/ekmett/tagged"; description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagged-binary" = callPackage @@ -206853,6 +208347,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "tai64" = callPackage + ({ mkDerivation, attoparsec, base, base16-bytestring, binary + , bytestring, doctest, QuickCheck, text, time, vector + }: + mkDerivation { + pname = "tai64"; + version = "0.1.0.3"; + sha256 = "9ac6b2e3130bd5c61b62a30601d4f59e64b659065c23d99d27e8dcb594b8c83b"; + libraryHaskellDepends = [ + attoparsec base base16-bytestring binary bytestring QuickCheck text + time vector + ]; + testHaskellDepends = [ base doctest ]; + homepage = "https://github.com/kim/tai64"; + description = "Tai64 Labels for Haskell"; + license = stdenv.lib.licenses.mpl20; + }) {}; + "takahashi" = callPackage ({ mkDerivation, base, lens, monad-skeleton, mtl }: mkDerivation { @@ -207074,7 +208586,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tar" = callPackage + "tar_0_5_0_1" = callPackage ({ mkDerivation, array, base, bytestring, bytestring-handle , containers, deepseq, directory, filepath, QuickCheck, tasty , tasty-quickcheck, time @@ -207092,9 +208604,30 @@ self: { ]; description = "Reading, writing and manipulating \".tar\" archive files."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tardis" = callPackage + "tar" = callPackage + ({ mkDerivation, array, base, bytestring, bytestring-handle + , containers, deepseq, directory, filepath, QuickCheck, tasty + , tasty-quickcheck, time + }: + mkDerivation { + pname = "tar"; + version = "0.5.0.2"; + sha256 = "777b2410653632ee4f727df49b1829b3688e5f76bcdd04c6f3962a06566a0e18"; + libraryHaskellDepends = [ + array base bytestring containers deepseq directory filepath time + ]; + testHaskellDepends = [ + array base bytestring bytestring-handle containers deepseq + directory filepath QuickCheck tasty tasty-quickcheck time + ]; + description = "Reading, writing and manipulating \".tar\" archive files."; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "tardis_0_3_0_0" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { pname = "tardis"; @@ -207104,6 +208637,19 @@ self: { homepage = "https://github.com/DanBurton/tardis"; description = "Bidirectional state monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tardis" = callPackage + ({ mkDerivation, base, mmorph, mtl }: + mkDerivation { + pname = "tardis"; + version = "0.4.1.0"; + sha256 = "e672abadd75055c2372d722c98058f7f3403fcca18258565d1cdd8e0dc25a5d9"; + libraryHaskellDepends = [ base mmorph mtl ]; + homepage = "https://github.com/DanBurton/tardis"; + description = "Bidirectional state monad transformer"; + license = stdenv.lib.licenses.bsd3; }) {}; "target" = callPackage @@ -207277,7 +208823,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tasty" = callPackage + "tasty_0_11_0_2" = callPackage ({ mkDerivation, ansi-terminal, async, base, clock, containers , deepseq, mtl, optparse-applicative, regex-tdfa-rc, stm, tagged , unbounded-delays @@ -207293,6 +208839,25 @@ self: { homepage = "http://documentup.com/feuerbach/tasty"; description = "Modern and extensible testing framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tasty" = callPackage + ({ mkDerivation, ansi-terminal, async, base, clock, containers + , deepseq, mtl, optparse-applicative, regex-tdfa, stm, tagged + , unbounded-delays + }: + mkDerivation { + pname = "tasty"; + version = "0.11.0.3"; + sha256 = "ca51533c3b6fb36a63b7a6062d71024e3a823ae173779c1c81850959e29e7efa"; + libraryHaskellDepends = [ + ansi-terminal async base clock containers deepseq mtl + optparse-applicative regex-tdfa stm tagged unbounded-delays + ]; + homepage = "http://documentup.com/feuerbach/tasty"; + description = "Modern and extensible testing framework"; + license = stdenv.lib.licenses.mit; }) {}; "tasty-ant-xml_1_0_1" = callPackage @@ -207331,13 +208896,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "tasty-dejafu" = callPackage + "tasty-dejafu_0_2_0_0" = callPackage ({ mkDerivation, base, dejafu, tasty }: mkDerivation { pname = "tasty-dejafu"; version = "0.2.0.0"; sha256 = "cba0315e6c6b2946ada0e48ea6f443f20bc8421810b0c334d1b095be0d1453ae"; libraryHaskellDepends = [ base dejafu tasty ]; + jailbreak = true; + homepage = "https://github.com/barrucadu/dejafu"; + description = "Deja Fu support for the Tasty test framework"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tasty-dejafu" = callPackage + ({ mkDerivation, base, dejafu, tagged, tasty }: + mkDerivation { + pname = "tasty-dejafu"; + version = "0.3.0.0"; + sha256 = "ab6c83eadf59c4a1f6f302694dbff61c7c9dc398c66d83c8b8eec161b84c3c62"; + libraryHaskellDepends = [ base dejafu tagged tasty ]; homepage = "https://github.com/barrucadu/dejafu"; description = "Deja Fu support for the Tasty test framework"; license = stdenv.lib.licenses.mit; @@ -209256,7 +210835,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "testing-feat" = callPackage + "testing-feat_0_4_0_2" = callPackage ({ mkDerivation, base, mtl, QuickCheck, tagshare, template-haskell }: mkDerivation { @@ -209270,9 +210849,10 @@ self: { ]; description = "Functional Enumeration of Algebraic Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "testing-feat_0_4_0_3" = callPackage + "testing-feat" = callPackage ({ mkDerivation, base, mtl, QuickCheck, tagshare, template-haskell }: mkDerivation { @@ -209284,7 +210864,6 @@ self: { ]; description = "Functional Enumeration of Algebraic Types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testing-type-modifiers" = callPackage @@ -209702,7 +211281,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath" = callPackage + "texmath_0_8_6_1" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -209724,9 +211303,10 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath_0_8_6_2" = callPackage + "texmath" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -209748,7 +211328,6 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "texrunner" = callPackage @@ -210420,8 +211999,8 @@ self: { }: mkDerivation { pname = "text-show-instances"; - version = "3.2"; - sha256 = "8362074b2e81eca771356f43dc01e5647a9518291987da76d75810346d0f1e1e"; + version = "3.2.1"; + sha256 = "33433b9d15d43254e1dbca31fdf226579a77c8c12e98e76a29a566703a000c68"; libraryHaskellDepends = [ base base-compat bifunctors binary bytestring containers directory haskeline hoopl hpc old-locale old-time pretty random semigroups @@ -211279,7 +212858,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "th-reify-many" = callPackage + "th-reify-many_0_1_4" = callPackage ({ mkDerivation, base, containers, mtl, safe, template-haskell , th-expand-syns }: @@ -211294,6 +212873,24 @@ self: { homepage = "http://github.com/mgsloan/th-reify-many"; description = "Recurseively reify template haskell datatype info"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "th-reify-many" = callPackage + ({ mkDerivation, base, containers, mtl, safe, template-haskell + , th-expand-syns + }: + mkDerivation { + pname = "th-reify-many"; + version = "0.1.4.1"; + sha256 = "b087a6e532de9350c140e364d43fe07e6f42c14625646c309aef67ef6391ea7f"; + libraryHaskellDepends = [ + base containers mtl safe template-haskell th-expand-syns + ]; + testHaskellDepends = [ base template-haskell ]; + homepage = "http://github.com/mgsloan/th-reify-many"; + description = "Recurseively reify template haskell datatype info"; + license = stdenv.lib.licenses.bsd3; }) {}; "th-sccs" = callPackage @@ -211556,8 +213153,10 @@ self: { ({ mkDerivation, atomic-primops, base, containers }: mkDerivation { pname = "thread-local-storage"; - version = "0.1.0.3"; - sha256 = "74ccc31b79a3a0b087b654185ddafc42ac4609846213c670495f70fd7bee464d"; + version = "0.1.0.4"; + sha256 = "3e87f35f3cabfedbd39810f33b7b167832aac008f4f458a2b2411349506b8239"; + revision = "1"; + editedCabalFile = "3bba7e8933033aa92c2767ccee383d84cc36a791773aff56d51ea95ecf12d90f"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ atomic-primops base containers ]; description = "Several options for thread-local-storage (TLS) in Haskell"; @@ -212484,7 +214083,6 @@ self: { version = "0.1.0"; sha256 = "dee2b3f214f36c6fb3f6d4d0a73954485404b7535965cb59ab1715fb17b9dcae"; libraryHaskellDepends = [ base clock timelike transformers ]; - jailbreak = true; homepage = "http://hub.darcs.net/esz/timelike-clock"; description = "Timelike interface for the clock library"; license = stdenv.lib.licenses.asl20; @@ -213747,8 +215345,8 @@ self: { ({ mkDerivation, base, containers }: mkDerivation { pname = "total-map"; - version = "0.0.4"; - sha256 = "282de643c4b34e1a5eabc89a0c1c4b1c62637626a1f9b4ea567fd40e71dc5cbe"; + version = "0.0.5"; + sha256 = "c7392d06e1c5ed4b1219eda838aaa0e2a7befcb3650765f1e87e86533d2195d3"; libraryHaskellDepends = [ base containers ]; homepage = "http://github.com/conal/total-map/"; description = "Finitely represented /total/ maps"; @@ -214212,7 +215810,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "transformers-lift" = callPackage + "transformers-lift_0_1_0_0" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { pname = "transformers-lift"; @@ -214221,6 +215819,18 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Ad-hoc type classes for lifting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "transformers-lift" = callPackage + ({ mkDerivation, base, transformers }: + mkDerivation { + pname = "transformers-lift"; + version = "0.1.0.1"; + sha256 = "c29d11f58fb9b2c1011c162f8f9f98cb0f2d12ca1317f40f4c88d9881840aa74"; + libraryHaskellDepends = [ base transformers ]; + description = "Ad-hoc type classes for lifting"; + license = stdenv.lib.licenses.bsd3; }) {}; "transformers-runnable" = callPackage @@ -215445,7 +217055,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "turtle" = callPackage + "turtle_1_2_6" = callPackage ({ mkDerivation, async, base, clock, directory, doctest, foldl , hostname, managed, optional-args, optparse-applicative, process , stm, system-fileio, system-filepath, temporary, text, time @@ -215461,6 +217071,28 @@ self: { temporary text time transformers unix ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; + description = "Shell programming, Haskell-style"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "turtle" = callPackage + ({ mkDerivation, async, base, clock, directory, doctest, foldl + , hostname, managed, optional-args, optparse-applicative, process + , stm, system-fileio, system-filepath, temporary, text, time + , transformers, unix + }: + mkDerivation { + pname = "turtle"; + version = "1.2.7"; + sha256 = "45736cf5106e75808eaed098228309bcfa3eb8b5e7e956c28423002ca5232f98"; + libraryHaskellDepends = [ + async base clock directory foldl hostname managed optional-args + optparse-applicative process stm system-fileio system-filepath + temporary text time transformers unix + ]; + testHaskellDepends = [ base doctest ]; description = "Shell programming, Haskell-style"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -216469,8 +218101,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "type-fun"; - version = "0.0.1"; - sha256 = "bc21ad690809ffad66ebaf9df7af07e5609b026fbd257b813228d1b3ea141a1f"; + version = "0.1.0"; + sha256 = "8ad17ecf12c7034eefe1e22d0cff29a4c52cf9b326dd1ccb2b87d18a6240c101"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base ]; homepage = "https://github.com/s9gf4ult/type-fun"; @@ -217120,7 +218752,7 @@ self: { license = "GPL"; }) {}; - "tz" = callPackage + "tz_0_1_0_1" = callPackage ({ mkDerivation, base, binary, bindings-posix, bytestring , containers, deepseq, HUnit, QuickCheck, template-haskell , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -217144,10 +218776,36 @@ self: { homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tz" = callPackage + ({ mkDerivation, base, binary, bindings-posix, bytestring + , containers, data-default, deepseq, HUnit, QuickCheck + , template-haskell, test-framework, test-framework-hunit + , test-framework-quickcheck2, test-framework-th, time, tzdata, unix + , vector + }: + mkDerivation { + pname = "tz"; + version = "0.1.1.0"; + sha256 = "a9fbbf3979e8a46cddbbaf4f1c1d58c3d8ceefb664a628b74420c3d4d1cdc177"; + libraryHaskellDepends = [ + base binary bytestring containers data-default deepseq + template-haskell time tzdata vector + ]; + testHaskellDepends = [ + base bindings-posix HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 test-framework-th + time tzdata unix vector + ]; + homepage = "https://github.com/nilcons/haskell-tz"; + description = "Efficient time zone handling"; + license = stdenv.lib.licenses.asl20; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; - "tzdata" = callPackage + "tzdata_0_1_20150810_0" = callPackage ({ mkDerivation, base, bytestring, containers, deepseq, directory , filemanip, filepath, HUnit, MissingH, test-framework , test-framework-hunit, test-framework-th, unix, vector @@ -217166,6 +218824,28 @@ self: { homepage = "https://github.com/nilcons/haskell-tzdata"; description = "Time zone database (as files and as a module)"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tzdata" = callPackage + ({ mkDerivation, base, bytestring, containers, deepseq, HUnit + , test-framework, test-framework-hunit, test-framework-th, unix + , vector + }: + mkDerivation { + pname = "tzdata"; + version = "0.1.20160417.0"; + sha256 = "97a1ff59343eb1fa0f1ff81f6d3235c898c7a2f64112c169fce0fa1dbf6a3309"; + libraryHaskellDepends = [ + base bytestring containers deepseq vector + ]; + testHaskellDepends = [ + base bytestring HUnit test-framework test-framework-hunit + test-framework-th unix + ]; + homepage = "https://github.com/nilcons/haskell-tzdata"; + description = "Time zone database (as files and as a module)"; + license = stdenv.lib.licenses.asl20; }) {}; "uAgda" = callPackage @@ -218027,19 +219707,6 @@ self: { }) {}; "union" = callPackage - ({ mkDerivation, base, lens, vinyl }: - mkDerivation { - pname = "union"; - version = "0.1.0.0"; - sha256 = "a1a3cd3959ce688656c75bf905fb7ba98ade43da2154dfb52879ac89ecda5625"; - revision = "1"; - editedCabalFile = "b727e5c9325d1672d30a1da433ddd1314775d7b50d2148713f419e524444ed79"; - libraryHaskellDepends = [ base lens vinyl ]; - description = "Extensible type-safe unions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "union_0_1_1_0" = callPackage ({ mkDerivation, base, deepseq, profunctors, tagged, vinyl }: mkDerivation { pname = "union"; @@ -218048,7 +219715,6 @@ self: { libraryHaskellDepends = [ base deepseq profunctors tagged vinyl ]; description = "Extensible type-safe unions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "union-find" = callPackage @@ -221078,6 +222744,21 @@ self: { license = "LGPL"; }) {}; + "vcatt" = callPackage + ({ mkDerivation, base, extra, shelly, system-filepath, text }: + mkDerivation { + pname = "vcatt"; + version = "0.1"; + sha256 = "112d3f025c34de3c56c4da8b8ab12699821171d7c5ef2d38b2b8f4e1af693e98"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base extra shelly system-filepath ]; + executableHaskellDepends = [ base shelly text ]; + homepage = "http://github.com/bergey/vcatt"; + description = "Recursively check that a directory is under version control"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "vcd" = callPackage ({ mkDerivation, base, polyparse }: mkDerivation { @@ -221430,7 +223111,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-binary-instances" = callPackage + "vector-binary-instances_0_2_3_1" = callPackage ({ mkDerivation, base, binary, tasty, tasty-quickcheck, vector }: mkDerivation { pname = "vector-binary-instances"; @@ -221441,9 +223122,10 @@ self: { homepage = "https://github.com/bos/vector-binary-instances"; description = "Instances of Data.Binary and Data.Serialize for vector"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-binary-instances_0_2_3_2" = callPackage + "vector-binary-instances" = callPackage ({ mkDerivation, base, binary, tasty, tasty-quickcheck, vector }: mkDerivation { pname = "vector-binary-instances"; @@ -221454,7 +223136,6 @@ self: { homepage = "https://github.com/bos/vector-binary-instances"; description = "Instances of Data.Binary and Data.Serialize for vector"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-buffer" = callPackage @@ -221906,7 +223587,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-th-unbox" = callPackage + "vector-th-unbox_0_2_1_5" = callPackage ({ mkDerivation, base, data-default, template-haskell, vector }: mkDerivation { pname = "vector-th-unbox"; @@ -221918,9 +223599,10 @@ self: { testHaskellDepends = [ base data-default vector ]; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-th-unbox_0_2_1_6" = callPackage + "vector-th-unbox" = callPackage ({ mkDerivation, base, data-default, template-haskell, vector }: mkDerivation { pname = "vector-th-unbox"; @@ -221930,7 +223612,6 @@ self: { testHaskellDepends = [ base data-default vector ]; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "verbalexpressions" = callPackage @@ -222011,16 +223692,16 @@ self: { }) {}; "versions" = callPackage - ({ mkDerivation, base, either, extra, parsec, semigroups, tasty - , tasty-hunit, text, text-show + ({ mkDerivation, base, either, megaparsec, microlens, semigroups + , tasty, tasty-hunit, text }: mkDerivation { pname = "versions"; - version = "1.0.2"; - sha256 = "739275e9d1d286786c2b9f62c1aa96beebb28912005e80f37acb56048ae6dc9e"; - libraryHaskellDepends = [ base parsec semigroups text ]; + version = "2.0.0"; + sha256 = "d8e18c140295e45e6b4f9c103c0c9d953a3baa769a0a364648074ad91623b7d2"; + libraryHaskellDepends = [ base megaparsec semigroups text ]; testHaskellDepends = [ - base either extra semigroups tasty tasty-hunit text text-show + base either microlens tasty tasty-hunit text ]; description = "Types and parsers for software version numbers"; license = stdenv.lib.licenses.bsd3; @@ -224246,7 +225927,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-extra" = callPackage + "wai-extra_3_0_15" = callPackage ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, fast-logger, hspec @@ -224275,6 +225956,36 @@ self: { 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" = 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.1"; + sha256 = "6474f70915bfd9342ec126a3de76c6247e0788deb553fc46e1ba72c1f0f8e4ad"; + 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 + ]; + homepage = "http://github.com/yesodweb/wai"; + description = "Provides some basic WAI handlers and middleware"; + license = stdenv.lib.licenses.mit; }) {}; "wai-frontend-monadcgi" = callPackage @@ -224379,7 +226090,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-handler-launch" = callPackage + "wai-handler-launch_3_0_0_5" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, http-types , process, streaming-commons, transformers, wai, warp }: @@ -224393,9 +226104,10 @@ self: { ]; description = "Launch a web app in the default browser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-handler-launch_3_0_1" = callPackage + "wai-handler-launch" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, http-types , process, streaming-commons, transformers, wai, warp }: @@ -224409,7 +226121,6 @@ self: { ]; description = "Launch a web app in the default browser"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-scgi" = callPackage @@ -224597,7 +226308,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-logger" = callPackage + "wai-logger_2_2_5" = callPackage ({ mkDerivation, auto-update, base, blaze-builder, byteorder , bytestring, case-insensitive, doctest, easy-file, fast-logger , http-types, network, unix, unix-time, wai @@ -224615,9 +226326,10 @@ self: { doCheck = false; description = "A logging system for WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-logger_2_2_7" = callPackage + "wai-logger" = callPackage ({ mkDerivation, base, blaze-builder, byteorder, bytestring , case-insensitive, doctest, fast-logger, http-types, network, unix , unix-time, wai @@ -224631,10 +226343,9 @@ self: { fast-logger http-types network unix unix-time wai ]; testHaskellDepends = [ base doctest ]; - jailbreak = true; + doCheck = false; description = "A logging system for WAI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-logger-prefork" = callPackage @@ -228233,7 +229944,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "webdriver-angular" = callPackage + "webdriver-angular_0_1_9" = callPackage ({ mkDerivation, aeson, base, hspec, hspec-webdriver , language-javascript, template-haskell, text, transformers , unordered-containers, wai-app-static, warp, webdriver @@ -228250,13 +229961,15 @@ self: { base hspec hspec-webdriver transformers wai-app-static warp webdriver ]; + jailbreak = true; doCheck = false; homepage = "https://bitbucket.org/wuzzeb/webdriver-utils"; description = "Webdriver actions to assist with testing a webpage which uses Angular.Js"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "webdriver-angular_0_1_10" = callPackage + "webdriver-angular" = callPackage ({ mkDerivation, aeson, base, hspec, hspec-webdriver , language-javascript, template-haskell, text, transformers , unordered-containers, wai-app-static, warp, webdriver @@ -228273,11 +229986,10 @@ self: { base hspec hspec-webdriver transformers wai-app-static warp webdriver ]; - jailbreak = true; + doCheck = false; homepage = "https://bitbucket.org/wuzzeb/webdriver-utils"; description = "Webdriver actions to assist with testing a webpage which uses Angular.Js"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webdriver-snoy" = callPackage @@ -228886,35 +230598,6 @@ self: { }) {}; "werewolf" = callPackage - ({ mkDerivation, aeson, base, containers, directory, extra - , filepath, lens, MonadRandom, mtl, optparse-applicative - , QuickCheck, random-shuffle, tasty, tasty-quickcheck, text - , tostring, transformers - }: - mkDerivation { - pname = "werewolf"; - version = "1.0.1.0"; - sha256 = "62394b709d0c7b119cabc0fedb42f279d2b5fba49c69990c61d9051f70260f66"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers directory extra filepath lens MonadRandom mtl - text tostring transformers - ]; - executableHaskellDepends = [ - aeson base directory extra filepath lens MonadRandom mtl - optparse-applicative random-shuffle text transformers - ]; - testHaskellDepends = [ - base containers extra lens MonadRandom mtl QuickCheck tasty - tasty-quickcheck text - ]; - homepage = "https://github.com/hjwylde/werewolf"; - description = "A game engine for playing werewolf within an arbitrary chat client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "werewolf_1_0_2_0" = callPackage ({ mkDerivation, aeson, base, containers, directory, extra , filepath, lens, MonadRandom, mtl, optparse-applicative , QuickCheck, random-shuffle, tasty, tasty-quickcheck, text @@ -228922,8 +230605,8 @@ self: { }: mkDerivation { pname = "werewolf"; - version = "1.0.2.0"; - sha256 = "d0ba1281ff4753b2e4c2c52136e846e3aaf0ca1170bccf30407a42a7c2c42677"; + version = "1.0.2.2"; + sha256 = "ef55f17c0d3a49f1135e9691d1cf29dbd0b538c4ef941b20f2f7ca7fd407fa81"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -228941,7 +230624,6 @@ self: { homepage = "https://github.com/hjwylde/werewolf"; description = "A game engine for playing werewolf within an arbitrary chat client"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "werewolf-slack" = callPackage @@ -228951,10 +230633,8 @@ self: { }: mkDerivation { pname = "werewolf-slack"; - version = "1.0.0.0"; - sha256 = "882eaeba0d24555265601da806ca89a9e5ee313a850f59dcbc8de6418f80a407"; - revision = "2"; - editedCabalFile = "c45c8d29405ce51049a2a72dbca21ae974d7c05c1fa966d469b06bc532b9dbfa"; + version = "1.0.1.0"; + sha256 = "fb3e1fdb51117c23b4edb0c0022b36e26cddbc04da280b85481af18a097ab6e1"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -229638,7 +231318,7 @@ self: { "wolf" = callPackage ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3 - , amazonka-swf, base, basic-prelude, bytestring, conduit + , amazonka-swf, async, base, basic-prelude, bytestring, conduit , conduit-extra, exceptions, fast-logger, formatting, http-conduit , http-types, lens, monad-control, monad-logger, mtl, mtl-compat , optparse-applicative, resourcet, safe, shelly, system-filepath @@ -229647,8 +231327,8 @@ self: { }: mkDerivation { pname = "wolf"; - version = "0.2.3"; - sha256 = "53c53f00ccc4ad27efc9164d90722174d28f7bad1850a1659f177d9c4d070fd3"; + version = "0.2.6"; + sha256 = "523b4ba7d885207bdb860a2a9106c7dfd37911084d9780ea21f481ad51281bb6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -229660,7 +231340,7 @@ self: { yaml ]; executableHaskellDepends = [ - aeson amazonka-core base basic-prelude bytestring + aeson amazonka-core async base basic-prelude bytestring optparse-applicative resourcet shelly system-filepath text transformers yaml zlib ]; @@ -230971,8 +232651,8 @@ self: { }: mkDerivation { pname = "xcffib"; - version = "0.4.1"; - sha256 = "c5449a61a2415f0be39ca4b1be2b186e2eb0f1563391d819b555a348f35f5248"; + version = "0.4.2"; + sha256 = "ccaafda9d2e55fb079e5f2bcac74264a0c3c97f6488b49f8a81eae9a66e556b2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -233173,7 +234853,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xss-sanitize" = callPackage + "xss-sanitize_0_3_5_6" = callPackage ({ mkDerivation, attoparsec, base, containers, css-text, hspec , HUnit, network-uri, tagsoup, text, utf8-string }: @@ -233192,9 +234872,10 @@ self: { homepage = "http://github.com/yesodweb/haskell-xss-sanitize"; description = "sanitize untrusted HTML to prevent XSS attacks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xss-sanitize_0_3_5_7" = callPackage + "xss-sanitize" = callPackage ({ mkDerivation, attoparsec, base, containers, css-text, hspec , HUnit, network-uri, tagsoup, text, utf8-string }: @@ -233213,7 +234894,6 @@ self: { homepage = "http://github.com/yesodweb/haskell-xss-sanitize"; description = "sanitize untrusted HTML to prevent XSS attacks"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xtc" = callPackage @@ -235041,7 +236721,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth" = callPackage + "yesod-auth_1_4_13_1" = callPackage ({ mkDerivation, aeson, authenticate, base, base16-bytestring , base64-bytestring, binary, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, conduit, conduit-extra @@ -235068,6 +236748,60 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth" = callPackage + ({ mkDerivation, aeson, authenticate, base, base16-bytestring + , base64-bytestring, binary, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, conduit, conduit-extra + , containers, cryptohash, data-default, email-validate, file-embed + , http-client, http-conduit, http-types, lifted-base, mime-mail + , network-uri, nonce, persistent, persistent-template, random + , resourcet, safe, shakespeare, template-haskell, text, time + , transformers, unordered-containers, wai, yesod-core, yesod-form + , yesod-persistent + }: + mkDerivation { + pname = "yesod-auth"; + version = "1.4.13.2"; + sha256 = "65d4cdc979db56e766aef3f64183075f4976ddedb8e62b07efb09be56f2cca20"; + libraryHaskellDepends = [ + aeson authenticate base base16-bytestring base64-bytestring binary + blaze-builder blaze-html blaze-markup byteable bytestring conduit + conduit-extra containers cryptohash data-default email-validate + file-embed http-client http-conduit http-types lifted-base + mime-mail network-uri nonce persistent persistent-template random + resourcet safe shakespeare template-haskell text time transformers + unordered-containers wai yesod-core yesod-form yesod-persistent + ]; + homepage = "http://www.yesodweb.com/"; + description = "Authentication for Yesod"; + license = stdenv.lib.licenses.mit; + }) {}; + + "yesod-auth-account_1_4_1" = callPackage + ({ mkDerivation, base, blaze-html, bytestring, hspec, monad-logger + , mtl, nonce, persistent, persistent-sqlite, pwstore-fast + , resourcet, text, xml-conduit, yesod, yesod-auth, yesod-core + , yesod-form, yesod-persistent, yesod-test + }: + mkDerivation { + pname = "yesod-auth-account"; + version = "1.4.1"; + sha256 = "11a42607a419b36b6c5d2590a5e67538dcc831bbe896b80ffcee25d4673971a1"; + libraryHaskellDepends = [ + base blaze-html bytestring mtl nonce persistent pwstore-fast text + yesod-auth yesod-core yesod-form yesod-persistent + ]; + testHaskellDepends = [ + base bytestring hspec monad-logger mtl persistent-sqlite resourcet + text xml-conduit yesod yesod-auth yesod-test + ]; + homepage = "https://bitbucket.org/wuzzeb/yesod-auth-account"; + description = "An account authentication plugin for Yesod"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-account" = callPackage @@ -235078,8 +236812,8 @@ self: { }: mkDerivation { pname = "yesod-auth-account"; - version = "1.4.1"; - sha256 = "11a42607a419b36b6c5d2590a5e67538dcc831bbe896b80ffcee25d4673971a1"; + version = "1.4.2"; + sha256 = "38d5c5795a6acb487f408b0bd7ab3fd874f3d99c5df94202dcbb436847e7eef3"; libraryHaskellDepends = [ base blaze-html bytestring mtl nonce persistent pwstore-fast text yesod-auth yesod-core yesod-form yesod-persistent @@ -235316,7 +237050,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-hashdb" = callPackage + "yesod-auth-hashdb_1_4_3" = callPackage ({ mkDerivation, base, bytestring, cryptohash, hspec, persistent , pwstore-fast, text, yesod-auth, yesod-core, yesod-form , yesod-persistent @@ -235333,26 +237067,32 @@ self: { homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; description = "Authentication plugin for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-hashdb_1_5" = callPackage - ({ mkDerivation, base, bytestring, cryptohash, hspec, persistent - , pwstore-fast, text, yesod-auth, yesod-core, yesod-form - , yesod-persistent + "yesod-auth-hashdb" = callPackage + ({ mkDerivation, base, bytestring, classy-prelude, containers + , cryptohash, hspec, http-conduit, http-types, monad-logger + , network-uri, persistent, persistent-sqlite, pwstore-fast + , resourcet, text, wai-extra, yesod, yesod-auth, yesod-core + , yesod-form, yesod-persistent, yesod-test }: mkDerivation { pname = "yesod-auth-hashdb"; - version = "1.5"; - sha256 = "396fbe836c291d9d1dce70c18ce39f82671a7e40af3fc743efb14a7faefb7259"; + version = "1.5.1"; + sha256 = "fb69116768ae46b0ba582e91151438fd9f89daf0fbcfb5fc534058798552d2fe"; libraryHaskellDepends = [ base bytestring cryptohash persistent pwstore-fast text yesod-auth yesod-core yesod-form yesod-persistent ]; - testHaskellDepends = [ base hspec text ]; + testHaskellDepends = [ + base bytestring classy-prelude containers hspec http-conduit + http-types monad-logger network-uri persistent-sqlite resourcet + text wai-extra yesod yesod-auth yesod-core yesod-test + ]; homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; description = "Authentication plugin for Yesod"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-kerberos" = callPackage @@ -235467,8 +237207,8 @@ self: { }: mkDerivation { pname = "yesod-auth-oauth"; - version = "1.4.1"; - sha256 = "6046eceb32cbd852c9737a8f09e25c0609296373bd4974bb256ba9dc2e7b48c8"; + version = "1.4.1.1"; + sha256 = "2dd9eda01b3b7625711b0a1dafce82915e82154976cd94c6076c8fa929d80773"; libraryHaskellDepends = [ authenticate-oauth base bytestring lifted-base text transformers yesod-auth yesod-core yesod-form @@ -236795,7 +238535,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-bin" = callPackage + "yesod-bin_1_4_18" = callPackage ({ mkDerivation, async, attoparsec, base, base64-bytestring , blaze-builder, bytestring, Cabal, conduit, conduit-extra , containers, data-default-class, deepseq, directory, file-embed @@ -236826,6 +238566,40 @@ self: { homepage = "http://www.yesodweb.com/"; description = "The yesod helper executable"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-bin" = callPackage + ({ mkDerivation, async, attoparsec, base, base64-bytestring + , blaze-builder, bytestring, Cabal, conduit, conduit-extra + , containers, data-default-class, deepseq, directory, file-embed + , filepath, fsnotify, ghc, ghc-paths, http-client, http-conduit + , http-reverse-proxy, http-types, lifted-base, network + , optparse-applicative, parsec, process, project-template + , resourcet, shakespeare, split, streaming-commons, tar + , template-haskell, text, time, transformers, transformers-compat + , unix-compat, unordered-containers, wai, wai-extra, warp, warp-tls + , yaml, zlib + }: + mkDerivation { + pname = "yesod-bin"; + version = "1.4.18.1"; + sha256 = "75f17da2d3a18797391b5699a251a7815f0302ce009326b9e1413b078125c82c"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + async attoparsec base base64-bytestring blaze-builder bytestring + Cabal conduit conduit-extra containers data-default-class deepseq + directory file-embed filepath fsnotify ghc ghc-paths http-client + http-conduit http-reverse-proxy http-types lifted-base network + optparse-applicative parsec process project-template resourcet + shakespeare split streaming-commons tar template-haskell text time + transformers transformers-compat unix-compat unordered-containers + wai wai-extra warp warp-tls yaml zlib + ]; + homepage = "http://www.yesodweb.com/"; + description = "The yesod helper executable"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-bootstrap" = callPackage @@ -237804,7 +239578,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-core" = callPackage + "yesod-core_1_4_20_1" = callPackage ({ mkDerivation, aeson, async, auto-update, base, blaze-builder , blaze-html, blaze-markup, byteable, bytestring, case-insensitive , cereal, clientsession, conduit, conduit-extra, containers, cookie @@ -237841,6 +239615,46 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-core" = callPackage + ({ mkDerivation, aeson, async, auto-update, base, blaze-builder + , blaze-html, blaze-markup, byteable, bytestring, case-insensitive + , cereal, clientsession, conduit, conduit-extra, containers, cookie + , data-default, deepseq, directory, exceptions, fast-logger, hspec + , hspec-expectations, http-types, HUnit, lifted-base, monad-control + , monad-logger, mtl, mwc-random, network, old-locale, parsec + , path-pieces, primitive, QuickCheck, random, resourcet, safe + , semigroups, shakespeare, streaming-commons, template-haskell + , text, time, transformers, transformers-base, unix-compat + , unordered-containers, vector, wai, wai-extra, wai-logger, warp + , word8 + }: + mkDerivation { + pname = "yesod-core"; + version = "1.4.20.2"; + sha256 = "cfa62e47de410bff1fd37571a3c7fda92b0a5cd28e1df8d466c7a65b5a2e6f28"; + libraryHaskellDepends = [ + aeson auto-update base blaze-builder blaze-html blaze-markup + byteable bytestring case-insensitive cereal clientsession conduit + conduit-extra containers cookie data-default deepseq directory + exceptions fast-logger http-types lifted-base monad-control + monad-logger mtl mwc-random old-locale parsec path-pieces primitive + random resourcet safe semigroups shakespeare template-haskell text + time transformers transformers-base unix-compat + unordered-containers vector wai wai-extra wai-logger warp word8 + ]; + testHaskellDepends = [ + async base blaze-builder bytestring clientsession conduit + conduit-extra containers cookie hspec hspec-expectations http-types + HUnit lifted-base mwc-random network path-pieces QuickCheck random + resourcet shakespeare streaming-commons template-haskell text + transformers wai wai-extra + ]; + homepage = "http://www.yesodweb.com/"; + description = "Creation of type-safe, RESTful web applications"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-crud" = callPackage @@ -238256,7 +240070,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-form" = callPackage + "yesod-form_1_4_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, containers, data-default , email-validate, hspec, network-uri, persistent, resourcet @@ -238278,6 +240092,31 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Form handling support for Yesod Web Framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-form" = callPackage + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, containers, data-default + , email-validate, hspec, network-uri, persistent, resourcet + , semigroups, shakespeare, template-haskell, text, time + , transformers, wai, xss-sanitize, yesod-core, yesod-persistent + }: + mkDerivation { + pname = "yesod-form"; + version = "1.4.7.1"; + sha256 = "66f1672c7aaec0b4c93f5cfc20593a4fb92d779d90d55ee5ebd1f7ae6a6e8dac"; + libraryHaskellDepends = [ + aeson attoparsec base blaze-builder blaze-html blaze-markup + byteable bytestring containers data-default email-validate + network-uri persistent resourcet semigroups shakespeare + template-haskell text time transformers wai xss-sanitize yesod-core + yesod-persistent + ]; + testHaskellDepends = [ base hspec text time ]; + homepage = "http://www.yesodweb.com/"; + description = "Form handling support for Yesod Web Framework"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-form-json" = callPackage @@ -238403,11 +240242,39 @@ self: { yesod yesod-core ]; testHaskellDepends = [ base ]; + doHaddock = false; homepage = "https://github.com/nakaji-dayo/yesod-job-queue#readme"; description = "Background jobs library for Yesod"; license = stdenv.lib.licenses.bsd3; }) {}; + "yesod-job-queue_0_2_0_1" = callPackage + ({ mkDerivation, aeson, api-field-json-th, base, bytestring + , classy-prelude-yesod, cron, file-embed, hedis, lens, monad-logger + , persistent-sqlite, resourcet, stm, text, time, uuid, yesod + , yesod-core + }: + mkDerivation { + pname = "yesod-job-queue"; + version = "0.2.0.1"; + sha256 = "872f8f53fbe4f350a08493beaa59a4ad9103e3d3419abbdfbf92ac3122962ebf"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson api-field-json-th base bytestring classy-prelude-yesod cron + file-embed hedis lens monad-logger stm text time uuid yesod + ]; + executableHaskellDepends = [ + base classy-prelude-yesod hedis monad-logger persistent-sqlite + resourcet yesod yesod-core + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/nakaji-dayo/yesod-job-queue#readme"; + description = "Background jobs library for Yesod"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "yesod-json" = callPackage ({ mkDerivation, base, yesod-core }: mkDerivation { @@ -238546,6 +240413,7 @@ self: { warp yaml yesod yesod-auth yesod-core yesod-form yesod-persistent yesod-static ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/mangopay"; description = "Yesod library for MangoPay API access"; license = stdenv.lib.licenses.bsd3; @@ -238780,7 +240648,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-persistent" = callPackage + "yesod-persistent_1_4_0_4" = callPackage ({ mkDerivation, base, blaze-builder, conduit, hspec, persistent , persistent-sqlite, persistent-template, resource-pool, resourcet , text, transformers, wai-extra, yesod-core @@ -238800,6 +240668,29 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Some helpers for using Persistent from Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-persistent" = callPackage + ({ mkDerivation, base, blaze-builder, conduit, hspec, persistent + , persistent-sqlite, persistent-template, resource-pool, resourcet + , text, transformers, wai-extra, yesod-core + }: + mkDerivation { + pname = "yesod-persistent"; + version = "1.4.0.5"; + sha256 = "e5ad890ca4d4c0499ae08e5e1e294f4c1435e9395ba1ba9bb3acf3982eb8d2c2"; + libraryHaskellDepends = [ + base blaze-builder conduit persistent persistent-template + resource-pool resourcet transformers yesod-core + ]; + testHaskellDepends = [ + base blaze-builder conduit hspec persistent persistent-sqlite text + wai-extra yesod-core + ]; + homepage = "http://www.yesodweb.com/"; + description = "Some helpers for using Persistent from Yesod"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-platform" = callPackage @@ -239386,7 +241277,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-static-angular" = callPackage + "yesod-static-angular_0_1_7" = callPackage ({ mkDerivation, aeson, base, blaze-builder, blaze-markup , bytestring, data-default, directory, filepath, hamlet, hspec , HUnit, language-javascript, mime-types, shakespeare @@ -239415,9 +241306,10 @@ self: { homepage = "https://bitbucket.org/wuzzeb/yesod-static-angular"; description = "Yesod generators for embedding AngularJs code into yesod-static at compile time"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-static-angular_0_1_8" = callPackage + "yesod-static-angular" = callPackage ({ mkDerivation, aeson, base, blaze-builder, blaze-markup , bytestring, data-default, directory, filepath, hamlet, hspec , HUnit, language-javascript, mime-types, shakespeare @@ -239442,11 +241334,10 @@ self: { base bytestring hamlet hspec HUnit shakespeare template-haskell text yesod-core yesod-static yesod-test ]; - jailbreak = true; + doCheck = false; homepage = "https://bitbucket.org/wuzzeb/yesod-static-angular"; description = "Yesod generators for embedding AngularJs code into yesod-static at compile time"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-table_1_0_3" = callPackage @@ -239750,7 +241641,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-test" = callPackage + "yesod-test_1_5_1_0" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html , blaze-markup, bytestring, case-insensitive, containers, cookie , hspec, hspec-core, html-conduit, http-types, HUnit, lifted-base @@ -239774,6 +241665,33 @@ self: { homepage = "http://www.yesodweb.com"; description = "integration testing for WAI/Yesod Applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-test" = callPackage + ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html + , blaze-markup, bytestring, case-insensitive, containers, cookie + , hspec, hspec-core, html-conduit, http-types, HUnit, lifted-base + , monad-control, network, persistent, text, time, transformers, wai + , wai-extra, xml-conduit, xml-types, yesod-core, yesod-form + }: + mkDerivation { + pname = "yesod-test"; + version = "1.5.1.1"; + sha256 = "0886927c92ddc59608902c6fb02b8e8b9e631120dd6e75db764a95b5a75b0160"; + libraryHaskellDepends = [ + attoparsec base blaze-builder blaze-html blaze-markup bytestring + case-insensitive containers cookie hspec-core html-conduit + http-types HUnit monad-control network persistent text time + transformers wai wai-extra xml-conduit xml-types yesod-core + ]; + testHaskellDepends = [ + base bytestring containers hspec html-conduit http-types HUnit + lifted-base text wai xml-conduit yesod-core yesod-form + ]; + homepage = "http://www.yesodweb.com"; + description = "integration testing for WAI/Yesod Applications"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-test-json" = callPackage From f622804472ee0e4ba7e0e5ad0dbf5a19087dff08 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 26 Apr 2016 17:05:15 +0200 Subject: [PATCH 276/337] Add LTS Haskell 5.14. --- 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 0060b7e37d7..3798abe9208 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -386,7 +386,10 @@ rec { lts-5_13 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.13.nix { }; }; - lts-5 = packages.lts-5_13; + lts-5_14 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.14.nix { }; + }; + lts-5 = packages.lts-5_14; lts = packages.lts-5; }; From f6980571ab6906782b645885399ffcbcede202dd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 3 May 2016 10:09:52 +0200 Subject: [PATCH 277/337] Add LTS Haskell 5.15. --- 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 3798abe9208..3401e967fe8 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -389,7 +389,10 @@ rec { lts-5_14 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.14.nix { }; }; - lts-5 = packages.lts-5_14; + lts-5_15 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.15.nix { }; + }; + lts-5 = packages.lts-5_15; lts = packages.lts-5; }; From ec493075184f342d29b125457a9a84ccdaf9419a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 26 Apr 2016 17:14:36 +0200 Subject: [PATCH 278/337] haskell-hakyll: fix test suite by providing "rev" in test environment --- pkgs/development/haskell-modules/configuration-common.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 363ddcbea88..3616847dfa0 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -276,7 +276,6 @@ self: super: { filestore = dontCheck super.filestore; getopt-generics = dontCheck super.getopt-generics; graceful = dontCheck super.graceful; - hakyll = dontCheck super.hakyll; Hclip = dontCheck super.Hclip; HList = dontCheck super.HList; ide-backend = dontCheck super.ide-backend; From ddb8c06c2d82c44077b2b73606297a70191c3ca2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 25 Apr 2016 10:10:44 +0200 Subject: [PATCH 279/337] haskell-yi: mark as broken --- pkgs/development/haskell-modules/configuration-common.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 3616847dfa0..4a9857b20df 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1013,4 +1013,12 @@ self: super: { # generate enough conclusive test cases. split = dontCheck super.split; + # https://github.com/NixOS/nixpkgs/issues/14967 + yi = markBroken super.yi; + yi-fuzzy-open = markBroken super.yi-fuzzy-open; + yi-monokai = markBroken super.yi-monokai; + yi-snippet = markBroken super.yi-snippet; + yi-solarized = markBroken super.yi-solarized; + yi-spolsky = markBroken super.yi-spolsky; + } From 967901f1957b98df04c91d6a54b7b55afe07fb97 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Apr 2016 09:48:20 +0200 Subject: [PATCH 280/337] haskell-binary: update version used for GHC releases prior to 7.8.x --- pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix | 4 ++-- pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix index 1bdd454d408..89755799af8 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix @@ -41,7 +41,7 @@ self: super: { unix = null; # These packages are core libraries in GHC 7.10.x, but not here. - binary = self.binary_0_8_2_1; + binary = self.binary_0_8_3_0; deepseq = self.deepseq_1_3_0_1; haskeline = self.haskeline_0_7_2_1; hoopl = self.hoopl_3_10_2_0; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix index db0aa51492f..d4c3ae73114 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -42,7 +42,7 @@ self: super: { xhtml = self.xhtml_3000_2_1; # https://github.com/haskell/cabal/issues/2322 - Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_2_1; process = self.process_1_2_3_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_3_0; process = self.process_1_2_3_0; }; # Newer versions don't compile. Cabal_1_18_1_7 = dontJailbreak super.Cabal_1_18_1_7; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix index e2bb4f00d78..977fffbd558 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -41,10 +41,10 @@ self: super: { xhtml = self.xhtml_3000_2_1; # https://github.com/haskell/cabal/issues/2322 - Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_2_1; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_3_0; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_2_1; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_3_0; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index e10136a42ee..4ce544534fc 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -40,10 +40,10 @@ self: super: { xhtml = self.xhtml_3000_2_1; # https://github.com/haskell/cabal/issues/2322 - Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_2_1; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_3_0; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_2_1; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_3_0; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; From 66ff540ee6afc52c443296dbfdc7683e608399ea Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Apr 2016 11:22:15 +0200 Subject: [PATCH 281/337] haskell-lens: update version used by GHC 8.0.x --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index 555223b7594..3611b19db1b 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -66,7 +66,7 @@ self: super: { kan-extensions = self.kan-extensions_5_0_1; # Earlier versions don't support kan-extensions 5.x. - lens = self.lens_4_13_2_1; + lens = self.lens_4_14; # https://github.com/dreixel/generic-deriving/issues/37 generic-deriving = dontHaddock super.generic-deriving; From 066b5cb11abd8ac049b833e9204cbd903ec3cdf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Tue, 3 May 2016 10:59:29 +0200 Subject: [PATCH 282/337] idea.idea-{community,ultimate}: 2016.1 -> 2016.1.1 --- pkgs/applications/editors/idea/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index 482cbc56bcf..d51eee6817f 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -185,13 +185,13 @@ in idea-community = buildIdea rec { name = "idea-community-${version}"; - version = "2016.1"; - build = "IC-145.258.11"; + version = "2016.1.1"; + build = "IC-145.597"; description = "Integrated Development Environment (IDE) by Jetbrains, community edition"; license = stdenv.lib.licenses.asl20; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz"; - sha256 = "1grgyaapsbf7xn0m18x6fgghjh9n1n2zblz9608g9qgx5p28kn6q"; + sha256 = "1r0kvq8vk8ln4cabqjvfqp0lfy9vf8c8vddh76sd41d635pamba6"; }; }; @@ -209,13 +209,13 @@ in idea-ultimate = buildIdea rec { name = "idea-ultimate-${version}"; - version = "2016.1"; - build = "IU-145.258.11"; + version = "2016.1.1"; + build = "IU-145.597"; description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license"; license = stdenv.lib.licenses.unfree; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz"; - sha256 = "15ybqdy311wi3iqi7bzk798cd91jpl73ngl86kzwr68d24nyy3zb"; + sha256 = "d5a7d2d657fe2ad170716054c6ccd164e509cf50ee6eee8b61fe3490071940df"; }; }; From 0ba62f7150ed1b2756adb52b1bac6d3d7d93831f Mon Sep 17 00:00:00 2001 From: rardiol Date: Tue, 3 May 2016 06:19:19 -0300 Subject: [PATCH 283/337] spring, springlobby update (#15182) * alure: init at 1.2 * spring: 96.0 -> 101.0 * springlobby: 0.195 -> 0.247 --- pkgs/development/libraries/alure/default.nix | 20 ++++++++++++++++ pkgs/games/spring/default.nix | 25 +++++++++++++------- pkgs/games/spring/springlobby.nix | 16 ++++++------- pkgs/top-level/all-packages.nix | 2 ++ 4 files changed, 46 insertions(+), 17 deletions(-) create mode 100644 pkgs/development/libraries/alure/default.nix diff --git a/pkgs/development/libraries/alure/default.nix b/pkgs/development/libraries/alure/default.nix new file mode 100644 index 00000000000..200ff1ca2e7 --- /dev/null +++ b/pkgs/development/libraries/alure/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, cmake, openal }: + +stdenv.mkDerivation rec { + name = "alure-${version}"; + version = "1.2"; + + src = fetchurl { + url = "http://kcat.strangesoft.net/alure-releases/alure-${version}.tar.bz2"; + sha256 = "0w8gsyqki21s1qb2s5ac1kj08i6nc937c0rr08xbw9w9wvd6lpj6"; + }; + + buildInputs = [ cmake openal ]; + + meta = with stdenv.lib; { + description = "A utility library to help manage common tasks with OpenAL applications"; + homepage = http://kcat.strangesoft.net/alure.html; + license = licenses.mit; + platforms = platforms.unix; + }; +} diff --git a/pkgs/games/spring/default.nix b/pkgs/games/spring/default.nix index 525adbc0a12..9e4a0954272 100644 --- a/pkgs/games/spring/default.nix +++ b/pkgs/games/spring/default.nix @@ -1,32 +1,41 @@ { stdenv, fetchurl, cmake, lzma, boost, libdevil, zlib, p7zip -, openal, libvorbis, glew, freetype, xorg, SDL, mesa, binutils +, openal, libvorbis, glew, freetype, xorg, SDL2, mesa, binutils , asciidoc, libxslt, docbook_xsl, docbook_xsl_ns, curl, makeWrapper -, jdk ? null, python ? null, systemd +, jdk ? null, python ? null, systemd, libunwind, glibc, which, minizip , withAI ? true # support for AI Interfaces and Skirmish AIs }: stdenv.mkDerivation rec { name = "spring-${version}"; - version = "96.0"; + version = "101.0"; src = fetchurl { url = "mirror://sourceforge/springrts/spring_${version}_src.tar.lzma"; - sha256 = "1axyqkxgv3a0zg0afzlc7j3lyi412zd551j317ci41yqz2qzf0px"; + sha256 = "0nr65zhw92k36zgwqgi31vcp129vk7r3v7xzd6l9w7mp1ljvypgi"; }; + # The cmake included module correcly finds nix's glew, however + # it has to be the bundled FindGLEW for headless or dedicated builds + prePatch = '' + substituteInPlace ./rts/build/cmake/FindAsciiDoc.cmake \ + --replace "PATHS /usr /usr/share /usr/local /usr/local/share" "PATHS ${docbook_xsl}"\ + --replace "xsl/docbook/manpages" "share/xml/docbook-xsl/manpages" + patchShebangs . + rm rts/build/cmake/FindGLEW.cmake + ''; + cmakeFlags = ["-DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=ON" "-DCMAKE_INSTALL_RPATH_USE_LINK_PATH:BOOL=ON" "-DPREFER_STATIC_LIBS:BOOL=OFF"]; - buildInputs = [ cmake lzma boost libdevil zlib p7zip openal libvorbis freetype SDL + buildInputs = [ cmake lzma boost libdevil zlib p7zip openal libvorbis freetype SDL2 xorg.libX11 xorg.libXcursor mesa glew asciidoc libxslt docbook_xsl curl makeWrapper - docbook_xsl_ns systemd ] + docbook_xsl_ns systemd libunwind glibc.dev glibc.static which minizip ] ++ stdenv.lib.optional withAI jdk ++ stdenv.lib.optional withAI python; - # reported upstream http://springrts.com/mantis/view.php?id=4305 - #enableParallelBuilding = true; # occasionally missing generated files on Hydra + enableParallelBuilding = true; NIX_CFLAGS_COMPILE = "-fpermissive"; # GL header minor incompatibility diff --git a/pkgs/games/spring/springlobby.nix b/pkgs/games/spring/springlobby.nix index bbcbd1920e9..571cf311545 100644 --- a/pkgs/games/spring/springlobby.nix +++ b/pkgs/games/spring/springlobby.nix @@ -1,18 +1,19 @@ -{ stdenv, fetchurl, cmake, wxGTK, openal, pkgconfig, curl, libtorrentRasterbar, libpng, libX11 -, gettext, bash, gawk, boost, libnotify, gtk, doxygen, spring, makeWrapper }: +{ stdenv, fetchurl, cmake, wxGTK30, openal, pkgconfig, curl, libtorrentRasterbar +, libpng, libX11, gettext, bash, gawk, boost, libnotify, gtk, doxygen, spring +, makeWrapper, glib, minizip, alure, pcre, jsoncpp }: stdenv.mkDerivation rec { name = "springlobby-${version}"; - version = "0.195"; + version = "0.247"; src = fetchurl { url = "http://www.springlobby.info/tarballs/springlobby-${version}.tar.bz2"; - sha256 = "0hxxm97c74rvm78vlfn2byn0zjlrhankxdrs2hz73rdq6451h10b"; + sha256 = "0sx14k4xsyjkmphhxfn9q341lv32c53g6wl1cbdx2sknzs3qasxs"; }; buildInputs = [ - cmake wxGTK openal pkgconfig curl gettext libtorrentRasterbar - boost libpng libX11 libnotify gtk doxygen makeWrapper + cmake wxGTK30 openal pkgconfig curl gettext libtorrentRasterbar pcre jsoncpp + boost libpng libX11 libnotify gtk doxygen makeWrapper glib minizip alure ]; prePatch = '' @@ -21,9 +22,6 @@ stdenv.mkDerivation rec { substituteInPlace CMakeLists.txt --replace "boost_system-mt" "boost_system" ''; - # for now sound is disabled as it causes a linker error with alure i can't resolve (qknight) - cmakeFlags = "-DOPTION_SOUND:BOOL=OFF"; - enableParallelBuilding = true; postInstall = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 85c2afd4a54..cb067817f54 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6416,6 +6416,8 @@ in afflib = callPackage ../development/libraries/afflib { }; + alure = callPackage ../development/libraries/alure { }; + agg = callPackage ../development/libraries/agg { }; allegro = callPackage ../development/libraries/allegro {}; From 4b2caa2409fa836b456be59f52b27ac6e49fb17a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 3 May 2016 06:45:17 -0300 Subject: [PATCH 284/337] Greybird: init at 2016-03-11 --- pkgs/misc/themes/greybird/default.nix | 33 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/misc/themes/greybird/default.nix diff --git a/pkgs/misc/themes/greybird/default.nix b/pkgs/misc/themes/greybird/default.nix new file mode 100644 index 00000000000..173b392d22a --- /dev/null +++ b/pkgs/misc/themes/greybird/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchFromGitHub, gtk-engine-murrine }: + +stdenv.mkDerivation rec { + pname = "Greybird"; + version = "2016-03-11"; + name = "${pname}-${version}"; + + src = fetchFromGitHub { + repo = "${pname}"; + owner = "shimmerproject"; + rev = "77f3cbd94b0c87f502aaeeaa7fd6347283c876cf"; + sha256 = "1gqq9j61izdw8arly8kzr629wa904rn6mq48cvlaksknimw0hf2h"; + }; + + buildInputs = [ gtk-engine-murrine ]; + + dontBuild = true; + + installPhase = '' + mkdir -p $out/share/themes/${pname}{," Bright"," Compact"," a11y"} + cp -a * $out/share/themes/${pname}/ + mv $out/share/themes/${pname}/xfce-notify-4.0_bright $out/share/themes/${pname}" Bright"/xfce-notify-4.0 + mv $out/share/themes/${pname}/xfwm4-compact $out/share/themes/${pname}" Compact"/xfwm4 + mv $out/share/themes/${pname}/xfwm4-a11y $out/share/themes/${pname}" a11y"/xfwm4 + ''; + + meta = { + description = "Grey and blue theme (Gtk, Xfce, Emerald, Metacity, Mutter, Unity)"; + homepage = http://shimmerproject.org/our-projects/greybird/; + license = with stdenv.lib.licenses; [ gpl2Plus cc-by-nc-sa-30 ]; + maintainers = [ stdenv.lib.maintainers.romildo ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4126d518076..b73efcba400 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16266,6 +16266,8 @@ in gnuk-unstable = callPackage ../misc/gnuk/unstable.nix { }; gnuk-git = callPackage ../misc/gnuk/git.nix { }; + greybird = callPackage ../misc/themes/greybird { }; + gxemul = callPackage ../misc/emulators/gxemul { }; hatari = callPackage ../misc/emulators/hatari { }; From fe0bb1efd13b75eeb0785840d88c2280562d5f69 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 3 May 2016 13:19:15 +0300 Subject: [PATCH 285/337] imagemagick: add webp support --- pkgs/applications/graphics/ImageMagick/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix index b732a2ed916..78837f55af4 100644 --- a/pkgs/applications/graphics/ImageMagick/default.nix +++ b/pkgs/applications/graphics/ImageMagick/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, fetchurl, pkgconfig, libtool , bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg -, lcms2, openexr, libpng, librsvg, libtiff, libxml2, openjpeg +, lcms2, openexr, libpng, librsvg, libtiff, libxml2, openjpeg, libwebp }: let @@ -39,13 +39,14 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig libtool zlib fontconfig freetype ghostscript libjpeg - openexr libpng librsvg libtiff libxml2 openjpeg + openexr libpng librsvg libtiff libxml2 openjpeg libwebp ]; propagatedBuildInputs = [ bzip2 freetype libjpeg libX11 libXext libXt lcms2 ]; postInstall = '' + (cd "$out/include" && ln -s ImageMagick* ImageMagick) '' + lib.optionalString (ghostscript != null) '' for la in $out/lib/*.la; do diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cb067817f54..a74438448f8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12871,6 +12871,7 @@ in libtiff = null; libxml2 = null; openjpeg = null; + libwebp = null; }; imagemagick = self.imagemagickBig.override { From 6f7fdda06e69c7e37df14c6fb37529b4d2b24687 Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Tue, 3 May 2016 15:29:31 +0300 Subject: [PATCH 286/337] rspamd: 1.2.5 -> 1.2.6 --- pkgs/servers/mail/rspamd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/rspamd/default.nix b/pkgs/servers/mail/rspamd/default.nix index a9da7953978..0888eb1182a 100644 --- a/pkgs/servers/mail/rspamd/default.nix +++ b/pkgs/servers/mail/rspamd/default.nix @@ -6,13 +6,13 @@ in stdenv.mkDerivation rec { name = "rspamd-${version}"; - version = "1.2.5"; + version = "1.2.6"; src = fetchFromGitHub { owner = "vstakhov"; repo = "rspamd"; rev = version; - sha256 = "0slpixcfd74qkm7445lmcry4s1yamayphzzyr7cxjlr9xfxlblqn"; + sha256 = "152s8shanzm1z0ijcsvki21s4gy2v6lby82qh6ngwl6abh465gq9"; }; nativeBuildInputs = [ cmake pkgconfig perl ]; From 7dea8d17a76f2164ad96c5da85835b38806269a5 Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Tue, 3 May 2016 15:34:20 +0300 Subject: [PATCH 287/337] rmilter: 1.8.1 -> 1.8.4 --- pkgs/servers/mail/rmilter/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/rmilter/default.nix b/pkgs/servers/mail/rmilter/default.nix index d5ba98bfbb3..85979ecca82 100644 --- a/pkgs/servers/mail/rmilter/default.nix +++ b/pkgs/servers/mail/rmilter/default.nix @@ -8,13 +8,13 @@ in stdenv.mkDerivation rec { name = "rmilter-${version}"; - version = "1.8.1"; + version = "1.8.4"; src = fetchFromGitHub { owner = "vstakhov"; repo = "rmilter"; rev = version; - sha256 = "0cplkc1acgysxn8id9wakd1fx0f76cazscpfqhrxyjbk5fb11ll4"; + sha256 = "0d2hv39sbzsv3bkbx433vpdqgcjv71v2kkaz4k065xppi35wa2js"; }; nativeBuildInputs = [ bison cmake flex ]; From d092838a1c342747bd522abac875381134679137 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 2 May 2016 22:21:42 +0200 Subject: [PATCH 288/337] postfix: 3.0.3 -> 3.0.4 --- pkgs/servers/mail/postfix/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/postfix/default.nix b/pkgs/servers/mail/postfix/default.nix index 52327090e44..75685d7605e 100644 --- a/pkgs/servers/mail/postfix/default.nix +++ b/pkgs/servers/mail/postfix/default.nix @@ -23,11 +23,11 @@ in stdenv.mkDerivation rec { name = "postfix-${version}"; - version = "3.0.3"; + version = "3.0.4"; src = fetchurl { url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; - sha256 = "00mc12k5p1zlrlqcf33vh5zizaqr5ai8q78dwv69smjh6kn4c7j0"; + sha256 = "03msimdzxndm1nskljarws45wpqk020ckfcrmn1p3pxrfq8yh75q"; }; buildInputs = [ makeWrapper gnused db openssl cyrus_sasl icu pcre ] From 70ac1ec4224e2b85d01c12f5054e50828b982c00 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 2 May 2016 22:20:52 +0200 Subject: [PATCH 289/337] dovecot: 2.2.21 -> 2.2.24 --- .../mail/dovecot/2.2.x-module_dir.patch | 85 ++++++++++--------- pkgs/servers/mail/dovecot/default.nix | 4 +- 2 files changed, 46 insertions(+), 43 deletions(-) diff --git a/pkgs/servers/mail/dovecot/2.2.x-module_dir.patch b/pkgs/servers/mail/dovecot/2.2.x-module_dir.patch index a6edc8d83ee..66059cff6f7 100644 --- a/pkgs/servers/mail/dovecot/2.2.x-module_dir.patch +++ b/pkgs/servers/mail/dovecot/2.2.x-module_dir.patch @@ -1,7 +1,8 @@ -diff -ur dovecot-2.2.12-orig/src/auth/main.c dovecot-2.2.12/src/auth/main.c ---- dovecot-2.2.12-orig/src/auth/main.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/auth/main.c 2014-03-14 09:28:17.642334838 +0100 -@@ -193,7 +193,7 @@ +diff --git a/src/auth/main.c b/src/auth/main.c +index 5a87c57..74bff52 100644 +--- a/src/auth/main.c ++++ b/src/auth/main.c +@@ -194,7 +194,7 @@ static void main_preinit(void) mod_set.debug = global_auth_settings->debug; mod_set.filter_callback = auth_module_filter; @@ -10,7 +11,7 @@ diff -ur dovecot-2.2.12-orig/src/auth/main.c dovecot-2.2.12/src/auth/main.c module_dir_init(modules); if (!worker) -@@ -223,7 +223,7 @@ +@@ -225,7 +225,7 @@ void auth_module_load(const char *names) mod_set.debug = global_auth_settings->debug; mod_set.ignore_missing = TRUE; @@ -19,10 +20,11 @@ diff -ur dovecot-2.2.12-orig/src/auth/main.c dovecot-2.2.12/src/auth/main.c &mod_set); module_dir_init(modules); } -diff -ur dovecot-2.2.12-orig/src/config/all-settings.c dovecot-2.2.12/src/config/all-settings.c ---- dovecot-2.2.12-orig/src/config/all-settings.c 2014-02-11 23:31:37.000000000 +0100 -+++ dovecot-2.2.12/src/config/all-settings.c 2014-03-14 09:32:08.907608311 +0100 -@@ -773,7 +773,7 @@ +diff --git a/src/config/all-settings.c b/src/config/all-settings.c +index de223a5..2df2d21 100644 +--- a/src/config/all-settings.c ++++ b/src/config/all-settings.c +@@ -836,7 +836,7 @@ static const struct mail_user_settings mail_user_default_settings = { .last_valid_gid = 0, .mail_plugins = "", @@ -31,20 +33,20 @@ diff -ur dovecot-2.2.12-orig/src/config/all-settings.c dovecot-2.2.12/src/config .mail_log_prefix = "%s(%u): ", -@@ -3304,7 +3304,7 @@ +@@ -3545,7 +3545,7 @@ const struct doveadm_settings doveadm_default_settings = { .base_dir = PKG_RUNDIR, .libexec_dir = PKG_LIBEXECDIR, .mail_plugins = "", - .mail_plugin_dir = MODULEDIR, + .mail_plugin_dir = "/etc/dovecot/modules", + .auth_debug = FALSE, .auth_socket_path = "auth-userdb", .doveadm_socket_path = "doveadm-server", - .doveadm_worker_count = 0, -Only in dovecot-2.2.12/src/config: all-settings.c.orig -diff -ur dovecot-2.2.12-orig/src/config/config-parser.c dovecot-2.2.12/src/config/config-parser.c ---- dovecot-2.2.12-orig/src/config/config-parser.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/config/config-parser.c 2014-03-14 09:28:17.645334840 +0100 -@@ -990,7 +990,7 @@ +diff --git a/src/config/config-parser.c b/src/config/config-parser.c +index 2a5009a..134f92b 100644 +--- a/src/config/config-parser.c ++++ b/src/config/config-parser.c +@@ -1047,7 +1047,7 @@ void config_parse_load_modules(void) memset(&mod_set, 0, sizeof(mod_set)); mod_set.abi_version = DOVECOT_ABI_VERSION; @@ -53,10 +55,11 @@ diff -ur dovecot-2.2.12-orig/src/config/config-parser.c dovecot-2.2.12/src/confi module_dir_init(modules); i_array_init(&new_roots, 64); -diff -ur dovecot-2.2.12-orig/src/dict/main.c dovecot-2.2.12/src/dict/main.c ---- dovecot-2.2.12-orig/src/dict/main.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/dict/main.c 2014-03-14 09:28:17.645334840 +0100 -@@ -61,7 +61,7 @@ +diff --git a/src/dict/main.c b/src/dict/main.c +index e6c945e..06ad6c5 100644 +--- a/src/dict/main.c ++++ b/src/dict/main.c +@@ -62,7 +62,7 @@ static void main_init(void) mod_set.abi_version = DOVECOT_ABI_VERSION; mod_set.require_init_funcs = TRUE; @@ -65,23 +68,24 @@ diff -ur dovecot-2.2.12-orig/src/dict/main.c dovecot-2.2.12/src/dict/main.c module_dir_init(modules); /* Register only after loading modules. They may contain SQL drivers, -diff -ur dovecot-2.2.12-orig/src/doveadm/doveadm-settings.c dovecot-2.2.12/src/doveadm/doveadm-settings.c ---- dovecot-2.2.12-orig/src/doveadm/doveadm-settings.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/doveadm/doveadm-settings.c 2014-03-14 09:32:56.540087069 +0100 -@@ -77,7 +77,7 @@ +diff --git a/src/doveadm/doveadm-settings.c b/src/doveadm/doveadm-settings.c +index df12284..19c18da 100644 +--- a/src/doveadm/doveadm-settings.c ++++ b/src/doveadm/doveadm-settings.c +@@ -81,7 +81,7 @@ const struct doveadm_settings doveadm_default_settings = { .base_dir = PKG_RUNDIR, .libexec_dir = PKG_LIBEXECDIR, .mail_plugins = "", - .mail_plugin_dir = MODULEDIR, + .mail_plugin_dir = "/etc/dovecot/modules", + .auth_debug = FALSE, .auth_socket_path = "auth-userdb", .doveadm_socket_path = "doveadm-server", - .doveadm_worker_count = 0, -Only in dovecot-2.2.12/src/doveadm: doveadm-settings.c.orig -diff -ur dovecot-2.2.12-orig/src/lib-fs/fs-api.c dovecot-2.2.12/src/lib-fs/fs-api.c ---- dovecot-2.2.12-orig/src/lib-fs/fs-api.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/lib-fs/fs-api.c 2014-03-14 09:28:17.646334843 +0100 -@@ -89,7 +89,7 @@ +diff --git a/src/lib-fs/fs-api.c b/src/lib-fs/fs-api.c +index b50fbe0..ace3aff 100644 +--- a/src/lib-fs/fs-api.c ++++ b/src/lib-fs/fs-api.c +@@ -114,7 +114,7 @@ static void fs_class_try_load_plugin(const char *driver) mod_set.abi_version = DOVECOT_ABI_VERSION; mod_set.ignore_missing = TRUE; @@ -90,11 +94,11 @@ diff -ur dovecot-2.2.12-orig/src/lib-fs/fs-api.c dovecot-2.2.12/src/lib-fs/fs-ap module_name, &mod_set); module_dir_init(fs_modules); -Only in dovecot-2.2.12/src/lib-fs: fs-api.c.orig -diff -ur dovecot-2.2.12-orig/src/lib-ssl-iostream/iostream-ssl.c dovecot-2.2.12/src/lib-ssl-iostream/iostream-ssl.c ---- dovecot-2.2.12-orig/src/lib-ssl-iostream/iostream-ssl.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/lib-ssl-iostream/iostream-ssl.c 2014-03-14 09:28:17.646334843 +0100 -@@ -30,7 +30,7 @@ +diff --git a/src/lib-ssl-iostream/iostream-ssl.c b/src/lib-ssl-iostream/iostream-ssl.c +index a0659ab..dba3729 100644 +--- a/src/lib-ssl-iostream/iostream-ssl.c ++++ b/src/lib-ssl-iostream/iostream-ssl.c +@@ -29,7 +29,7 @@ static int ssl_module_load(const char **error_r) memset(&mod_set, 0, sizeof(mod_set)); mod_set.abi_version = DOVECOT_ABI_VERSION; mod_set.setting_name = ""; @@ -103,11 +107,11 @@ diff -ur dovecot-2.2.12-orig/src/lib-ssl-iostream/iostream-ssl.c dovecot-2.2.12/ ssl_vfuncs = module_get_symbol(ssl_module, "ssl_vfuncs"); if (ssl_vfuncs == NULL) { -Only in dovecot-2.2.12/src/lib-ssl-iostream: iostream-ssl.c.orig -diff -ur dovecot-2.2.12-orig/src/lib-storage/mail-storage-settings.c dovecot-2.2.12/src/lib-storage/mail-storage-settings.c ---- dovecot-2.2.12-orig/src/lib-storage/mail-storage-settings.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/lib-storage/mail-storage-settings.c 2014-03-14 09:28:17.646334843 +0100 -@@ -262,7 +262,7 @@ +diff --git a/src/lib-storage/mail-storage-settings.c b/src/lib-storage/mail-storage-settings.c +index e2233bf..bbf981e 100644 +--- a/src/lib-storage/mail-storage-settings.c ++++ b/src/lib-storage/mail-storage-settings.c +@@ -274,7 +274,7 @@ static const struct mail_user_settings mail_user_default_settings = { .last_valid_gid = 0, .mail_plugins = "", @@ -116,4 +120,3 @@ diff -ur dovecot-2.2.12-orig/src/lib-storage/mail-storage-settings.c dovecot-2.2 .mail_log_prefix = "%s(%u): ", -Only in dovecot-2.2.12/src/lib-storage: mail-storage-settings.c.orig diff --git a/pkgs/servers/mail/dovecot/default.nix b/pkgs/servers/mail/dovecot/default.nix index ec4c5c935af..5bfdc594924 100644 --- a/pkgs/servers/mail/dovecot/default.nix +++ b/pkgs/servers/mail/dovecot/default.nix @@ -8,7 +8,7 @@ }: stdenv.mkDerivation rec { - name = "dovecot-2.2.21"; + name = "dovecot-2.2.24"; nativeBuildInputs = [ perl pkgconfig ]; buildInputs = [ openssl bzip2 zlib clucene_core_2 icu openldap ] @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://dovecot.org/releases/2.2/${name}.tar.gz"; - sha256 = "080bil83gr2dski4gk2bxykg2g497kqm2hn2z4xkbw71b6g17dvs"; + sha256 = "1dxymvvkykbrx3crb8qsixizgjz23jikxg6vsc1mgswdxa8nij3i"; }; preConfigure = '' From c0f4361902d786459b29d69913f606a4a7f92d1c Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 1 May 2016 14:41:52 +0200 Subject: [PATCH 290/337] php: Fix openssl module build --- pkgs/development/interpreters/php/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index c9fbf5c5de6..d6b4e03a2f6 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -154,8 +154,8 @@ let }; openssl = { - configureFlags = ["--enable-openssl"]; - buildInputs = [openssl]; + configureFlags = ["--with-openssl"]; + buildInputs = [openssl openssl.dev]; }; mbstring = { From ffdcdb5124d0542bb61f16556fdd60ea5f73971a Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 26 Apr 2016 01:02:04 +0200 Subject: [PATCH 291/337] znapzend: 0.15.3 -> 0.15.5 --- pkgs/tools/backup/znapzend/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/backup/znapzend/default.nix b/pkgs/tools/backup/znapzend/default.nix index 1534a0bab0a..d4658132930 100644 --- a/pkgs/tools/backup/znapzend/default.nix +++ b/pkgs/tools/backup/znapzend/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchFromGitHub, zfs, mbuffer, perl, perlPackages, wget, autoconf, automake }: let - version = "0.15.3"; - checksum = "1xk0lgb23kv1cl0wc2rav75hjrjigd0cp3hjw9gxab835vsvnkq0"; + version = "0.15.5"; + checksum = "09cf9n5i1wxlkhq8ky9npg1a6qiz4blizhbb9390gy0m0wl9l7zw"; in stdenv.mkDerivation rec { name = "znapzend-${version}"; - src = fetchFromGitHub{ + src = fetchFromGitHub { owner = "oetiker"; repo = "znapzend"; rev = "v${version}"; @@ -61,7 +61,6 @@ stdenv.mkDerivation rec { " ''; - meta = with stdenv.lib; { description = "High performance open source ZFS backup with mbuffer and ssh support"; homepage = http://www.znapzend.org; From b9fc31a4152a0e89c57231220c8e853606d5a5ce Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 3 May 2016 16:07:59 +0200 Subject: [PATCH 292/337] popcorntime: mark as broken A temporary measure, short of removal, until https://github.com/NixOS/nixpkgs/issues/15120 has been resolved. --- pkgs/applications/video/popcorntime/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/video/popcorntime/default.nix b/pkgs/applications/video/popcorntime/default.nix index 63c5f0460f2..5b71f9901e1 100644 --- a/pkgs/applications/video/popcorntime/default.nix +++ b/pkgs/applications/video/popcorntime/default.nix @@ -40,5 +40,6 @@ in stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl3; platforms = platforms.linux; maintainers = with maintainers; [ bobvanderlinden rnhmjoj ]; + broken = true; }; } From a6fdcea877889ff56f533e7bda7c0c57e56f0b72 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 24 Apr 2016 17:39:36 +0200 Subject: [PATCH 293/337] cimg: 1.5.9 -> 1.7.0 --- pkgs/development/libraries/cimg/builder.sh | 7 +++---- pkgs/development/libraries/cimg/default.nix | 15 ++++++++------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/development/libraries/cimg/builder.sh b/pkgs/development/libraries/cimg/builder.sh index bbd5f712551..6473395493c 100644 --- a/pkgs/development/libraries/cimg/builder.sh +++ b/pkgs/development/libraries/cimg/builder.sh @@ -4,9 +4,8 @@ source $stdenv/setup unpackPhase cd $sourceRoot -install -dm 755 $out/include/cimg $out/share/doc/cimg/html $out/share/cimg/examples $out/share/cimg/plugins +install -dm 755 $out/include/cimg $doc/share/doc/cimg/html $doc/share/cimg/examples $doc/share/cimg/plugins install -m 644 CImg.h $out/include/cimg -cp -dr --no-preserve=ownership html/* $out/share/doc/cimg/html/ -cp -dr --no-preserve=ownership examples/* $out/share/cimg/examples/ -cp -dr --no-preserve=ownership plugins/* $out/share/cimg/plugins/ +cp -dr --no-preserve=ownership examples/* $doc/share/cimg/examples/ +cp -dr --no-preserve=ownership plugins/* $doc/share/cimg/plugins/ diff --git a/pkgs/development/libraries/cimg/default.nix b/pkgs/development/libraries/cimg/default.nix index dc397adf491..722852f1270 100644 --- a/pkgs/development/libraries/cimg/default.nix +++ b/pkgs/development/libraries/cimg/default.nix @@ -4,21 +4,22 @@ stdenv.mkDerivation rec { name = "cimg-${version}"; - version = "1.5.9"; + version = "1.7.0"; src = fetchurl { - url = "mirror://sourceforge/project/cimg/CImg-${version}.zip"; - sha256 = "1xn20643gcbl76kvy9ajhwbyjjb73mg65q32ma8mdkwn1qhn7f7c"; + url = "http://cimg.eu/files/CImg_${version}.zip"; + sha256 = "06j3n7gvgxzvprqwf56nnca195y38dcbdlszrxyn5p9w9al437zj"; }; - buildInputs = with stdenv.lib; - [ unzip ]; + buildInputs = [ unzip ]; builder = ./builder.sh; - + + outputs = [ "out" "doc" ]; + meta = with stdenv.lib; { description = "A small, open source, C++ toolkit for image processing"; - homepage = http://cimg.sourceforge.net/; + homepage = http://cimg.eu/; license = licenses.cecill-c; maintainers = [ maintainers.AndersonTorres ]; platforms = platforms.unix; From e07b06d12a08b23bf90b9d75e90ea815c975dc30 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 04:58:54 +0200 Subject: [PATCH 294/337] tgt: 1.0.60 -> 1.0.63 --- pkgs/tools/networking/tgt/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/tgt/default.nix b/pkgs/tools/networking/tgt/default.nix index f870b5463b6..bd4be0f1b86 100644 --- a/pkgs/tools/networking/tgt/default.nix +++ b/pkgs/tools/networking/tgt/default.nix @@ -2,14 +2,15 @@ , docbook_xsl }: let - version = "1.0.60"; + version = "1.0.63"; in stdenv.mkDerivation rec { name = "tgt-${version}"; + src = fetchFromGitHub { owner = "fujita"; repo = "tgt"; - rev = "ab51727a361bf296b1c2036375b5e45479059921"; - sha256 = "1bf8rn3mavjrzkp5k23akqn5ilw43g8mpfr68z1bi8s9lr2gkf37"; + rev = "v${version}"; + sha256 = "1x3irnbfikdqhlikhwqazg0g0hc1df5r2bp001f13sr0nvw28y1n"; }; buildInputs = [ libxslt systemd libaio docbook_xsl ]; @@ -30,6 +31,7 @@ in stdenv.mkDerivation rec { ''; enableParallelBuilding = true; + meta = { description = "iSCSI Target daemon with rdma support"; license = stdenv.lib.licenses.gpl2; From e027ef7cb866f6cf40c2139eddf8fd43b8aafa8d Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 04:53:24 +0200 Subject: [PATCH 295/337] iw: 4.1 -> 4.3 --- pkgs/os-specific/linux/iw/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/iw/default.nix b/pkgs/os-specific/linux/iw/default.nix index 3cd2567d96f..53aa15ec62e 100644 --- a/pkgs/os-specific/linux/iw/default.nix +++ b/pkgs/os-specific/linux/iw/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, libnl, pkgconfig}: stdenv.mkDerivation rec { - name = "iw-4.1"; + name = "iw-4.3"; src = fetchurl { url = "https://www.kernel.org/pub/software/network/iw/${name}.tar.xz"; - sha256 = "0jx3s5wdvm2qxd3h883fnyjsb1c29qcsz1r19bc029g8v2nalr2i"; + sha256 = "085jyvrxzarvn5jl0fk618jjxy50nqx7ifngszc4jxk6a4ddibd6"; }; buildInputs = [ libnl pkgconfig ]; From d8230abeed7168a044a231797678754c671c160b Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 03:30:17 +0200 Subject: [PATCH 296/337] libass: 0.12.2 -> 0.13.2 --- pkgs/development/libraries/libass/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libass/default.nix b/pkgs/development/libraries/libass/default.nix index ab300729acc..1acd71c30c8 100644 --- a/pkgs/development/libraries/libass/default.nix +++ b/pkgs/development/libraries/libass/default.nix @@ -18,11 +18,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { name = "libass-${version}"; - version = "0.12.2"; + version = "0.13.2"; src = fetchurl { url = "https://github.com/libass/libass/releases/download/${version}/${name}.tar.xz"; - sha256 = "1qzibgqmnnqk2r116lpk1br764g0v74f2zp12y5id0p1plaing37"; + sha256 = "1kpsw4zw95v4cjvild9wpk73dzavn1khsm3bm32kcz6amnkd166n"; }; configureFlags = [ From 47a7b42d511f492f3c67d66234c1c9fe7cbab0ae Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 03:06:10 +0200 Subject: [PATCH 297/337] collectd: 5.5.0 -> 5.5.1 --- pkgs/tools/system/collectd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/collectd/default.nix b/pkgs/tools/system/collectd/default.nix index 5f42e39871a..8676ce31c66 100644 --- a/pkgs/tools/system/collectd/default.nix +++ b/pkgs/tools/system/collectd/default.nix @@ -31,12 +31,12 @@ , yajl ? null }: stdenv.mkDerivation rec { - version = "5.5.0"; + version = "5.5.1"; name = "collectd-${version}"; src = fetchurl { url = "http://collectd.org/files/${name}.tar.bz2"; - sha256 = "847684cf5c10de1dc34145078af3fcf6e0d168ba98c14f1343b1062a4b569e88"; + sha256 = "0gxwq3jl20wgvb7qawivshpkm4i3kvghpnfcn5yrlhphw4kdbigr"; }; buildInputs = [ From ed64199876f8329fa847f9fb2adf97df2b130145 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 02:46:24 +0200 Subject: [PATCH 298/337] libdwg: 0.3 -> 0.6 --- pkgs/development/libraries/libdwg/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/libdwg/default.nix b/pkgs/development/libraries/libdwg/default.nix index a80c0677a3b..8ffa1ff8192 100644 --- a/pkgs/development/libraries/libdwg/default.nix +++ b/pkgs/development/libraries/libdwg/default.nix @@ -1,13 +1,15 @@ -{stdenv, fetchurl}: +{stdenv, fetchurl, indent}: stdenv.mkDerivation { - name = "libdwg-0.3"; + name = "libdwg-0.6"; src = fetchurl { - url = mirror://sourceforge/libdwg/libdwg-0.3.tar.bz2; - sha256 = "0lx7ih00m11qw9wsc5ksmwvi3d80l0yfwnbrn5qfz182w4d3fpc9"; + url = mirror://sourceforge/libdwg/libdwg-0.6.tar.bz2; + sha256 = "0l8ks1x70mkna1q7mzy1fxplinz141bd24qhrm1zkdil74mcsryc"; }; + nativeBuildInputs = [ indent ]; + meta = { description = "library reading dwg files"; homepage = http://libdwg.sourceforge.net/en/; From bc233fa54e1a66b53393c27272915d878a607508 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 02:32:51 +0200 Subject: [PATCH 299/337] arandr: 0.1.8 -> 0.1.9 --- pkgs/tools/X11/arandr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/X11/arandr/default.nix b/pkgs/tools/X11/arandr/default.nix index 68355d0d8aa..676800f73e9 100644 --- a/pkgs/tools/X11/arandr/default.nix +++ b/pkgs/tools/X11/arandr/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, python, xrandr, pythonPackages }: pythonPackages.buildPythonApplication rec { - name = "arandr-0.1.8"; + name = "arandr-0.1.9"; src = fetchurl { url = "http://christian.amsuess.com/tools/arandr/files/${name}.tar.gz"; - sha256 = "0d574mbmhaqmh7kivaryj2hpghz6xkvic9ah43s1hf385y7c33kd"; + sha256 = "1i3f1agixxbfy4kxikb2b241p7c2lg73cl9wqfvlwz3q6zf5faxv"; }; patchPhase = '' From 13b9d32917bc613f293688989bfa6e25fe5f3e59 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 02:25:25 +0200 Subject: [PATCH 300/337] libu2f-host: 1.0.0 -> 1.1.1 --- pkgs/development/libraries/libu2f-host/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libu2f-host/default.nix b/pkgs/development/libraries/libu2f-host/default.nix index dc2481a2e85..98dbe517591 100644 --- a/pkgs/development/libraries/libu2f-host/default.nix +++ b/pkgs/development/libraries/libu2f-host/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, json_c, hidapi }: stdenv.mkDerivation rec { - name = "libu2f-host-1.0.0"; + name = "libu2f-host-1.1.1"; src = fetchurl { url = "https://developers.yubico.com/libu2f-host/Releases/${name}.tar.xz"; - sha256 = "0x232rp325k1l3rdh1b9d7w3w2z2lhjmp95v4mlmd8pybjdnpi8q"; + sha256 = "0g0f012w0c00cvj5g319x2b8prbh0d3fcac9960cy7xsd8chckg1"; }; nativeBuildInputs = [ pkgconfig ]; From 669cd2adbf984fb509ed61585fc92bde41b65871 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 02:21:20 +0200 Subject: [PATCH 301/337] lighttpd: 1.4.37 -> 1.4.39 --- pkgs/servers/http/lighttpd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/lighttpd/default.nix b/pkgs/servers/http/lighttpd/default.nix index 60848516155..af029cc4db2 100644 --- a/pkgs/servers/http/lighttpd/default.nix +++ b/pkgs/servers/http/lighttpd/default.nix @@ -7,11 +7,11 @@ assert enableMagnet -> lua5_1 != null; assert enableMysql -> mysql != null; stdenv.mkDerivation rec { - name = "lighttpd-1.4.37"; + name = "lighttpd-1.4.39"; src = fetchurl { url = "http://download.lighttpd.net/lighttpd/releases-1.4.x/${name}.tar.xz"; - sha256 = "1gbri5avg1jv2g585wk0jp53mf9jjdz2py9774mxm8bwarh6ykl0"; + sha256 = "0nrnhxl1ypzgsms0ky6zdf6ib94vf8x77c422s2xav9x7j2s3fby"; }; buildInputs = [ pkgconfig pcre libxml2 zlib attr bzip2 which file openssl ] From 117920233f11d66423b541374ef0acac5f2d5dd2 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:33:25 +0200 Subject: [PATCH 302/337] flashrom: 0.9.7 -> 0.9.9 --- pkgs/tools/misc/flashrom/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/flashrom/default.nix b/pkgs/tools/misc/flashrom/default.nix index b514f1c920f..9db6fbca6fa 100644 --- a/pkgs/tools/misc/flashrom/default.nix +++ b/pkgs/tools/misc/flashrom/default.nix @@ -1,15 +1,16 @@ { stdenv, fetchurl, pkgconfig, libftdi, pciutils }: -let version = "0.9.7"; in +let version = "0.9.9"; in stdenv.mkDerivation rec { name = "flashrom-${version}"; src = fetchurl { url = "http://download.flashrom.org/releases/${name}.tar.bz2"; - sha256 = "5a55212d00791981a9a1cb0cdca9d9e58bea6d399864251e7b410b4d3d6137e9"; + sha256 = "0i9wg1lyfg99bld7d00zqjm9f0lk6m0q3h3n9c195c9yysq5ccfb"; }; - buildInputs = [ pkgconfig libftdi pciutils ]; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ libftdi pciutils ]; preConfigure = "export PREFIX=$out"; From 0ab30ecf06d5bf5271e4d256954f734d723b6f0a Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:20:49 +0200 Subject: [PATCH 303/337] libopus: 1.1 -> 1.1.2 --- pkgs/development/libraries/libopus/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libopus/default.nix b/pkgs/development/libraries/libopus/default.nix index b8951e66c8b..20101fe6fe3 100644 --- a/pkgs/development/libraries/libopus/default.nix +++ b/pkgs/development/libraries/libopus/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, fixedPoint ? false, withCustomModes ? true }: let - version = "1.1"; + version = "1.1.2"; in stdenv.mkDerivation rec { name = "libopus-${version}"; src = fetchurl { url = "http://downloads.xiph.org/releases/opus/opus-${version}.tar.gz"; - sha256 = "158xprn2086arvdib3vbbygz7z6jqkw2nci7nlywzzwallap0wmr"; + sha256 = "1z87x5c5x951lhnm70iqr2gqn15wns5cqsw8nnkvl48jwdw00a8f"; }; outputs = [ "dev" "out" ]; From 7ac522ad83f7d952bc2dd193f77c5e732e575413 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:20:33 +0200 Subject: [PATCH 304/337] libevdev: 1.4.5 -> 1.4.6 --- pkgs/development/libraries/libevdev/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libevdev/default.nix b/pkgs/development/libraries/libevdev/default.nix index c1587cedd16..3ff40141b16 100644 --- a/pkgs/development/libraries/libevdev/default.nix +++ b/pkgs/development/libraries/libevdev/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, python }: stdenv.mkDerivation rec { - name = "libevdev-1.4.5"; + name = "libevdev-1.4.6"; src = fetchurl { url = "http://www.freedesktop.org/software/libevdev/${name}.tar.xz"; - sha256 = "07faqb47c7sjl25rc788cbslyiv5ijky0jc4g6312qz0hv55h779"; + sha256 = "1lrja526iyg48yw6i0dxdhyj63q9gwbgvj6xk1hskxzrqyhf2akv"; }; buildInputs = [ python ]; From b4a5bb3d4be7104bf933a0012af522cb3081d241 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:20:18 +0200 Subject: [PATCH 305/337] libev: 4.20 -> 4.22 --- pkgs/development/libraries/libev/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libev/default.nix b/pkgs/development/libraries/libev/default.nix index 0472aeef694..37e0c9b3431 100644 --- a/pkgs/development/libraries/libev/default.nix +++ b/pkgs/development/libraries/libev/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libev-${version}"; - version="4.20"; + version="4.22"; src = fetchurl { url = "http://dist.schmorp.de/libev/Attic/${name}.tar.gz"; - sha256 = "17j47pbkr65a18mfvy2861p5k7w4pxmdgiw723ryfqd9gx636w7q"; + sha256 = "1mhvy38g9947bbr0n0hzc34zwfvvfd99qgzpkbap8g2lmkl7jq3k"; }; meta = { From 9f99116772ffd2a394f9fe2f084b6cd67c099d96 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:15:48 +0200 Subject: [PATCH 306/337] libnatspec: 0.2.6 -> 0.3.0 --- pkgs/development/libraries/libnatspec/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libnatspec/default.nix b/pkgs/development/libraries/libnatspec/default.nix index 7dafe3434f9..cdde02c361f 100644 --- a/pkgs/development/libraries/libnatspec/default.nix +++ b/pkgs/development/libraries/libnatspec/default.nix @@ -1,13 +1,15 @@ -{ stdenv, fetchurl, popt, libiconv }: +{ stdenv, fetchurl, autoreconfHook, popt, libiconv }: stdenv.mkDerivation (rec { - name = "libnatspec-0.2.6"; + name = "libnatspec-0.3.0"; src = fetchurl { url = "mirror://sourceforge/natspec/${name}.tar.bz2"; - sha256 = "0zvm9afh1skxgdv62ylrpwyykpjhhskxj0zv7yrdf7jhfdriz0y3"; + sha256 = "0wffxjlc8svilwmrcg3crddpfrpv35mzzjgchf8ygqsvwbrbb3b7"; }; + nativeBuildInputs = [ autoreconfHook ]; + buildInputs = [ popt ]; meta = { From c3df9b0650af1d4a528e280261a9e2037c9062f3 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:11:00 +0200 Subject: [PATCH 307/337] libnl: 3.2.26 -> 3.2.27 --- pkgs/os-specific/linux/libnl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/libnl/default.nix b/pkgs/os-specific/linux/libnl/default.nix index 1e1ed0a6112..6e5c63a2722 100644 --- a/pkgs/os-specific/linux/libnl/default.nix +++ b/pkgs/os-specific/linux/libnl/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchFromGitHub, autoreconfHook, bison, flex, pkgconfig }: -let version = "3.2.26"; in +let version = "3.2.27"; in stdenv.mkDerivation { name = "libnl-${version}"; src = fetchFromGitHub { - sha256 = "1cbqdhirn6hxmv8xkm8xp3n6ayyxw7sbi15fym167rdz0h9rkhmm"; - rev = "libnl3_2_26"; + sha256 = "1rc8plgl2ijq2pwlzinpfr06kiggjyx71r3lw505m6rvxvdac82r"; + rev = "libnl3_2_27"; repo = "libnl"; owner = "thom311"; }; From 738661953878ed0c67c23bbfffe73d05da25c190 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:06:26 +0200 Subject: [PATCH 308/337] libseccomp: 2.2.3 -> 2.3.0 --- pkgs/development/libraries/libseccomp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libseccomp/default.nix b/pkgs/development/libraries/libseccomp/default.nix index 444b68a23ee..63a60820e3f 100644 --- a/pkgs/development/libraries/libseccomp/default.nix +++ b/pkgs/development/libraries/libseccomp/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, getopt }: -let version = "2.2.3"; in +let version = "2.3.0"; in stdenv.mkDerivation rec { name = "libseccomp-${version}"; src = fetchurl { url = "https://github.com/seccomp/libseccomp/releases/download/v${version}/libseccomp-${version}.tar.gz"; - sha256 = "d9b400b703cab7bb04b84b9b6e52076a630b673819d7541757bcc16467b6d49e"; + sha256 = "07chdgr87aayn6sjm94y6gisl4j6si1hr9cqhs09l9bqfnky6mnp"; }; buildInputs = [ getopt ]; From 57b5c22feb90376bea9e0fe4a4c3405bb59eeacf Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:06:10 +0200 Subject: [PATCH 309/337] libsecret: 0.18 -> 0.18.5 --- pkgs/development/libraries/libsecret/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libsecret/default.nix b/pkgs/development/libraries/libsecret/default.nix index 3ceabc3f1ac..bb8d971d6d4 100644 --- a/pkgs/development/libraries/libsecret/default.nix +++ b/pkgs/development/libraries/libsecret/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, glib, pkgconfig, intltool, libxslt, docbook_xsl, gtk_doc , libgcrypt, gobjectIntrospection }: let - version = "0.18"; + version = "0.18.5"; in stdenv.mkDerivation rec { name = "libsecret-${version}"; src = fetchurl { - url = "mirror://gnome/sources/libsecret/${version}/${name}.tar.xz"; - sha256 = "1qq29c01xxjyx5sl6y5h22w8r0ff4c73bph3gfx3h7mx5mvalwqc"; + url = "mirror://gnome/sources/libsecret/0.18/${name}.tar.xz"; + sha256 = "1cychxc3ff8fp857iikw0n2s13s2mhw2dn1mr632f7w3sn6vvrww"; }; propagatedBuildInputs = [ glib ]; From dc576f940383c379692badf968800bbb228695eb Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 00:12:59 +0200 Subject: [PATCH 310/337] libxmp: 4.3.11 -> 4.3.12 --- pkgs/development/libraries/libxmp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libxmp/default.nix b/pkgs/development/libraries/libxmp/default.nix index 106fcee257f..28584d14a87 100644 --- a/pkgs/development/libraries/libxmp/default.nix +++ b/pkgs/development/libraries/libxmp/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "libxmp-4.3.11"; + name = "libxmp-4.3.12"; meta = with stdenv.lib; { description = "Extended module player library"; @@ -17,6 +17,6 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://sourceforge/xmp/libxmp/${name}.tar.gz"; - sha256 = "0r9qhps2a8nc850bislkgjzlamwl671r1sag1mi8k1a9gxq4n9kx"; + sha256 = "1536dfxgxl6dyvkdby8lxzi9f7y2qlwl8ylrkybips3ampcqgkhm"; }; } From 50884acd8418e157b5b1a9759095379efd0adb89 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 23:49:33 +0200 Subject: [PATCH 311/337] lzip: 1.16 -> 1.17 --- pkgs/tools/compression/lzip/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/compression/lzip/default.nix b/pkgs/tools/compression/lzip/default.nix index b3d407c98ef..912a0b6f0f2 100644 --- a/pkgs/tools/compression/lzip/default.nix +++ b/pkgs/tools/compression/lzip/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, texinfo }: stdenv.mkDerivation rec { - name = "lzip-1.16"; + name = "lzip-1.17"; buildInputs = [ texinfo ]; src = fetchurl { url = "mirror://savannah/lzip/${name}.tar.gz"; - sha256 = "0l9724rw1l3hg2ldr3n7ihqich4m9nc6y7l302bvdj4jmxdw530j"; + sha256 = "0lh3x964jjldx3piax6c2qzlhfiir5i6rnrcn8ri44rk19g8ahwl"; }; configureFlags = "CPPFLAGS=-DNDEBUG CFLAGS=-O3 CXXFLAGS=-O3"; From b701ea82e7c757e80b7867af7095e55f0be4a5da Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 22:52:02 +0200 Subject: [PATCH 312/337] netperf: 2.6.0 -> 2.7.0 --- pkgs/applications/networking/netperf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/netperf/default.nix b/pkgs/applications/networking/netperf/default.nix index 705f1455c45..40aa3263629 100644 --- a/pkgs/applications/networking/netperf/default.nix +++ b/pkgs/applications/networking/netperf/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl}: stdenv.mkDerivation rec { - name = "netperf-2.6.0"; + name = "netperf-2.7.0"; src = fetchurl { url = "ftp://ftp.netperf.org/netperf/${name}.tar.bz2"; - sha256 = "cd8dac710d4273d29f70e8dbd09353a6362ac58a11926e0822233c0cb230323a"; + sha256 = "0nip8178pdry0pqx2gkz0sl2gcvc7qww621q43kqnp43amvg2al4"; }; meta = { From dd3c18fe2223e14444a7417012b707a679a2e808 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 22:50:28 +0200 Subject: [PATCH 313/337] openh264: 1.4.0 -> 1.5.0 --- pkgs/development/libraries/openh264/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/openh264/default.nix b/pkgs/development/libraries/openh264/default.nix index 76188d484f9..71983b30a2c 100644 --- a/pkgs/development/libraries/openh264/default.nix +++ b/pkgs/development/libraries/openh264/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, nasm }: stdenv.mkDerivation rec { - name = "openh264-1.4.0"; + name = "openh264-1.5.0"; src = fetchurl { - url = "https://github.com/cisco/openh264/archive/v1.4.0.tar.gz"; - sha256 = "08haj0xkyjlwbpqdinxk0cmvqw89bx89ly0kqs9lf87fy6ksgfd1"; + url = "https://github.com/cisco/openh264/archive/v1.5.0.tar.gz"; + sha256 = "1d97dh5hzmy46jamfw03flvcz8md1hxp6y5n0b787h8ks7apn1wq"; }; buildInputs = [ nasm ]; From d7338bf9d72d95a59658f811d17716f76e737ffd Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 22:26:44 +0200 Subject: [PATCH 314/337] msmtp: 1.6.2 -> 1.6.4 --- pkgs/applications/networking/msmtp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/msmtp/default.nix b/pkgs/applications/networking/msmtp/default.nix index e78605392be..0754d4f2815 100644 --- a/pkgs/applications/networking/msmtp/default.nix +++ b/pkgs/applications/networking/msmtp/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, openssl, pkgconfig, gnutls, gsasl, libidn, Security }: stdenv.mkDerivation rec { - version = "1.6.2"; + version = "1.6.4"; name = "msmtp-${version}"; src = fetchurl { url = "mirror://sourceforge/msmtp/${name}.tar.xz"; - sha256 = "12c7ljahb06pgn8yvvw526xvr11vnr6d4nr0apylixddpxycsvig"; + sha256 = "1kfihblm769s4hv8iah5mqynqd6hfwlyz5rcg2v423a4llic0jcv"; }; buildInputs = [ openssl pkgconfig gnutls gsasl libidn ] From 18964796e6b954be742dbaf4da0475fc3b430ca6 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 22:25:16 +0200 Subject: [PATCH 315/337] mc: 4.8.12 -> 4.8.16 --- pkgs/tools/misc/mc/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/mc/default.nix b/pkgs/tools/misc/mc/default.nix index 94c08fa9ba9..9347b5f9bbe 100644 --- a/pkgs/tools/misc/mc/default.nix +++ b/pkgs/tools/misc/mc/default.nix @@ -2,11 +2,11 @@ , libX11, libICE, perl, zip, unzip, gettext, slang}: stdenv.mkDerivation rec { - name = "mc-4.8.12"; + name = "mc-4.8.16"; src = fetchurl { - url = http://www.midnight-commander.org/downloads/mc-4.8.12.tar.bz2; - sha256 = "15lkwcis0labshq9k8c2fqdwv8az2c87qpdqwp5p31s8gb1gqm0h"; + url = http://www.midnight-commander.org/downloads/mc-4.8.16.tar.bz2; + sha256 = "1y5apnp6sc9sn13m6816hlrr0dis1z7wsnffldsx7xlkvyas8zn3"; }; buildInputs = [ pkgconfig perl glib gpm slang zip unzip file gettext libX11 libICE e2fsprogs ]; From 1ec3e7197165dfc5ec59e6c202c1f0e3410b6441 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 22:21:49 +0200 Subject: [PATCH 316/337] libdvdread: 5.0.2 -> 5.0.3 --- pkgs/development/libraries/libdvdread/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libdvdread/default.nix b/pkgs/development/libraries/libdvdread/default.nix index 493be4c8f86..ef717fedb22 100644 --- a/pkgs/development/libraries/libdvdread/default.nix +++ b/pkgs/development/libraries/libdvdread/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libdvdread-${version}"; - version = "5.0.2"; + version = "5.0.3"; src = fetchurl { url = "http://get.videolan.org/libdvdread/${version}/${name}.tar.bz2"; - sha256 = "82cbe693f2a3971671e7428790b5498392db32185b8dc8622f7b9cd307d3cfbf"; + sha256 = "0ayqiq0psq18rcp6f5pz82sxsq66v0kwv0y55dbrcg68plnxy71j"; }; buildInputs = [libdvdcss]; From d1998b93d765f1c7584018f43da3fa02d71b3956 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 20:29:40 +0200 Subject: [PATCH 317/337] lftp: 4.6.4 -> 4.7.1 --- pkgs/tools/networking/lftp/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/lftp/default.nix b/pkgs/tools/networking/lftp/default.nix index ea7ec605e2b..bf39c36e02b 100644 --- a/pkgs/tools/networking/lftp/default.nix +++ b/pkgs/tools/networking/lftp/default.nix @@ -1,17 +1,22 @@ -{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib }: +{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib, libidn }: stdenv.mkDerivation rec { - name = "lftp-4.6.4"; + name = "lftp-4.7.1"; src = fetchurl { urls = [ "http://lftp.yar.ru/ftp/${name}.tar.bz2" "http://lftp.yar.ru/ftp/old/${name}.tar.bz2" ]; - sha256 = "0zj0dd6s3nzwdawxjp0xw31ipsa4vzimmg5bzq952q2f29vd0akn"; + sha256 = "0n4l0n6ra6z5lh6v79hc0r0hhrsq0l6c47ir15vmq80sbgc9mmwv"; }; - buildInputs = [ gnutls pkgconfig readline zlib ]; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ gnutls readline zlib libidn ]; + + configureFlags = [ + "--with-readline=${readline}" + ]; meta = with stdenv.lib; { description = "A file transfer program supporting a number of network protocols"; From d5dd5e05f17c02bd45abf9f9ece33d2037e0cf94 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 18:15:21 +0200 Subject: [PATCH 318/337] glxinfo: 8.1.0 -> 8.3.0 --- pkgs/tools/graphics/glxinfo/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/graphics/glxinfo/default.nix b/pkgs/tools/graphics/glxinfo/default.nix index 35bc1e610de..d2c2f30d6fc 100644 --- a/pkgs/tools/graphics/glxinfo/default.nix +++ b/pkgs/tools/graphics/glxinfo/default.nix @@ -1,13 +1,13 @@ {stdenv, fetchurl, xlibsWrapper, mesa}: -let version = "8.1.0"; in +let version = "8.3.0"; in stdenv.mkDerivation { name = "glxinfo-${version}"; src = fetchurl { url = "ftp://ftp.freedesktop.org/pub/mesa/demos/${version}/mesa-demos-${version}.tar.bz2"; - sha256 = "0a58hw5850731p4smz4zqsbvyxvgjf7n5xdbs9l1wamk8q3gl0wp"; + sha256 = "1vqb7s5m3fcg2csbiz45mha1pys2xx6rhw94fcyvapqdpm5iawy1"; }; buildInputs = [xlibsWrapper mesa]; @@ -16,7 +16,7 @@ stdenv.mkDerivation { buildPhase = " cd src/xdemos - gcc glxinfo.c -o glxinfo -lGL -lX11 + gcc glxinfo.c glinfo_common.c -o glxinfo -lGL -lX11 gcc glxgears.c -o glxgears -lGL -lX11 "; From b8aaa3f130a68f6626f818a298acc8322088b85d Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 17:37:46 +0200 Subject: [PATCH 319/337] fping: 3.10 -> 3.13 --- pkgs/tools/networking/fping/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/fping/default.nix b/pkgs/tools/networking/fping/default.nix index ab935dc1111..83899c2380c 100644 --- a/pkgs/tools/networking/fping/default.nix +++ b/pkgs/tools/networking/fping/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "fping-3.10"; + name = "fping-3.13"; src = fetchurl { url = "http://www.fping.org/dist/${name}.tar.gz"; - sha256 = "1n2psfxgww6wg5rz8rly06xkghgp8lshx2lx6rramrigyd1fhiyd"; + sha256 = "082pis2c2ad6kkj35zmsf6xb2lm8v8hdrnjiwl529ldk3kyqxcjb"; }; meta = { From 9da6390bae7bfe6d0c23622747675fc495d47545 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 17:13:16 +0200 Subject: [PATCH 320/337] ethtool: 4.0 -> 4.5 --- pkgs/tools/misc/ethtool/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/ethtool/default.nix b/pkgs/tools/misc/ethtool/default.nix index 16af347e551..9ffc4723dfd 100644 --- a/pkgs/tools/misc/ethtool/default.nix +++ b/pkgs/tools/misc/ethtool/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "ethtool-4.0"; + name = "ethtool-4.5"; src = fetchurl { url = "mirror://kernel/software/network/ethtool/${name}.tar.xz"; - sha256 = "1zzcwn6pk8qfasalqkxg8vrhacksfa50xsq4xifw7yfjqyn8fj4h"; + sha256 = "0fyakzpcrjb7hkaj9ccpcgza7r2im17qzxy9w6xzbiss5hrk8a5v"; }; meta = with stdenv.lib; { From b5fdb8585be7755b64c4885ac1660e7bfc7163e3 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 17:05:29 +0200 Subject: [PATCH 321/337] di: 4.36 -> 4.37 --- pkgs/tools/system/di/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/di/default.nix b/pkgs/tools/system/di/default.nix index 9dec905379b..9af1f8192c3 100644 --- a/pkgs/tools/system/di/default.nix +++ b/pkgs/tools/system/di/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "di-4.36"; + name = "di-4.37"; src = fetchurl { url = "http://gentoo.com/di/${name}.tar.gz"; - sha256 = "11kd9jawpkir6qwjciis9l5fdvgbp9yndcv4rg6k3x9x1and40zb"; + sha256 = "1ljamhbpfps5b3n6gsk11znjv2f0cqfy7imda2qmzrlb8dipjs0h"; }; makeFlags = "INSTALL_DIR=$(out)"; From 4825d4033e3f1b5ca1bfb25aa4d2debac25d8f50 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 16:12:44 +0200 Subject: [PATCH 322/337] ddrescue: 1.20 -> 1.21 --- pkgs/tools/system/ddrescue/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/system/ddrescue/default.nix b/pkgs/tools/system/ddrescue/default.nix index c33359eee88..0e8e77cf5fa 100644 --- a/pkgs/tools/system/ddrescue/default.nix +++ b/pkgs/tools/system/ddrescue/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, lzip }: stdenv.mkDerivation rec { - name = "ddrescue-1.20"; + name = "ddrescue-1.21"; src = fetchurl { url = "mirror://gnu/ddrescue/${name}.tar.lz"; - sha256 = "1gb0ak2c47nass7qdf9pnfrshcb38c318z1fx5v5v1k7l6qr7yc3"; + sha256 = "1b71hb42lh33y9843nd1mxlwkk9qh9ajvnz6ivzd1jq9lav4x7ph"; }; buildInputs = [ lzip ]; @@ -43,6 +43,6 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; platforms = platforms.all; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ iElectric fpletz ]; }; } From 5ca86940954588d0164c1e7339a281c58551bdc8 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 15:22:08 +0200 Subject: [PATCH 323/337] debootstrap: 1.0.68 -> 1.0.80 --- pkgs/tools/misc/debootstrap/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/debootstrap/default.nix b/pkgs/tools/misc/debootstrap/default.nix index 9b6c35f41a4..4af6475668e 100644 --- a/pkgs/tools/misc/debootstrap/default.nix +++ b/pkgs/tools/misc/debootstrap/default.nix @@ -30,15 +30,16 @@ let in -stdenv.mkDerivation { +stdenv.mkDerivation rec { - name = "debootstrap-1.0.67"; + name = "debootstrap-${version}"; + version = "1.0.80"; src = fetchurl { # git clone git://git.debian.org/d-i/debootstrap.git # I'd like to use the source. However it's lacking the lanny script ? (still true?) - url = mirror://debian/pool/main/d/debootstrap/debootstrap_1.0.67.tar.gz; - sha256 = "06x5zw6fskw37qh62hvqx006319l4wgnnw8sf53ms67zpfif04ha"; + url = "mirror://debian/pool/main/d/debootstrap/debootstrap_${version}.tar.gz"; + sha256 = "06gigscd2327wsvc7n7w2m8xmaixvp4kyqhayn00qrgd9i9w34x6"; }; buildInputs = [ dpkg gettext gawk perl ]; From bdafc6df04d650518525e8e4bb27d442a60a339a Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Tue, 3 May 2016 10:42:29 -0400 Subject: [PATCH 324/337] openssl: 1.0.1s -> 1.0.1t, 1.0.2g -> 1.0.2h CVE-2016-2108, high severity: Memory corruption in the ASN.1 encoder CVE-2016-2107, high severity: Padding oracle in AES-NI CBC MAC check CVE-2016-2105, low severity: EVP_EncodeUpdate overflow CVE-2016-2106, low severity: EVP_EncryptUpdate overflow CVE-2016-2109, low severity: ASN.1 BIO excessive memory allocation CVE-2016-2176, low severity: EBCDIC overread --- pkgs/development/libraries/openssl/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index 1e0f419c5f7..fa84b89bd38 100644 --- a/pkgs/development/libraries/openssl/default.nix +++ b/pkgs/development/libraries/openssl/default.nix @@ -105,13 +105,13 @@ let in { openssl_1_0_1 = common { - version = "1.0.1s"; - sha256 = "e7e81d82f3cd538ab0cdba494006d44aab9dd96b7f6233ce9971fb7c7916d511"; + version = "1.0.1t"; + sha256 = "4a6ee491a2fdb22e519c76fdc2a628bb3cec12762cd456861d207996c8a07088"; }; openssl_1_0_2 = common { - version = "1.0.2g"; - sha256 = "b784b1b3907ce39abf4098702dade6365522a253ad1552e267a9a0e89594aa33"; + version = "1.0.2h"; + sha256 = "1d4007e53aad94a5b2002fe045ee7bb0b3d98f1a47f8b2bc851dcd1c74332919"; }; } From 6d55b2e9c0a8bd72cb4375c55a5789682cb96b1c Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 3 May 2016 17:18:04 +0200 Subject: [PATCH 325/337] libressl: 2.2.6 -> 2.2.7, 2.3.3 -> 2.3.4 Fix multiple vulnerabilities in libcrypto relating to ASN.1 and encoding. http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.2.7-relnotes.txt http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.3.4-relnotes.txt --- pkgs/development/libraries/libressl/2.2.nix | 4 ++-- pkgs/development/libraries/libressl/2.3.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/libressl/2.2.nix b/pkgs/development/libraries/libressl/2.2.nix index 09505217ae2..280c2e6bc94 100644 --- a/pkgs/development/libraries/libressl/2.2.nix +++ b/pkgs/development/libraries/libressl/2.2.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libressl-${version}"; - version = "2.2.6"; + version = "2.2.7"; src = fetchurl { url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; - sha256 = "0kynb15l5gq1qgp3p4ncn20sc65sbl8lk89vyr07s17xrya9kq8y"; + sha256 = "1kckv36dgvvjq1ap6ahxgma4hw57zp61xsp5vjvyza5vhfrnhb3y"; }; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/libressl/2.3.nix b/pkgs/development/libraries/libressl/2.3.nix index 129456e6657..a5052a9b499 100644 --- a/pkgs/development/libraries/libressl/2.3.nix +++ b/pkgs/development/libraries/libressl/2.3.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libressl-${version}"; - version = "2.3.3"; + version = "2.3.4"; src = fetchurl { url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; - sha256 = "1a8anm8nsfyxds03csk738m2cmzjbsb867my1rz5ij3w31k32wvn"; + sha256 = "1ag65pbvdikqj5y1w780jicl3ngi9ld2332ki6794y0gcar3a4bs"; }; enableParallelBuilding = true; From bf8130684878747be7b1cc393f8aa147c500f14f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 18:25:57 +0200 Subject: [PATCH 326/337] gandi-cli: pull out of python-packages.nix --- pkgs/tools/networking/gandi-cli/default.nix | 28 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/python-packages.nix | 19 -------------- 3 files changed, 30 insertions(+), 19 deletions(-) create mode 100644 pkgs/tools/networking/gandi-cli/default.nix diff --git a/pkgs/tools/networking/gandi-cli/default.nix b/pkgs/tools/networking/gandi-cli/default.nix new file mode 100644 index 00000000000..2f95123ba21 --- /dev/null +++ b/pkgs/tools/networking/gandi-cli/default.nix @@ -0,0 +1,28 @@ +{ stdenv, pythonPackages, fetchFromGitHub }: + +with pythonPackages; + +buildPythonPackage rec { + namePrefix = ""; + name = "gandi-cli-${version}"; + version = "0.18"; + + src = fetchFromGitHub { + sha256 = "045gnz345nfbi1g7j3gcyzrxrx3hcidaxzr05cb49rcr8nmqh1s3"; + rev = version; + repo = "gandi.cli"; + owner = "Gandi"; + }; + + propagatedBuildInputs = [ click ipy pyyaml requests ]; + + doCheck = false; # Tests try to contact the actual remote API + + meta = with stdenv.lib; { + description = "Command-line interface to the public Gandi.net API"; + homepage = http://cli.gandi.net/; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ nckx ]; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ec2523b975a..446501c094b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1594,6 +1594,8 @@ in galen = callPackage ../development/tools/galen {}; + gandi-cli = callPackage ../tools/networking/gandi-cli { }; + garmin-plugin = callPackage ../applications/misc/garmin-plugin {}; garmintools = callPackage ../development/libraries/garmintools {}; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e664ab56703..8edba3627e4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5785,25 +5785,6 @@ in modules // { }; }; - gandi-cli = buildPythonPackage rec { - name = "gandi-cli-${version}"; - version = "0.18"; - src = pkgs.fetchFromGitHub { - sha256 = "045gnz345nfbi1g7j3gcyzrxrx3hcidaxzr05cb49rcr8nmqh1s3"; - rev = version; - repo = "gandi.cli"; - owner = "Gandi"; - }; - propagatedBuildInputs = with self; [ click ipy pyyaml requests ]; - doCheck = false; # Tests try to contact the actual remote API - meta = { - homepage = http://cli.gandi.net/; - description = "Command-line interface to the public Gandi.net API"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ nckx ]; - }; - }; - gateone = buildPythonPackage rec { name = "gateone-1.2-0d57c3"; disabled = ! isPy27; From 3fe746cfc2f26c9161c659305810f14f32f4b8e5 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 3 May 2016 19:39:53 +0200 Subject: [PATCH 327/337] tinc_pre: 1.1pre-git2016.01.28 -> 1.1pre-14 (#15192) split the documentation output remove the tinc-gui binary because python dependencies are not fulfilled --- pkgs/tools/networking/tinc/pre.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/tinc/pre.nix b/pkgs/tools/networking/tinc/pre.nix index 5473a637b6a..61e4ee281ed 100644 --- a/pkgs/tools/networking/tinc/pre.nix +++ b/pkgs/tools/networking/tinc/pre.nix @@ -2,15 +2,16 @@ stdenv.mkDerivation rec { name = "tinc-${version}"; - rev = "d8ca00fe40ff4b6d87e7e64c273f536fab462356"; - version = "1.1pre-2016-01-28-${builtins.substring 0 7 rev}"; + version = "1.1pre14"; src = fetchgit { - inherit rev; + rev = "refs/tags/release-${version}"; url = "git://tinc-vpn.org/tinc"; - sha256 = "0wqgzbqlafbkmj71vhfrqwmp61g95amzd43py47kq3fn5aiybcqf"; + sha256 = "0idc4ddhz380xw26c8wwdyr0p6pibada55f0hzhnc2cz9za9x4iv"; }; + outputs = [ "out" "doc" ]; + nativeBuildInputs = [ autoreconfHook texinfo ]; buildInputs = [ ncurses readline zlib lzo openssl ]; @@ -18,6 +19,10 @@ stdenv.mkDerivation rec { substituteInPlace configure.ac --replace UNKNOWN ${version} ''; + postInstall = '' + rm $out/bin/tinc-gui + ''; + configureFlags = [ "--sysconfdir=/etc" "--localstatedir=/var" From b95eebec653c749cbc2c2b3932d5b075d566e9b5 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 3 May 2016 20:03:14 +0200 Subject: [PATCH 328/337] connman: 1.31 -> 1.32 fetch release tarball instead of git checkout and drop autotools This update is compatible with iptables 1.6.0 (see #12178) --- pkgs/tools/networking/connman/default.nix | 26 +++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/pkgs/tools/networking/connman/default.nix b/pkgs/tools/networking/connman/default.nix index 7af692f782e..f8abdb33d9d 100644 --- a/pkgs/tools/networking/connman/default.nix +++ b/pkgs/tools/networking/connman/default.nix @@ -1,26 +1,25 @@ -{ stdenv, fetchgit, autoconf, automake, libtool, pkgconfig, openconnect, file, +{ stdenv, fetchurl, pkgconfig, openconnect, file, openvpn, vpnc, glib, dbus, iptables, gnutls, polkit, - wpa_supplicant, readline6, pptp, ppp, tree }: + wpa_supplicant, readline6, pptp, ppp }: stdenv.mkDerivation rec { name = "connman-${version}"; - version = "1.31"; - src = fetchgit { - url = "git://git.kernel.org/pub/scm/network/connman/connman.git"; - rev = "refs/tags/${version}"; - sha256 = "90dab6b11841cb4b6400711d234b59fb4fad4e8778bed6e7ad3ac7ac135d6893"; + version = "1.32"; + src = fetchurl { + url = "mirror://kernel/linux/network/connman/${name}.tar.xz"; + sha256 = "0k4kw2j78gwxf0rq79a099qkzl6wi4v5i7rfs4rn0si0fd68d19i"; }; - buildInputs = [ autoconf automake libtool pkgconfig openconnect polkit - file openvpn vpnc glib dbus iptables gnutls - wpa_supplicant readline6 pptp ppp tree ]; + buildInputs = [ openconnect polkit + openvpn vpnc glib dbus iptables gnutls + wpa_supplicant readline6 pptp ppp ]; + + nativeBuildInputs = [ pkgconfig file ]; preConfigure = '' export WPASUPPLICANT=${wpa_supplicant}/sbin/wpa_supplicant - ./bootstrap + export PPPD=${ppp}/sbin/pppd sed -i "s/\/usr\/bin\/file/file/g" ./configure - substituteInPlace configure --replace /usr/sbin/pptp ${pptp}/sbin/pptp - substituteInPlace configure --replace /usr/sbin/pppd ${ppp}/sbin/pppd ''; configureFlags = [ @@ -43,6 +42,7 @@ stdenv.mkDerivation rec { "--enable-tools" "--enable-datafiles" "--enable-pptp" + "--with-pptp=${pptp}/sbin/pptp" ]; postInstall = '' From d74335da85c33ef9d0539a94cd9e0f209cb7ff98 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 3 May 2016 20:05:57 +0200 Subject: [PATCH 329/337] connman: make dependency on awk explicit --- pkgs/tools/networking/connman/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/connman/default.nix b/pkgs/tools/networking/connman/default.nix index f8abdb33d9d..c9380761f9f 100644 --- a/pkgs/tools/networking/connman/default.nix +++ b/pkgs/tools/networking/connman/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, openconnect, file, +{ stdenv, fetchurl, pkgconfig, openconnect, file, gawk, openvpn, vpnc, glib, dbus, iptables, gnutls, polkit, wpa_supplicant, readline6, pptp, ppp }: @@ -14,11 +14,12 @@ stdenv.mkDerivation rec { openvpn vpnc glib dbus iptables gnutls wpa_supplicant readline6 pptp ppp ]; - nativeBuildInputs = [ pkgconfig file ]; + nativeBuildInputs = [ pkgconfig file gawk ]; preConfigure = '' export WPASUPPLICANT=${wpa_supplicant}/sbin/wpa_supplicant export PPPD=${ppp}/sbin/pppd + export AWK=${gawk}/bin/gawk sed -i "s/\/usr\/bin\/file/file/g" ./configure ''; From f72a2faa28580c6a19b5cc3a111f4a198f1a80fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 3 May 2016 15:14:50 -0300 Subject: [PATCH 330/337] gtk-xfce-engine: 2.10.1 -> 3.2.0 --- pkgs/desktops/xfce/core/gtk-xfce-engine.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/xfce/core/gtk-xfce-engine.nix b/pkgs/desktops/xfce/core/gtk-xfce-engine.nix index b66faf2390b..25ba1e252d4 100644 --- a/pkgs/desktops/xfce/core/gtk-xfce-engine.nix +++ b/pkgs/desktops/xfce/core/gtk-xfce-engine.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { p_name = "gtk-xfce-engine"; - ver_maj = "2.10"; - ver_min = "1"; + ver_maj = "3.2"; + ver_min = "0"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; - sha256 = "4a92910205881f707f2cc8d3c9b00a95feb58eb9084d932c841f3ed027f7063d"; + sha256 = "1va71f3gpl8gikfkmqsd5ikgp7qj8b64jii2l98g1ylnv8xrqp47"; }; name = "${p_name}-${ver_maj}.${ver_min}"; From f0da9ff4128c1c4d3fbee2c4691adcac4bc24e6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 3 May 2016 15:18:23 -0300 Subject: [PATCH 331/337] gtk-xfce-engine: add support to Gtk3 --- pkgs/desktops/xfce/core/gtk-xfce-engine.nix | 6 ++++-- pkgs/desktops/xfce/default.nix | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/xfce/core/gtk-xfce-engine.nix b/pkgs/desktops/xfce/core/gtk-xfce-engine.nix index 25ba1e252d4..6e5ac7c55ea 100644 --- a/pkgs/desktops/xfce/core/gtk-xfce-engine.nix +++ b/pkgs/desktops/xfce/core/gtk-xfce-engine.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, intltool, gtk }: +{ stdenv, fetchurl, pkgconfig, intltool, gtk, withGtk3 ? false, gtk3 }: stdenv.mkDerivation rec { p_name = "gtk-xfce-engine"; @@ -11,7 +11,9 @@ stdenv.mkDerivation rec { }; name = "${p_name}-${ver_maj}.${ver_min}"; - buildInputs = [ pkgconfig intltool gtk ]; + buildInputs = [ pkgconfig intltool gtk ] ++ stdenv.lib.optional withGtk3 gtk3; + + configureFlags = stdenv.lib.optional withGtk3 "--enable-gtk3"; meta = { homepage = http://www.xfce.org/; diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix index 96e6c55162a..3ea3721362b 100644 --- a/pkgs/desktops/xfce/default.nix +++ b/pkgs/desktops/xfce/default.nix @@ -21,7 +21,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od exo = callPackage ./core/exo.nix { }; garcon = callPackage ./core/garcon.nix { }; - gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix { }; # ToDo: when should be used? + gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix { withGtk3 = true; }; # ToDo: when should be used? libxfce4ui = callPackage ./core/libxfce4ui.nix { }; libxfce4ui_gtk3 = libxfce4ui.override { withGtk3 = true; }; libxfce4util = callPackage ./core/libxfce4util.nix { }; From 980bca286e4bc509fb4321b75481d9e683e5a1b4 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 3 May 2016 21:29:16 +0300 Subject: [PATCH 332/337] gcc 4.5, 4.6: Remove broken update-gcc.sh symlinks --- pkgs/development/compilers/gcc/4.5/update-gcc.sh | 1 - pkgs/development/compilers/gcc/4.6/update-gcc.sh | 1 - 2 files changed, 2 deletions(-) delete mode 120000 pkgs/development/compilers/gcc/4.5/update-gcc.sh delete mode 120000 pkgs/development/compilers/gcc/4.6/update-gcc.sh diff --git a/pkgs/development/compilers/gcc/4.5/update-gcc.sh b/pkgs/development/compilers/gcc/4.5/update-gcc.sh deleted file mode 120000 index 907772b2af8..00000000000 --- a/pkgs/development/compilers/gcc/4.5/update-gcc.sh +++ /dev/null @@ -1 +0,0 @@ -../4.4/update-gcc.sh \ No newline at end of file diff --git a/pkgs/development/compilers/gcc/4.6/update-gcc.sh b/pkgs/development/compilers/gcc/4.6/update-gcc.sh deleted file mode 120000 index 907772b2af8..00000000000 --- a/pkgs/development/compilers/gcc/4.6/update-gcc.sh +++ /dev/null @@ -1 +0,0 @@ -../4.4/update-gcc.sh \ No newline at end of file From 147d942b545c7d6c020534fd2987d5e33dc00b6f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 3 May 2016 13:34:50 -0500 Subject: [PATCH 333/337] julia: remove ttuegel from maintainers ttuegel has not used julia in some time --- pkgs/development/compilers/julia/git.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/julia/git.nix b/pkgs/development/compilers/julia/git.nix index b6d917865d8..00c4730cf85 100644 --- a/pkgs/development/compilers/julia/git.nix +++ b/pkgs/development/compilers/julia/git.nix @@ -164,7 +164,7 @@ stdenv.mkDerivation rec { description = "High-level performance-oriented dynamical language for technical computing"; homepage = "http://julialang.org/"; license = stdenv.lib.licenses.mit; - maintainers = with stdenv.lib.maintainers; [ raskin ttuegel ]; + maintainers = with stdenv.lib.maintainers; [ raskin ]; platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; }; } From ff6a98612cc3f1fe33b01be42efa3d5f4515b149 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 19:13:42 +0200 Subject: [PATCH 334/337] seccure: 0.4 -> 0.5 --- pkgs/tools/security/seccure/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/security/seccure/default.nix b/pkgs/tools/security/seccure/default.nix index 33a77c07844..46d2113b1da 100644 --- a/pkgs/tools/security/seccure/default.nix +++ b/pkgs/tools/security/seccure/default.nix @@ -1,14 +1,15 @@ -{stdenv, fetchurl, libgcrypt}: +{ stdenv, fetchurl, libgcrypt }: stdenv.mkDerivation rec { - name = "seccure-0.4"; + name = "seccure-${version}"; + version = "0.5"; src = fetchurl { url = "http://point-at-infinity.org/seccure/${name}.tar.gz"; - sha256 = "33d690a7034ee349bce4911a8b7c73e6e3cd13a140f429e9e628d5cd5a3bb955"; + sha256 = "0nwnk3hfhgvf5xr0xipbh6smfnya22wphc5rj0vgi5d0zr5cwrk5"; }; - buildInputs = [libgcrypt]; + buildInputs = [ libgcrypt ]; preConfigure = '' sed -e s@/usr/@$out/@g -i Makefile From d4d6d9d3d2f85892dfa3fabab2dfe5f250b054b7 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 19:17:14 +0200 Subject: [PATCH 335/337] ortp: 0.24.2 -> 0.25.0 --- pkgs/development/libraries/ortp/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/ortp/default.nix b/pkgs/development/libraries/ortp/default.nix index 746f10eebed..15bd39a031f 100644 --- a/pkgs/development/libraries/ortp/default.nix +++ b/pkgs/development/libraries/ortp/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "ortp-0.24.2"; + name = "ortp-${version}"; + version = "0.25.0"; src = fetchurl { url = "mirror://savannah/linphone/ortp/sources/${name}.tar.gz"; - sha256 = "05k6ianphr533qnjwxsv7jnh7fb2sq0dj1pdy1bk2w5khmlwfdyb"; + sha256 = "16ldzrn1268dr6kdl8mibg2knd6w75a1v0iqfsgk5zdig5mq5sqd"; }; meta = with stdenv.lib; { From 31253ad95762deba0b7b91d9a704689b033b3350 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 19:23:31 +0200 Subject: [PATCH 336/337] cdrtools: 3.02a03 -> 3.02a06 --- pkgs/applications/misc/cdrtools/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/cdrtools/default.nix b/pkgs/applications/misc/cdrtools/default.nix index 55bcfd99e17..be6989b7e33 100644 --- a/pkgs/applications/misc/cdrtools/default.nix +++ b/pkgs/applications/misc/cdrtools/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, acl, libcap }: stdenv.mkDerivation rec { - name = "cdrtools-3.02a03"; + name = "cdrtools-${version}"; + version = "3.02a06"; src = fetchurl { url = "mirror://sourceforge/cdrtools/${name}.tar.bz2"; - sha256 = "02gjxib0sgzsdicnb7496x0a175w1sb34v8zc9mdi8cfw7skw996"; + sha256 = "1cayhfbhj5g2vgmkmq5scr23k0ka5fsn0dhn0n9yllj386csnygd"; }; patches = [ ./fix-paths.patch ]; From e7d3166656af0d98da9f59c78e2213cec842d743 Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 3 May 2016 22:05:11 +0200 Subject: [PATCH 337/337] nixos/tests/netboot: Fix evaluation error Regression introduced by dfe608c8a2ecfdf0ab2838a967440207250a0b95. The commit turns the two arguments into one attrset argument so we need to adapt that to use the new calling convention. Signed-off-by: aszlig --- nixos/tests/boot.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/nixos/tests/boot.nix b/nixos/tests/boot.nix index a138ba4bcf0..af7db5aa816 100644 --- a/nixos/tests/boot.nix +++ b/nixos/tests/boot.nix @@ -64,11 +64,14 @@ in { ''; destination = "/boot.ipxe"; }; - ipxeBootDir = pkgs.symlinkJoin "ipxeBootDir" [ - config.system.build.netbootRamdisk - config.system.build.kernel - ipxeScriptDir - ]; + ipxeBootDir = pkgs.symlinkJoin { + name = "ipxeBootDir"; + paths = [ + config.system.build.netbootRamdisk + config.system.build.kernel + ipxeScriptDir + ]; + }; in makeTest { name = "boot-netboot"; @@ -81,4 +84,4 @@ in { $machine->shutdown; ''; }; -} \ No newline at end of file +}