From 77c413926230eb4fda6be41f666f5603129bbf73 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Mon, 4 Apr 2016 18:06:48 +0900 Subject: gtk3: make gtk3 look for immodule cache in $NIX_PROFILE --- .../libraries/gtk+/3.0-immodules.cache.patch | 27 ++++++++++++++++++++++ pkgs/development/libraries/gtk+/3.x.nix | 9 ++------ 2 files changed, 29 insertions(+), 7 deletions(-) create mode 100644 pkgs/development/libraries/gtk+/3.0-immodules.cache.patch (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/gtk+/3.0-immodules.cache.patch b/pkgs/development/libraries/gtk+/3.0-immodules.cache.patch new file mode 100644 index 0000000000000..bbe5f28dbd3ed --- /dev/null +++ b/pkgs/development/libraries/gtk+/3.0-immodules.cache.patch @@ -0,0 +1,27 @@ +--- a/gtk/deprecated/gtkrc.c 2016-04-02 18:43:08.401663112 +0900 ++++ b/gtk/deprecated/gtkrc.c 2016-04-02 18:29:19.927608592 +0900 +@@ -774,5 +774,23 @@ + if (var) + result = g_strdup (var); + ++ // check NIX_PROFILES paths. ++ const gchar *nixProfilesEnv = g_getenv ("NIX_PROFILES"); ++ gchar *cachePath; ++ guint i; ++ ++ if(nixProfilesEnv && !result){ ++ gchar **paths = g_strsplit(nixProfilesEnv, " ", -1); ++ for (i = 0; paths[i] != NULL; i++){ ++ cachePath = g_build_filename(paths[i], "etc", "gtk-3.0", "immodules.cache", NULL); ++ if( g_file_test( cachePath, G_FILE_TEST_EXISTS) ){ ++ if(result) g_free(result); ++ result = g_strdup(cachePath); ++ } ++ g_free(cachePath); ++ } ++ g_strfreev(paths); ++ } ++ + if (!result) + { + diff --git a/pkgs/development/libraries/gtk+/3.x.nix b/pkgs/development/libraries/gtk+/3.x.nix index a2da4c7b03391..45003e17f9736 100644 --- a/pkgs/development/libraries/gtk+/3.x.nix +++ b/pkgs/development/libraries/gtk+/3.x.nix @@ -28,6 +28,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig gettext gobjectIntrospection perl ]; + patches = [ ./3.0-immodules.cache.patch ]; + buildInputs = [ libxkbcommon epoxy json_glib ]; propagatedBuildInputs = with xorg; with stdenv.lib; [ expat glib cairo pango gdk_pixbuf atk at_spi2_atk @@ -58,13 +60,6 @@ stdenv.mkDerivation rec { --replace '-L${gmp.dev}/lib' '-L${gmp.out}/lib' ''; - passthru = { - gtkExeEnvPostBuild = '' - rm $out/lib/gtk-3.0/3.0.0/immodules.cache - $out/bin/gtk-query-immodules-3.0 $out/lib/gtk-3.0/3.0.0/immodules/*.so > $out/lib/gtk-3.0/3.0.0/immodules.cache - ''; # workaround for bug of nix-mode for Emacs */ ''; - }; - meta = with stdenv.lib; { description = "A multi-platform toolkit for creating graphical user interfaces"; -- cgit 1.4.1 From 3e2318ec3ecff70e1583ad5717f26f91ecdda952 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Sat, 9 Apr 2016 17:43:55 +0900 Subject: gtk2: make gtk2 look for immodule cache in $NIX_PROFILE --- .../libraries/gtk+/2.0-immodules.cache.patch | 27 ++++++++++++++++++++++ pkgs/development/libraries/gtk+/2.x.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/development/libraries/gtk+/2.0-immodules.cache.patch (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/gtk+/2.0-immodules.cache.patch b/pkgs/development/libraries/gtk+/2.0-immodules.cache.patch new file mode 100644 index 0000000000000..1b8231756e71f --- /dev/null +++ b/pkgs/development/libraries/gtk+/2.0-immodules.cache.patch @@ -0,0 +1,27 @@ +--- a/gtk/gtkrc.c 2014-09-30 05:02:17.000000000 +0900 ++++ b/gtk/gtkrc.c 2016-04-09 17:39:51.363288355 +0900 +@@ -445,5 +445,23 @@ + if (var) + result = g_strdup (var); + ++ // check NIX_PROFILES paths. ++ const gchar *nixProfilesEnv = g_getenv ("NIX_PROFILES"); ++ gchar *cachePath; ++ guint i; ++ ++ if(nixProfilesEnv && !result){ ++ gchar **paths = g_strsplit(nixProfilesEnv, " ", -1); ++ for (i = 0; paths[i] != NULL; i++){ ++ cachePath = g_build_filename(paths[i], "etc", "gtk-2.0", "immodules.cache", NULL); ++ if( g_file_test( cachePath, G_FILE_TEST_EXISTS) ){ ++ if(result) g_free(result); ++ result = g_strdup(cachePath); ++ } ++ g_free(cachePath); ++ } ++ g_strfreev(paths); ++ } ++ + if (!result) + { + diff --git a/pkgs/development/libraries/gtk+/2.x.nix b/pkgs/development/libraries/gtk+/2.x.nix index d4d4cddb40239..f3ebc189cd7ae 100644 --- a/pkgs/development/libraries/gtk+/2.x.nix +++ b/pkgs/development/libraries/gtk+/2.x.nix @@ -26,6 +26,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ setupHook perl pkgconfig gettext ]; + patches = [ ./2.0-immodules.cache.patch ]; + propagatedBuildInputs = with xorg; with stdenv.lib; [ glib cairo pango gdk_pixbuf atk ] ++ optionals (stdenv.isLinux || stdenv.isDarwin) [ -- cgit 1.4.1 From a047ba25f4ab932980460db588f7ef14602bc4a2 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 9 Feb 2016 15:23:16 +0100 Subject: libiconv: fix on mingw --- pkgs/development/libraries/libiconv/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libiconv/default.nix b/pkgs/development/libraries/libiconv/default.nix index f5818c3bf4c90..9b62436ae080c 100644 --- a/pkgs/development/libraries/libiconv/default.nix +++ b/pkgs/development/libraries/libiconv/default.nix @@ -1,6 +1,6 @@ { fetchurl, stdenv, lib }: -assert (!stdenv.isLinux); +assert !stdenv.isLinux || stdenv ? cross; # TODO: improve on cross stdenv.mkDerivation rec { name = "libiconv-1.14"; @@ -15,6 +15,12 @@ stdenv.mkDerivation rec { ./libiconv-1.14-wchar.patch ]; + postPatch = + lib.optionalString (stdenv.cross.libc or null == "msvcrt") + '' + sed '/^_GL_WARN_ON_USE (gets/d' -i srclib/stdio.in.h + ''; + configureFlags = # On Cygwin, Libtool produces a `.dll.a', which is not a "real" DLL # (Windows' linker would need to be used somehow to produce an actual -- cgit 1.4.1 From 8b585cc9f555ac88970d8814641ad1488e8d9e9b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 21 Apr 2016 14:33:04 -0500 Subject: phonon: 4.8.3 -> 4.9.0 - Removed phonon-backend-vlc. - Moved qt5.phonon to kde5.phonon. --- .../modules/services/x11/desktop-managers/kde5.nix | 36 +---------------- .../phonon-backend-gstreamer/qt4/default.nix | 33 ---------------- .../phonon-backend-gstreamer/qt5/default.nix | 39 ------------------- .../libraries/phonon-backend-vlc/qt4/default.nix | 32 --------------- .../libraries/phonon-backend-vlc/qt5/default.nix | 31 --------------- .../libraries/phonon/backends/gstreamer.nix | 45 ++++++++++++++++++++++ pkgs/development/libraries/phonon/default.nix | 27 ++++++------- pkgs/top-level/all-packages.nix | 17 +++----- 8 files changed, 65 insertions(+), 195 deletions(-) delete mode 100644 pkgs/development/libraries/phonon-backend-gstreamer/qt4/default.nix delete mode 100644 pkgs/development/libraries/phonon-backend-gstreamer/qt5/default.nix delete mode 100644 pkgs/development/libraries/phonon-backend-vlc/qt4/default.nix delete mode 100644 pkgs/development/libraries/phonon-backend-vlc/qt5/default.nix create mode 100644 pkgs/development/libraries/phonon/backends/gstreamer.nix (limited to 'pkgs/development') diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 70dc1ac2a26af..f5d9d8b8e0db2 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -22,26 +22,6 @@ in description = "Enable the Plasma 5 (KDE 5) desktop environment."; }; - phonon = { - - gstreamer = { - enable = mkOption { - type = types.bool; - default = true; - description = "Enable the GStreamer Phonon backend (recommended)."; - }; - }; - - vlc = { - enable = mkOption { - type = types.bool; - default = false; - description = "Enable the VLC Phonon backend."; - }; - }; - - }; - }; }; @@ -141,26 +121,14 @@ in ++ lib.optionals cfg.phonon.gstreamer.enable [ - pkgs.phonon_backend_gstreamer - pkgs.gst_all.gstreamer - pkgs.gst_all.gstPluginsBase - pkgs.gst_all.gstPluginsGood - pkgs.gst_all.gstPluginsUgly - pkgs.gst_all.gstPluginsBad - pkgs.gst_all.gstFfmpeg # for mp3 playback - pkgs.qt55.phonon-backend-gstreamer + pkgs.phonon-backend-gstreamer + pkgs.kde5.phonon-backend-gstreamer pkgs.gst_all_1.gstreamer pkgs.gst_all_1.gst-plugins-base pkgs.gst_all_1.gst-plugins-good pkgs.gst_all_1.gst-plugins-ugly pkgs.gst_all_1.gst-plugins-bad pkgs.gst_all_1.gst-libav # for mp3 playback - ] - - ++ lib.optionals cfg.phonon.vlc.enable - [ - pkgs.phonon_qt5_backend_vlc - pkgs.qt55.phonon-backend-vlc ]; environment.pathsToLink = [ "/share" ]; diff --git a/pkgs/development/libraries/phonon-backend-gstreamer/qt4/default.nix b/pkgs/development/libraries/phonon-backend-gstreamer/qt4/default.nix deleted file mode 100644 index 2f588cbe7087b..0000000000000 --- a/pkgs/development/libraries/phonon-backend-gstreamer/qt4/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ stdenv, fetchurl, cmake, automoc4, qt4, pkgconfig, phonon, gst_all_1 }: - -let - version = "4.8.2"; - pname = "phonon-backend-gstreamer"; -in - -stdenv.mkDerivation rec { - name = "${pname}-${version}"; - - src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${version}/src/${name}.tar.xz"; - sha256 = "1q1ix6zsfnh6gfnpmwp67s376m7g7ahpjl1qp2fqakzb5cgzgq10"; - }; - - buildInputs = with gst_all_1; [ phonon qt4 gstreamer gst-plugins-base ]; - - nativeBuildInputs = [ cmake automoc4 pkgconfig ]; - - NIX_CFLAGS_COMPILE = [ - # This flag should be picked up through pkgconfig, but it isn't. - "-I${gst_all_1.gstreamer}/lib/gstreamer-1.0/include" - ]; - - cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ]; - - meta = { - homepage = http://phonon.kde.org/; - description = "GStreamer backend for Phonon"; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/phonon-backend-gstreamer/qt5/default.nix b/pkgs/development/libraries/phonon-backend-gstreamer/qt5/default.nix deleted file mode 100644 index 98aa7d81b368c..0000000000000 --- a/pkgs/development/libraries/phonon-backend-gstreamer/qt5/default.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ stdenv, fetchurl, cmake, gst_all_1, phonon, pkgconfig, qtbase, debug ? false }: - -with stdenv.lib; - -let - version = "4.8.2"; - pname = "phonon-backend-gstreamer"; -in - -stdenv.mkDerivation rec { - name = "${pname}-${version}"; - - src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${version}/src/${name}.tar.xz"; - sha256 = "1q1ix6zsfnh6gfnpmwp67s376m7g7ahpjl1qp2fqakzb5cgzgq10"; - }; - - buildInputs = with gst_all_1; [ gstreamer gst-plugins-base phonon qtbase ]; - - NIX_CFLAGS_COMPILE = [ - # This flag should be picked up through pkgconfig, but it isn't. - "-I${gst_all_1.gstreamer}/lib/gstreamer-1.0/include" - ]; - - nativeBuildInputs = [ cmake pkgconfig ]; - - cmakeFlags = [ - "-DCMAKE_INSTALL_LIBDIR=lib" - "-DPHONON_BUILD_PHONON4QT5=ON" - ] - ++ optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = with stdenv.lib; { - homepage = http://phonon.kde.org/; - description = "GStreamer backend for Phonon"; - platforms = platforms.linux; - maintainers = with maintainers; [ ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/phonon-backend-vlc/qt4/default.nix b/pkgs/development/libraries/phonon-backend-vlc/qt4/default.nix deleted file mode 100644 index 70b6174c635c8..0000000000000 --- a/pkgs/development/libraries/phonon-backend-vlc/qt4/default.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ stdenv, fetchurl, xz, vlc, automoc4, cmake, pkgconfig, phonon, qt4}: - -with stdenv.lib; - -let - pname = "phonon-backend-vlc"; - v = "0.8.1"; - # Force same Qt version in phonon and VLC - vlc_ = vlc.override { inherit qt4; }; - phonon_ = phonon.override { inherit qt4; }; -in - -stdenv.mkDerivation { - name = "${pname}-${v}"; - - src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${v}/${pname}-${v}.tar.xz"; - sha256 = "1fyfh7qyb6rld350v2fgz452ld96d3z5ifchr323q0vc3hb9k222"; - }; - - nativeBuildInputs = [ cmake pkgconfig automoc4 xz ]; - - buildInputs = [ vlc_ phonon_ qt4 ]; - - meta = { - homepage = http://phonon.kde.org/; - description = "VideoLAN backend for Phonon multimedia framework"; - platforms = platforms.linux; - maintainers = with maintainers; [ ttuegel urkud ]; - license = licenses.lgpl21Plus; - }; -} diff --git a/pkgs/development/libraries/phonon-backend-vlc/qt5/default.nix b/pkgs/development/libraries/phonon-backend-vlc/qt5/default.nix deleted file mode 100644 index 744d681a6949a..0000000000000 --- a/pkgs/development/libraries/phonon-backend-vlc/qt5/default.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ stdenv, fetchurl, xz, vlc, cmake, pkgconfig, phonon, qtbase }: - -with stdenv.lib; - -let - pname = "phonon-backend-vlc"; - v = "0.8.2"; -in - -stdenv.mkDerivation { - name = "${pname}-${v}"; - - src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${v}/src/${pname}-${v}.tar.xz"; - sha256 = "18ysdga681my75lxxv5h242pa4qappvg5z73wnc0ks9yypnzidys"; - }; - - nativeBuildInputs = [ cmake pkgconfig xz ]; - - buildInputs = [ vlc phonon qtbase ]; - - cmakeFlags = ["-DPHONON_BUILD_PHONON4QT5=ON"]; - - meta = { - homepage = http://phonon.kde.org/; - description = "VideoLAN backend for Phonon multimedia framework"; - platforms = platforms.linux; - maintainers = with maintainers; [ ttuegel urkud ]; - license = licenses.lgpl21Plus; - }; -} diff --git a/pkgs/development/libraries/phonon/backends/gstreamer.nix b/pkgs/development/libraries/phonon/backends/gstreamer.nix new file mode 100644 index 0000000000000..756db94e34377 --- /dev/null +++ b/pkgs/development/libraries/phonon/backends/gstreamer.nix @@ -0,0 +1,45 @@ +{ stdenv, lib, fetchurl, cmake, gst_all_1, phonon, pkgconfig +, extra-cmake-modules ? null, qtbase ? null, qtx11extras ? null, qt4 ? null +, debug ? false }: + +with lib; + +let + v = "4.9.0"; + pname = "phonon-backend-gstreamer"; + withQt5 = extra-cmake-modules != null; +in + +assert withQt5 -> qtbase != null; +assert withQt5 -> qtx11extras != null; + +stdenv.mkDerivation rec { + name = "${pname}-${if withQt5 then "qt5" else "qt4"}-${v}"; + + meta = with stdenv.lib; { + homepage = http://phonon.kde.org/; + description = "GStreamer backend for Phonon"; + platforms = platforms.linux; + maintainers = with maintainers; [ ttuegel ]; + }; + + src = fetchurl { + url = "mirror://kde/stable/phonon/${pname}/${v}/src/${pname}-${v}.tar.xz"; + sha256 = "1wc5p1rqglf0n1avp55s50k7fjdzdrhg0gind15k8796w7nfbhyf"; + }; + + buildInputs = with gst_all_1; + [ gstreamer gst-plugins-base phonon ] + ++ (if withQt5 then [ qtbase qtx11extras ] else [ qt4 ]); + + NIX_CFLAGS_COMPILE = [ + # This flag should be picked up through pkgconfig, but it isn't. + "-I${gst_all_1.gstreamer}/lib/gstreamer-1.0/include" + ]; + + nativeBuildInputs = [ cmake pkgconfig ] ++ optional withQt5 extra-cmake-modules; + + cmakeFlags = + [ "-DCMAKE_BUILD_TYPE=${if debug then "Debug" else "Release"}" ] + ++ optional withQt5 "-DPHONON_BUILD_PHONON4QT5=ON"; +} diff --git a/pkgs/development/libraries/phonon/default.nix b/pkgs/development/libraries/phonon/default.nix index 3c731ca19e329..7f3a2d773cf59 100644 --- a/pkgs/development/libraries/phonon/default.nix +++ b/pkgs/development/libraries/phonon/default.nix @@ -1,21 +1,20 @@ -{ stdenv, fetchurl, cmake, mesa, pkgconfig, libpulseaudio -, qt4 ? null, automoc4 ? null -, qtbase ? null, qtquick1 ? null, qttools ? null +{ stdenv, lib, fetchurl, cmake, mesa, pkgconfig, libpulseaudio +, qt4 ? null, extra-cmake-modules ? null, qtbase ? null, qtquick1 ? null, qttools ? null , debug ? false }: -with stdenv.lib; +with lib; let - v = "4.8.3"; - withQt5 = qtbase != null; + v = "4.9.0"; + withQt5 = extra-cmake-modules != null; in +assert withQt5 -> qtbase != null; assert withQt5 -> qtquick1 != null; assert withQt5 -> qttools != null; -assert !withQt5 -> automoc4 != null; stdenv.mkDerivation rec { - name = "phonon-${v}"; + name = "phonon-${if withQt5 then "qt5" else "qt4"}-${v}"; meta = { homepage = http://phonon.kde.org/; @@ -27,16 +26,14 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://kde/stable/phonon/${v}/src/phonon-${v}.tar.xz"; - sha256 = "05nshngk03ln90vsjz44dx8al576f4vd5fvhs1l0jmx13jb9q551"; + sha256 = "1q5hvsk4sfcb91625wcmldy7kgjmfpmpmkgzi6mxkqdd307v8x5v"; }; buildInputs = [ mesa libpulseaudio ] ++ (if withQt5 then [ qtbase qtquick1 qttools ] else [ qt4 ]); - nativeBuildInputs = - [ cmake pkgconfig ] - ++ optional (!withQt5) automoc4; + nativeBuildInputs = [ cmake pkgconfig ] ++ optional withQt5 extra-cmake-modules; NIX_CFLAGS_COMPILE = "-fPIC"; @@ -47,8 +44,8 @@ stdenv.mkDerivation rec { postPatch = '' sed -i PhononConfig.cmake.in \ -e "/get_filename_component(rootDir/ s/^.*$//" \ - -e "s,\\(set(PHONON_INCLUDE_DIR\\).*$,\\1 \"''${!outputDev}/include\")," \ - -e "s,\\(set(PHONON_LIBRARY_DIR\\).*$,\\1 \"''${!outputLib}/lib\")," \ - -e "s,\\(set(PHONON_BUILDSYSTEM_DIR\\).*$,\\1 \"''${!outputDev}/share/phonon${if withQt5 then "4qt5" else ""}/buildsystem\")," + -e "/^set(PHONON_INCLUDE_DIR/ s,\''${rootDir},''${!outputDev}," \ + -e "/^set(PHONON_LIBRARY_DIR/ s,\''${rootDir}/,," \ + -e "/^set(PHONON_BUILDSYSTEM_DIR/ s,\''${rootDir},''${!outputDev}," ''; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7eb9741b2404b..ed5684073cad0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8437,9 +8437,7 @@ in phonon = callPackage ../development/libraries/phonon {}; - phonon_backend_gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt4 {}; - - phonon_backend_vlc = callPackage ../development/libraries/phonon-backend-vlc/qt4 {}; + phonon-backend-gstreamer = callPackage ../development/libraries/phonon/backends/gstreamer.nix {}; physfs = callPackage ../development/libraries/physfs { }; @@ -8576,12 +8574,6 @@ in openbr = callPackage ../development/libraries/openbr { }; - phonon = callPackage ../development/libraries/phonon { }; - - phonon-backend-gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5 { }; - - phonon-backend-vlc = callPackage ../development/libraries/phonon-backend-vlc/qt5 { }; - polkit-qt = callPackage ../development/libraries/polkit-qt-1/qt-5.nix { }; poppler = callPackage ../development/libraries/poppler { @@ -15461,8 +15453,11 @@ in kile = callPackage ../applications/editors/kile/frameworks.nix { }; - konversation = callPackage ../applications/networking/irc/konversation/1.6.nix { - }; + konversation = callPackage ../applications/networking/irc/konversation/1.6.nix { }; + + phonon = callPackage ../development/libraries/phonon { }; + + phonon-backend-gstreamer = callPackage ../development/libraries/phonon/backends/gstreamer.nix { }; quassel = callPackage ../applications/networking/irc/quassel/qt-5.nix { monolithic = true; -- cgit 1.4.1 From b4ff81ffd629d3f699b880ad62eaabf364a32d1d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 22 Apr 2016 08:11:10 -0500 Subject: phonon-backend-vlc: init at 0.9.0 --- .../modules/services/x11/desktop-managers/kde4.nix | 4 +-- pkgs/applications/audio/tomahawk/default.nix | 4 +-- pkgs/applications/graphics/digikam/default.nix | 6 ++-- pkgs/applications/video/minitube/default.nix | 6 ++-- pkgs/development/libraries/phonon/backends/vlc.nix | 39 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 6 files changed, 53 insertions(+), 10 deletions(-) create mode 100644 pkgs/development/libraries/phonon/backends/vlc.nix (limited to 'pkgs/development') diff --git a/nixos/modules/services/x11/desktop-managers/kde4.nix b/nixos/modules/services/x11/desktop-managers/kde4.nix index 80e408be49237..3b639f672170a 100644 --- a/nixos/modules/services/x11/desktop-managers/kde4.nix +++ b/nixos/modules/services/x11/desktop-managers/kde4.nix @@ -29,7 +29,7 @@ let phononBackends = { gstreamer = [ - pkgs.phonon_backend_gstreamer + pkgs.phonon-backend-gstreamer pkgs.gst_all.gstPluginsBase pkgs.gst_all.gstPluginsGood pkgs.gst_all.gstPluginsUgly @@ -38,7 +38,7 @@ let pkgs.gst_all.gstreamer # needed? ]; - vlc = [pkgs.phonon_backend_vlc]; + vlc = [pkgs.phonon-backend-vlc]; }; phononBackendPackages = flip concatMap cfg.phononBackends diff --git a/pkgs/applications/audio/tomahawk/default.nix b/pkgs/applications/audio/tomahawk/default.nix index 61cb6b9896e32..7021cd165cfd4 100644 --- a/pkgs/applications/audio/tomahawk/default.nix +++ b/pkgs/applications/audio/tomahawk/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, cmake, pkgconfig, attica, boost, gnutls, libechonest -, liblastfm, lucenepp, phonon, phonon_backend_vlc, qca2, qjson, qt4 +, liblastfm, lucenepp, phonon, phonon-backend-vlc, qca2, qjson, qt4 , qtkeychain, quazip, sparsehash, taglib, websocketpp, makeWrapper , enableXMPP ? true, libjreen ? null @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { postInstall = let pluginPath = stdenv.lib.concatStringsSep ":" [ - "${phonon_backend_vlc}/lib/kde4/plugins" + "${phonon-backend-vlc}/lib/kde4/plugins" ]; in '' for i in "$out"/bin/*; do diff --git a/pkgs/applications/graphics/digikam/default.nix b/pkgs/applications/graphics/digikam/default.nix index 119125066bda0..453dc08099564 100644 --- a/pkgs/applications/graphics/digikam/default.nix +++ b/pkgs/applications/graphics/digikam/default.nix @@ -19,7 +19,7 @@ # Supplementary packages required only by the wrapper. , bash, kde_runtime, kde_baseapps, makeWrapper, oxygen_icons -, phonon_backend_vlc /*phonon_backend_gstreamer,*/ +, phonon-backend-vlc /*phonon-backend-gstreamer,*/ , ffmpegthumbs /*mplayerthumbs*/ , runCommand, shared_mime_info, writeScriptBin }: @@ -93,7 +93,7 @@ let kdePkgs = [ build # digikam's own build kdelibs kdepimlibs kde_runtime kde_baseapps libkdcraw oxygen_icons - /*phonon_backend_gstreamer*/ phonon_backend_vlc + /*phonon-backend-gstreamer*/ phonon-backend-vlc ffmpegthumbs /*mplayerthumbs*/ shared_mime_info ] # Optional build time dependencies ++ [ @@ -208,7 +208,7 @@ TODO - Per lib `KDELIBS` environment variable export. See above in-code TODO comment. - Missing optional `qt_soap` or `herqq` (av + normal package) dependencies. Those are not yet (or not fully) packaged in nix. Mainly required for upnp export. - - Possibility to use the `phonon_backend_gstreamer` with its own user specified set of backend. + - Possibility to use the `phonon-backend-gstreamer` with its own user specified set of backend. - Allow user to disable optional features or dependencies reacting properly. - Compile `kipiplugins` as a separate package (so that it can be used by other kde packages and so that this package's build time is reduced). diff --git a/pkgs/applications/video/minitube/default.nix b/pkgs/applications/video/minitube/default.nix index 1a621032125b6..971588901b468 100644 --- a/pkgs/applications/video/minitube/default.nix +++ b/pkgs/applications/video/minitube/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, makeWrapper, phonon, phonon_backend_vlc, qt4, qmake4Hook +{ stdenv, fetchFromGitHub, makeWrapper, phonon, phonon-backend-vlc, qt4, qmake4Hook # "Free" API key generated by nckx , withAPIKey ? "AIzaSyBtFgbln3bu1swQC-naMxMtKh384D3xJZE" }: @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { owner = "flaviotordini"; }; - buildInputs = [ phonon phonon_backend_vlc qt4 ]; + buildInputs = [ phonon phonon-backend-vlc qt4 ]; nativeBuildInputs = [ makeWrapper qmake4Hook ]; qmakeFlags = [ "DEFINES+=APP_GOOGLE_API_KEY=${withAPIKey}" ]; @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { postInstall = '' wrapProgram $out/bin/minitube \ - --prefix QT_PLUGIN_PATH : "${phonon_backend_vlc}/lib/kde4/plugins" + --prefix QT_PLUGIN_PATH : "${phonon-backend-vlc}/lib/kde4/plugins" ''; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/phonon/backends/vlc.nix b/pkgs/development/libraries/phonon/backends/vlc.nix new file mode 100644 index 0000000000000..1f14ec575a0e2 --- /dev/null +++ b/pkgs/development/libraries/phonon/backends/vlc.nix @@ -0,0 +1,39 @@ +{ stdenv, lib, fetchurl, cmake, phonon, pkgconfig, vlc +, extra-cmake-modules ? null, qtbase ? null, qtx11extras ? null, qt4 ? null +, debug ? false }: + +with lib; + +let + v = "0.9.0"; + pname = "phonon-backend-vlc"; + withQt5 = extra-cmake-modules != null; +in + +assert withQt5 -> qtbase != null; +assert withQt5 -> qtx11extras != null; + +stdenv.mkDerivation rec { + name = "${pname}-${if withQt5 then "qt5" else "qt4"}-${v}"; + + meta = with stdenv.lib; { + homepage = http://phonon.kde.org/; + description = "GStreamer backend for Phonon"; + platforms = platforms.linux; + }; + + src = fetchurl { + url = "mirror://kde/stable/phonon/${pname}/${v}/src/${pname}-${v}.tar.xz"; + sha256 = "1gnd1j305mqajw5gxm42vg6ajkvi8611bxgc3qhj5k0saz5dgkn0"; + }; + + buildInputs = + [ phonon vlc ] + ++ (if withQt5 then [ qtbase qtx11extras ] else [ qt4 ]); + + nativeBuildInputs = [ cmake pkgconfig ] ++ optional withQt5 extra-cmake-modules; + + cmakeFlags = + [ "-DCMAKE_BUILD_TYPE=${if debug then "Debug" else "Release"}" ] + ++ optional withQt5 "-DPHONON_BUILD_PHONON4QT5=ON"; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ed5684073cad0..db687ba4a5d85 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8439,6 +8439,8 @@ in phonon-backend-gstreamer = callPackage ../development/libraries/phonon/backends/gstreamer.nix {}; + phonon-backend-vlc = callPackage ../development/libraries/phonon/backends/vlc.nix {}; + physfs = callPackage ../development/libraries/physfs { }; pipelight = callPackage ../tools/misc/pipelight { @@ -15459,6 +15461,8 @@ in phonon-backend-gstreamer = callPackage ../development/libraries/phonon/backends/gstreamer.nix { }; + phonon-backend-vlc = callPackage ../development/libraries/phonon/backends/vlc.nix { }; + quassel = callPackage ../applications/networking/irc/quassel/qt-5.nix { monolithic = true; daemon = false; -- cgit 1.4.1 From 97e4c19fcaa01fcc7f456f3896cbddccb25a6bb6 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 22 Apr 2016 19:30:26 +0300 Subject: wrapPython: drop python suffixes --- pkgs/development/python-modules/generic/wrap.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/python-modules/generic/wrap.sh b/pkgs/development/python-modules/generic/wrap.sh index fa6a4d0102f36..a67ea51f5a9b1 100644 --- a/pkgs/development/python-modules/generic/wrap.sh +++ b/pkgs/development/python-modules/generic/wrap.sh @@ -28,8 +28,10 @@ wrapPythonProgramsIn() { # Find all regular files in the output directory that are executable. for f in $(find "$dir" -type f -perm -0100); do # Rewrite "#! .../env python" to "#! /nix/store/.../python". + # Strip suffix, like "3" or "2.7m" -- we don't have any choice on which + # Python to use besides one in $python anyway. if head -n1 "$f" | grep -q '#!.*/env.*\(python\|pypy\)'; then - sed -i "$f" -e "1 s^.*/env[ ]*\(python\|pypy\)^#! $python^" + sed -i "$f" -e "1 s^.*/env[ ]*\(python\|pypy\)[^ ]*^#! $python^" fi # catch /python and /.python-wrapped -- cgit 1.4.1 From afaf1c2f77b0f30feaa155aa1ecd67353cd70896 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Thu, 21 Apr 2016 14:24:41 +0200 Subject: gettext: remove crossAttrs They seem not needed anymore. --- pkgs/development/libraries/gettext/default.nix | 7 ------- 1 file changed, 7 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix index 940df56c03c37..78a8756b59b4e 100644 --- a/pkgs/development/libraries/gettext/default.nix +++ b/pkgs/development/libraries/gettext/default.nix @@ -54,13 +54,6 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - crossAttrs = { - buildInputs = lib.optional (stdenv ? ccCross && stdenv.ccCross.libc ? libiconv) - stdenv.ccCross.libc.libiconv.crossDrv; - # Gettext fails to guess the cross compiler - configureFlags = "CXX=${stdenv.cross.config}-g++"; - }; - meta = { description = "Well integrated set of translation tools and documentation"; -- cgit 1.4.1 From 94eba251038cc3177f312e122c28bfbb0cc92ebc Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 9 Feb 2016 15:37:04 +0100 Subject: libxml2: fix on mingw, without DLLs ATM After closure-size merge we need to disable python support, as python upstream doesn't support cross-building linux -> mingw. --- pkgs/development/libraries/libxml2/default.nix | 35 ++++++++++++++++++-------- 1 file changed, 24 insertions(+), 11 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix index f7e175373e120..769169104ab34 100644 --- a/pkgs/development/libraries/libxml2/default.nix +++ b/pkgs/development/libraries/libxml2/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, zlib, xz, python, findXMLCatalogs }: +{ stdenv, lib, fetchurl, zlib, xz, python, findXMLCatalogs, libiconv +, supportPython ? (! stdenv ? cross) }: stdenv.mkDerivation rec { name = "libxml2-${version}"; @@ -9,23 +10,35 @@ stdenv.mkDerivation rec { sha256 = "0bd17g6znn2r98gzpjppsqjg33iraky4px923j3k8kdl8qgy7sad"; }; - outputs = [ "dev" "out" "bin" "doc" "py" ]; - propagatedBuildOutputs = "out bin py"; + outputs = [ "dev" "out" "bin" "doc" ] + ++ lib.optional supportPython "py"; + propagatedBuildOutputs = "out bin" + lib.optionalString supportPython " py"; - buildInputs = [ python ] + buildInputs = lib.optional supportPython python # Libxml2 has an optional dependency on liblzma. However, on impure # platforms, it may end up using that from /usr/lib, and thus lack a # RUNPATH for that, leading to undefined references for its users. - ++ stdenv.lib.optional stdenv.isFreeBSD xz; + ++ lib.optional stdenv.isFreeBSD xz; propagatedBuildInputs = [ zlib findXMLCatalogs ]; - configureFlags = "--with-python=${python}"; + configureFlags = lib.optional supportPython "--with-python=${python}"; enableParallelBuilding = true; - preInstall = ''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"''; - installFlags = ''pythondir="$(py)/lib/${python.libPrefix}/site-packages"''; + crossAttrs = lib.optionalAttrs (stdenv.cross.libc == "msvcrt") { + # creating the DLL is broken ATM + dontDisableStatic = true; + configureFlags = configureFlags ++ [ "--disable-shared" ]; + + # libiconv is a header dependency - propagating is enough + propagatedBuildInputs = [ findXMLCatalogs libiconv ]; + }; + + preInstall = lib.optionalString supportPython + ''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"''; + installFlags = lib.optionalString supportPython + ''pythondir="$(py)/lib/${python.libPrefix}/site-packages"''; postFixup = '' moveToOutput bin/xml2-config "$dev" @@ -33,13 +46,13 @@ stdenv.mkDerivation rec { moveToOutput share/man/man1 "$bin" ''; - passthru = { inherit version; pythonSupport = true; }; + passthru = { inherit version; pythonSupport = supportPython; }; meta = { homepage = http://xmlsoft.org/; description = "An XML parsing library for C"; license = "bsd"; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.eelco ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.eelco ]; }; } -- cgit 1.4.1 From 49bec8173026c1a050829b43447a4a8f8ca850ed Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 9 Feb 2016 15:37:48 +0100 Subject: libxslt: fix on mingw by upstream patch It's only static, as libxml2 is only static ATM. --- pkgs/development/libraries/libxslt/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libxslt/default.nix b/pkgs/development/libraries/libxslt/default.nix index 0eda42879ece8..c76f282460476 100644 --- a/pkgs/development/libraries/libxslt/default.nix +++ b/pkgs/development/libraries/libxslt/default.nix @@ -9,6 +9,12 @@ stdenv.mkDerivation rec { }; patches = stdenv.lib.optional stdenv.isSunOS ./patch-ah.patch + ++ stdenv.lib.optional (stdenv.cross.libc or null == "msvcrt") + (fetchpatch { + name = "mingw.patch"; + url = "http://git.gnome.org/browse/libxslt/patch/?id=ab5810bf27cd63"; + sha256 = "0kkqq3fv2k3q86al38vp6zwxazpvp5kslcjnmrq4ax5cm2zvsjk3"; + }) ++ [ (fetchpatch { name = "CVE-2015-7995.patch"; -- cgit 1.4.1 From 80509ab287687591ba179535bfc1cec88013a0d9 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 9 Feb 2016 19:14:18 +0100 Subject: libpng: fix on mingw by disabling doCheck --- pkgs/development/libraries/libpng/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libpng/default.nix b/pkgs/development/libraries/libpng/default.nix index 6faed97aaee28..a5a0e1d42a380 100644 --- a/pkgs/development/libraries/libpng/default.nix +++ b/pkgs/development/libraries/libpng/default.nix @@ -26,7 +26,9 @@ in stdenv.mkDerivation rec { preConfigure = "export bin=$dev"; - doCheck = true; + # it's hard to cross-run tests and some check programs didn't compile anyway + makeFlags = stdenv.lib.optional (!doCheck) "check_PROGRAMS="; + doCheck = ! stdenv ? cross; postInstall = ''mv "$out/bin" "$dev/bin"''; -- cgit 1.4.1 From 321ecde8a163cdde9e39df277288e9ff3817f4df Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Thu, 21 Apr 2016 16:12:50 +0200 Subject: zlib: on mingw, add another DLL link Also clean up the expression a little. It fixes at least libpng's DLL. --- pkgs/development/libraries/zlib/default.nix | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/zlib/default.nix b/pkgs/development/libraries/zlib/default.nix index 59713bb8d205e..f7a72a7673a15 100644 --- a/pkgs/development/libraries/zlib/default.nix +++ b/pkgs/development/libraries/zlib/default.nix @@ -52,14 +52,21 @@ stdenv.mkDerivation rec { crossAttrs = { dontStrip = static; + dontSetConfigureCross = true; } // stdenv.lib.optionalAttrs (stdenv.cross.libc == "msvcrt") { - configurePhase='' - installFlags="BINARY_PATH=$out/bin INCLUDE_PATH=$out/include LIBRARY_PATH=$out/lib" - ''; + installFlags = [ + "BINARY_PATH=$(out)/bin" + "INCLUDE_PATH=$(dev)/include" + "LIBRARY_PATH=$(out)/lib" + ]; makeFlags = [ "-f" "win32/Makefile.gcc" "PREFIX=${stdenv.cross.config}-" - ] ++ (if static then [] else [ "SHARED_MODE=1" ]); + ] ++ stdenv.lib.optional (!static) "SHARED_MODE=1"; + + # Non-typical naming confuses libtool which then refuses to use zlib's DLL + # in some cases, e.g. when compiling libpng. + postInstall = postInstall + "ln -s zlib1.dll $out/bin/libz.dll"; } // stdenv.lib.optionalAttrs (stdenv.cross.libc == "libSystem") { makeFlags = [ "RANLIB=${stdenv.cross.config}-ranlib" ]; }; -- cgit 1.4.1 From bd3d377e5eff3521de386c298c9bd89b132f2ad0 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 9 Feb 2016 19:27:14 +0100 Subject: freetype: fix on mingw --- pkgs/development/libraries/freetype/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/freetype/default.nix b/pkgs/development/libraries/freetype/default.nix index 81e98056e90b2..0548d1433b754 100644 --- a/pkgs/development/libraries/freetype/default.nix +++ b/pkgs/development/libraries/freetype/default.nix @@ -26,7 +26,8 @@ stdenv.mkDerivation rec { }; patches = [] - ++ optionals useEncumberedCode [ + # mingw: these patches use `strcasestr` which isn't available on windows + ++ optionals (useEncumberedCode && stdenv.cross.libc or null != "msvcrt" ) [ (fetchbohoomil "01-freetype-2.6.2-enable-valid.patch" "1szq0zha7n41f4pq179wgfkam034mp2xn0xc36sdl5sjp9s9hv08") (fetchbohoomil "02-upstream-2015.12.05.patch" @@ -39,7 +40,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ zlib bzip2 libpng ]; # needed when linking against freetype # dependence on harfbuzz is looser than the reverse dependence - buildInputs = [ pkgconfig which ] + nativeBuildInputs = [ pkgconfig which ] # FreeType requires GNU Make, which is not part of stdenv on FreeBSD. ++ optional (!stdenv.isLinux) gnumake; @@ -56,7 +57,7 @@ stdenv.mkDerivation rec { postInstall = glib.flattenInclude; - crossAttrs = { + crossAttrs = stdenv.lib.optionalAttrs (stdenv.cross.libc or null != "msvcrt") { # Somehow it calls the unwrapped gcc, "i686-pc-linux-gnu-gcc", instead # of gcc. I think it's due to the unwrapped gcc being in the PATH. I don't # know why it's on the PATH. -- cgit 1.4.1 From 7d4ebb526caa9904dc45e5905dd2e4d90f912979 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Wed, 10 Feb 2016 12:40:20 +0100 Subject: libjpeg(-turbo): fix on mingw By porting a patch from msys2. --- pkgs/development/libraries/libjpeg-turbo/default.nix | 4 ++++ .../libraries/libjpeg-turbo/mingw-boolean.patch | 19 +++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/development/libraries/libjpeg-turbo/mingw-boolean.patch (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libjpeg-turbo/default.nix b/pkgs/development/libraries/libjpeg-turbo/default.nix index da4d3a9822f26..c326e630bd087 100644 --- a/pkgs/development/libraries/libjpeg-turbo/default.nix +++ b/pkgs/development/libraries/libjpeg-turbo/default.nix @@ -8,6 +8,10 @@ stdenv.mkDerivation rec { sha256 = "0gi349hp1x7mb98s4mf66sb2xay2kjjxj9ihrriw0yiy0k9va6sj"; }; + patches = + stdenv.lib.optional (stdenv.cross.libc or null == "msvcrt") + ./mingw-boolean.patch; + outputs = [ "dev" "out" "doc" "bin" ]; nativeBuildInputs = [ nasm ]; diff --git a/pkgs/development/libraries/libjpeg-turbo/mingw-boolean.patch b/pkgs/development/libraries/libjpeg-turbo/mingw-boolean.patch new file mode 100644 index 0000000000000..9b9483d639877 --- /dev/null +++ b/pkgs/development/libraries/libjpeg-turbo/mingw-boolean.patch @@ -0,0 +1,19 @@ +Ported to updated libjpeg-turbo from +https://github.com/msys2/MINGW-packages/blob/master/mingw-w64-libjpeg-turbo/jpeg-typedefs.patch +--- a/jmorecfg.h 2012-02-10 06:47:55 +0300 ++++ b/jmorecfg.h 2012-05-03 10:29:13 +0400 +@@ -224,7 +224,13 @@ + * Defining HAVE_BOOLEAN before including jpeglib.h should make it work. + */ + +-#ifndef HAVE_BOOLEAN ++#if defined(_WIN32) && !defined(HAVE_BOOLEAN) ++#ifndef __RPCNDR_H__ ++typedef unsigned char boolean; ++#endif ++#define HAVE_BOOLEAN ++#endif ++#if !defined(HAVE_BOOLEAN) && !defined(__RPCNDR_H__) + typedef int boolean; + #endif + #ifndef FALSE /* in case these macros already exist */ -- cgit 1.4.1 From 076a09ee37570363f5fef77292a61a117edfdc8d Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Wed, 10 Feb 2016 12:07:15 +0100 Subject: poppler: disable some dependencies for minimal config lcms, openjpeg and curl don't seem to be so necessary. --- pkgs/development/libraries/poppler/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix index ebcdcc2b3efdf..ef27113806bae 100644 --- a/pkgs/development/libraries/poppler/default.nix +++ b/pkgs/development/libraries/poppler/default.nix @@ -22,8 +22,8 @@ stdenv.mkDerivation rec { # TODO: reduce propagation to necessary libs propagatedBuildInputs = with lib; - [ zlib freetype fontconfig libjpeg lcms curl openjpeg ] - ++ optional (!minimal) cairo + [ zlib freetype fontconfig libjpeg ] + ++ optionals (!minimal) [ cairo lcms curl openjpeg ] ++ optional qt4Support qt4 ++ optional qt5Support qtbase; @@ -35,8 +35,11 @@ stdenv.mkDerivation rec { "--enable-libcurl" "--enable-zlib" ] - ++ optionals minimal [ "--disable-poppler-glib" "--disable-poppler-cpp" ] - ++ optional (!utils) "--disable-utils"; + ++ optionals minimal [ + "--disable-poppler-glib" "--disable-poppler-cpp" + "--disable-libopenjpeg" "--disable-libcurl" + ] + ++ optional (!utils) "--disable-utils" ; enableParallelBuilding = true; -- cgit 1.4.1 From 960244c0af1cfab1c16993815e0373e36425f79b Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Wed, 10 Feb 2016 12:08:23 +0100 Subject: poppler: improve on mingw The minimal version should be fine now. --- pkgs/development/libraries/poppler/default.nix | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix index ef27113806bae..d9d5a7679b17b 100644 --- a/pkgs/development/libraries/poppler/default.nix +++ b/pkgs/development/libraries/poppler/default.nix @@ -43,6 +43,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + crossAttrs.postPatch = + # there are tests using `strXXX_s` functions that are missing apparently + stdenv.lib.optionalString (stdenv.cross.libc or null == "msvcrt") + "sed '/^SUBDIRS =/s/ test / /' -i Makefile.in"; + meta = with lib; { homepage = http://poppler.freedesktop.org/; description = "A PDF rendering library"; -- cgit 1.4.1 From ad033f7665c14133cd17225d97a8db79012ddcbe Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 11 Apr 2015 23:19:37 +0200 Subject: boost: Fix generation of crossB2Args. `concatMapStringsSep` actually needs a function to work on the list items, but it was probably a leftover from the refactor in af8654d. Signed-off-by: aszlig --- pkgs/development/libraries/boost/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 5b0c06bd6bb2a..65d188a86c548 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -77,7 +77,7 @@ let "toolset=gcc-cross" "--without-python" ]; - crossB2Args = concatMapStringsSep " " (genericB2Flags ++ crossB2Flags); + crossB2Args = concatStringsSep " " (genericB2Flags ++ crossB2Flags); builder = b2Args: '' ./b2 ${b2Args} -- cgit 1.4.1 From 2d760a28b3479bcbb39d512cf9930b46d17d5364 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 12 Apr 2015 10:32:18 +0200 Subject: boost: Supply some configure flags for mingw. Otherwise, Boost.Build is trying to compile against pthread and desperately searches for icu/iconv. Signed-off-by: aszlig --- pkgs/development/libraries/boost/generic.nix | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 65d188a86c548..758d95309bb1e 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -76,6 +76,9 @@ let "--user-config=user-config.jam" "toolset=gcc-cross" "--without-python" + ] ++ optionals stdenv.isCrossWin [ + "target-os=windows" + "threadapi=win32" ]; crossB2Args = concatStringsSep " " (genericB2Flags ++ crossB2Flags); -- cgit 1.4.1 From 5f0f48c08b3c718d898b2f00b7b48a5bf6d3eb95 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 12 Apr 2015 10:34:06 +0200 Subject: boost: Reduce noise during cross compile. I guess the "set -x" was only left there for debugging, so I'm removing it because it let's the scrollback buffer explode ;-) Signed-off-by: aszlig --- pkgs/development/libraries/boost/generic.nix | 1 - 1 file changed, 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 758d95309bb1e..51d3c911d6776 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -173,7 +173,6 @@ stdenv.mkDerivation { # usual --build and --host added on cross building. preConfigure = '' export configureFlags="--without-icu ${concatStringsSep " " commonConfigureFlags}" - set -x cat << EOF > user-config.jam using gcc : cross : $crossConfig-g++ ; EOF -- cgit 1.4.1 From fb74d901d76d393be28b19651f5368b89db93d16 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 12 Apr 2015 12:01:07 +0200 Subject: boost: Add patch for mingw to use gas instead. The upstream sources only compile with masm, so we need to add a patch that translates the masm sources to GNU assembler. Unfortunately, this means, that "generic.nix" is no longer very much generic, but the versions we currently include work fine with the patch. Unfortunately, the boost build still doesn't finish, but we're getting there soon enough. The patch is from https://svn.boost.org/trac/boost/ticket/7262 and following the discussion it seems that the upstream authors are unwilling to add a gas version for the Windows platform. So in the long term we might need to find a better solution to that, like for example using Wine to run MASM. Signed-off-by: aszlig --- pkgs/development/libraries/boost/generic.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 51d3c911d6776..561f65afa5136 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -1,4 +1,4 @@ -{ stdenv, icu, expat, zlib, bzip2, python, fixDarwinDylibNames +{ stdenv, fetchurl, icu, expat, zlib, bzip2, python, fixDarwinDylibNames , toolset ? if stdenv.cc.isClang then "clang" else null , enableRelease ? true , enableDebug ? false @@ -79,6 +79,9 @@ let ] ++ optionals stdenv.isCrossWin [ "target-os=windows" "threadapi=win32" + "binary-format=pe" + "address-model=${if stdenv.isCross64 then "64" else "32"}" + "architecture=x86" ]; crossB2Args = concatStringsSep " " (genericB2Flags ++ crossB2Flags); @@ -180,5 +183,13 @@ stdenv.mkDerivation { buildPhase = builder crossB2Args; installPhase = installer crossB2Args; postFixup = fixup; + } // optionalAttrs stdenv.isCrossWin { + patches = fetchurl { + url = "https://svn.boost.org/trac/boost/raw-attachment/ticket/7262/" + + "boost-mingw.patch"; + sha256 = "0s32kwll66k50w6r5np1y5g907b7lcpsjhfgr7rsw7q5syhzddyj"; + }; + + patchFlags = "-p0"; }; } -- cgit 1.4.1 From 2b0d72585432832b96ed5cf117cf9035874dfce2 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 16 Feb 2016 20:36:51 +0100 Subject: boost: finish fixes for mingw - Dynamic linking won't work, it seems. - When using a native python, the extension isn't built, so let's not depend on it. - Replace flags missing on this branch, such as `isCrossWin`. --- pkgs/development/libraries/boost/generic.nix | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 561f65afa5136..8835c58618a21 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -4,8 +4,8 @@ , enableDebug ? false , enableSingleThreaded ? false , enableMultiThreaded ? true -, enableShared ? true -, enableStatic ? false +, enableShared ? !(stdenv.cross.libc or null == "msvcrt") # problems for now +, enableStatic ? !enableShared , enablePIC ? false , enableExceptions ? false , taggedLayout ? ((enableRelease && enableDebug) || (enableSingleThreaded && enableMultiThreaded) || (enableShared && enableStatic)) @@ -76,11 +76,11 @@ let "--user-config=user-config.jam" "toolset=gcc-cross" "--without-python" - ] ++ optionals stdenv.isCrossWin [ + ] ++ optionals (stdenv.cross.libc == "msvcrt") [ "target-os=windows" "threadapi=win32" "binary-format=pe" - "address-model=${if stdenv.isCross64 then "64" else "32"}" + "address-model=${if hasPrefix "x86_64-" stdenv.cross.config then "64" else "32"}" "architecture=x86" ]; crossB2Args = concatStringsSep " " (genericB2Flags ++ crossB2Flags); @@ -114,6 +114,8 @@ let find include \( -name '*.hpp' -or -name '*.h' -or -name '*.ipp' \) \ -exec sed '1i#line 1 "{}"' -i '{}' \; ) + '' + optionalString (stdenv.cross.libc or null == "msvcrt") '' + ${stdenv.cross.config}-ranlib "$lib"/lib/*.a ''; in @@ -149,14 +151,15 @@ stdenv.mkDerivation { enableParallelBuilding = true; - buildInputs = [ icu expat zlib bzip2 python ] + buildInputs = [ expat zlib bzip2 ] + ++ stdenv.lib.optionals (! stdenv ? cross) [ python icu ] ++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames; configureScript = "./bootstrap.sh"; - configureFlags = commonConfigureFlags ++ [ - "--with-icu=${icu.dev}" - "--with-python=${python.interpreter}" - ] ++ optional (toolset != null) "--with-toolset=${toolset}"; + configureFlags = commonConfigureFlags + ++ [ "--with-python=${python.interpreter}" ] + ++ optional (! stdenv ? cross) "--with-icu=${icu.dev}" + ++ optional (toolset != null) "--with-toolset=${toolset}"; buildPhase = builder nativeB2Args; @@ -168,10 +171,6 @@ stdenv.mkDerivation { setOutputFlags = false; crossAttrs = rec { - buildInputs = [ expat.crossDrv zlib.crossDrv bzip2.crossDrv ]; - # all buildInputs set previously fell into propagatedBuildInputs, as usual, so we have to - # override them. - propagatedBuildInputs = buildInputs; # We want to substitute the contents of configureFlags, removing thus the # usual --build and --host added on cross building. preConfigure = '' @@ -183,7 +182,7 @@ stdenv.mkDerivation { buildPhase = builder crossB2Args; installPhase = installer crossB2Args; postFixup = fixup; - } // optionalAttrs stdenv.isCrossWin { + } // optionalAttrs (stdenv.cross.libc == "msvcrt") { patches = fetchurl { url = "https://svn.boost.org/trac/boost/raw-attachment/ticket/7262/" + "boost-mingw.patch"; -- cgit 1.4.1 From 1bfc3a8965d54b88d132bf7368dac33919ba57e1 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 16 Feb 2016 20:44:54 +0100 Subject: boost: support libiconv, also on non-glibc platforms --- pkgs/development/libraries/boost/generic.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 8835c58618a21..8e5579cb8ea71 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, icu, expat, zlib, bzip2, python, fixDarwinDylibNames +{ stdenv, fetchurl, icu, expat, zlib, bzip2, python, fixDarwinDylibNames, libiconv , toolset ? if stdenv.cc.isClang then "clang" else null , enableRelease ? true , enableDebug ? false @@ -151,7 +151,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; - buildInputs = [ expat zlib bzip2 ] + buildInputs = [ expat zlib bzip2 libiconv ] ++ stdenv.lib.optionals (! stdenv ? cross) [ python icu ] ++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames; -- cgit 1.4.1 From 2e06e5eb3669408f5b0fa6c64ac50ca54f8a6ee9 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 23 Apr 2016 07:31:02 -0500 Subject: Revert "dbus: 1.8.20 -> 1.10.8" This reverts commit d088e0621e11a03cd50b27863f883fb0f8d3db36. The D-Bus update breaks logind and polkit. --- pkgs/development/libraries/dbus/default.nix | 7 ++++--- .../dbus/ignore-missing-includedirs.patch | 23 ++++++++++++++++++++++ 2 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 pkgs/development/libraries/dbus/ignore-missing-includedirs.patch (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/dbus/default.nix b/pkgs/development/libraries/dbus/default.nix index dd86ca540815a..83635d9739f18 100644 --- a/pkgs/development/libraries/dbus/default.nix +++ b/pkgs/development/libraries/dbus/default.nix @@ -6,8 +6,8 @@ assert x11Support -> libX11 != null && libSM != null; let - version = "1.10.8"; - sha256 = "0560y3hxpgh346w6avcrcz79c8ansmn771y5xpcvvlr6m8mx5wxs"; + version = "1.8.20"; + sha256 = "0fkh3d5r57a659hw9lqnw4v0bc5556vx54fsf7l9c732ci6byksw"; self = stdenv.mkDerivation { name = "dbus-${version}"; @@ -17,7 +17,8 @@ self = stdenv.mkDerivation { inherit sha256; }; - patches = lib.optional stdenv.isSunOS ./implement-getgrouplist.patch; + patches = [ ./ignore-missing-includedirs.patch ] + ++ lib.optional stdenv.isSunOS ./implement-getgrouplist.patch; postPatch = '' substituteInPlace tools/Makefile.in \ --replace 'install-localstatelibDATA:' 'disabled:' \ diff --git a/pkgs/development/libraries/dbus/ignore-missing-includedirs.patch b/pkgs/development/libraries/dbus/ignore-missing-includedirs.patch new file mode 100644 index 0000000000000..2781f4ae3de51 --- /dev/null +++ b/pkgs/development/libraries/dbus/ignore-missing-includedirs.patch @@ -0,0 +1,23 @@ +diff -ru -x '*~' dbus-1.2.24-orig/bus/config-parser.c dbus-1.2.24/bus/config-parser.c +--- dbus-1.2.24-orig/bus/config-parser.c 2010-03-23 20:01:27.000000000 +0100 ++++ dbus-1.2.24/bus/config-parser.c 2010-07-20 14:17:20.000000000 +0200 +@@ -2159,12 +2159,16 @@ + + retval = FALSE; + +- dir = _dbus_directory_open (dirname, error); ++ dbus_error_init (&tmp_error); ++ ++ dir = _dbus_directory_open (dirname, &tmp_error); + + if (dir == NULL) +- goto failed; ++ { ++ retval = TRUE; ++ goto failed; ++ } + +- dbus_error_init (&tmp_error); + while (_dbus_directory_get_next_file (dir, &filename, &tmp_error)) + { + DBusString full_path; -- cgit 1.4.1 From cbaca6aa7175d10b3c9820232965a797ca4bb45d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 23 Apr 2016 09:54:51 -0500 Subject: phonon: fix src urls --- pkgs/development/libraries/phonon/backends/gstreamer.nix | 2 +- pkgs/development/libraries/phonon/backends/vlc.nix | 2 +- pkgs/development/libraries/phonon/default.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/phonon/backends/gstreamer.nix b/pkgs/development/libraries/phonon/backends/gstreamer.nix index 756db94e34377..3f2ab6696d18b 100644 --- a/pkgs/development/libraries/phonon/backends/gstreamer.nix +++ b/pkgs/development/libraries/phonon/backends/gstreamer.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { }; src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${v}/src/${pname}-${v}.tar.xz"; + url = "mirror://kde/stable/phonon/${pname}/${v}/${pname}-${v}.tar.xz"; sha256 = "1wc5p1rqglf0n1avp55s50k7fjdzdrhg0gind15k8796w7nfbhyf"; }; diff --git a/pkgs/development/libraries/phonon/backends/vlc.nix b/pkgs/development/libraries/phonon/backends/vlc.nix index 1f14ec575a0e2..aaff26eee2867 100644 --- a/pkgs/development/libraries/phonon/backends/vlc.nix +++ b/pkgs/development/libraries/phonon/backends/vlc.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { }; src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${v}/src/${pname}-${v}.tar.xz"; + url = "mirror://kde/stable/phonon/${pname}/${v}/${pname}-${v}.tar.xz"; sha256 = "1gnd1j305mqajw5gxm42vg6ajkvi8611bxgc3qhj5k0saz5dgkn0"; }; diff --git a/pkgs/development/libraries/phonon/default.nix b/pkgs/development/libraries/phonon/default.nix index 7f3a2d773cf59..2356a0403804f 100644 --- a/pkgs/development/libraries/phonon/default.nix +++ b/pkgs/development/libraries/phonon/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { }; src = fetchurl { - url = "mirror://kde/stable/phonon/${v}/src/phonon-${v}.tar.xz"; + url = "mirror://kde/stable/phonon/${v}/phonon-${v}.tar.xz"; sha256 = "1q5hvsk4sfcb91625wcmldy7kgjmfpmpmkgzi6mxkqdd307v8x5v"; }; -- cgit 1.4.1 From 5ff40ddedfe3188749faa21d71ac013277aff1d1 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 14 Apr 2016 19:00:39 +0300 Subject: add get* helper functions and mass-replace manual outputs search with them --- lib/attrsets.nix | 4 ++ .../system/activation/activation-script.nix | 3 +- pkgs/applications/search/recoll/default.nix | 44 +++++++++++----------- pkgs/build-support/cc-wrapper/default.nix | 12 +++--- pkgs/build-support/gcc-wrapper-old/default.nix | 8 ++-- .../compilers/gcc-arm-embedded/default.nix | 4 +- pkgs/development/compilers/ghc/6.10.2-binary.nix | 4 +- pkgs/development/compilers/go/1.4.nix | 2 +- pkgs/development/interpreters/perl/default.nix | 4 +- pkgs/development/interpreters/pypy/default.nix | 7 ++-- .../interpreters/python/2.6/default.nix | 4 +- .../interpreters/python/2.7/default.nix | 4 +- .../interpreters/python/3.2/default.nix | 4 +- .../interpreters/python/3.3/default.nix | 4 +- .../interpreters/python/3.4/default.nix | 4 +- .../interpreters/python/3.5/default.nix | 4 +- .../tools/build-managers/cmake/default.nix | 6 +-- pkgs/misc/emulators/wine/base.nix | 5 ++- pkgs/stdenv/darwin/make-bootstrap-tools.nix | 2 +- pkgs/stdenv/generic/default.nix | 2 +- 20 files changed, 67 insertions(+), 64 deletions(-) (limited to 'pkgs/development') diff --git a/lib/attrsets.nix b/lib/attrsets.nix index 9104ff35d194f..636cb257d6bf5 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -450,6 +450,10 @@ rec { then pkg.${output} or pkg.out or pkg else pkg; + getBin = getOutput "bin"; + getLib = getOutput "lib"; + getDev = getOutput "dev"; + /*** deprecated stuff ***/ diff --git a/nixos/modules/system/activation/activation-script.nix b/nixos/modules/system/activation/activation-script.nix index 9d61d64f7553a..4489e34831da0 100644 --- a/nixos/modules/system/activation/activation-script.nix +++ b/nixos/modules/system/activation/activation-script.nix @@ -12,8 +12,7 @@ let ''; }); - path = map # outputs TODO? - (pkg: (pkg.bin or (pkg.out or pkg))) + path = map getBin [ pkgs.coreutils pkgs.gnugrep pkgs.findutils pkgs.glibc # needed for getent pkgs.shadow diff --git a/pkgs/applications/search/recoll/default.nix b/pkgs/applications/search/recoll/default.nix index 253b97aff1e70..345b1341c0f40 100644 --- a/pkgs/applications/search/recoll/default.nix +++ b/pkgs/applications/search/recoll/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, bison +{ stdenv, fetchurl, lib, bison , qt4, xapian, file, python, perl , djvulibre, groff, libxslt, unzip, poppler_utils, antiword, catdoc, lyx , libwpd, unrtf, untex @@ -26,27 +26,27 @@ stdenv.mkDerivation rec { # the absolute path to the filtering command. postInstall = '' for f in $out/share/recoll/filters/* ; do - substituteInPlace $f --replace antiword ${antiword}/bin/antiword - substituteInPlace $f --replace awk ${gawk}/bin/awk - substituteInPlace $f --replace catppt ${catdoc}/bin/catppt - substituteInPlace $f --replace djvused ${djvulibre.bin}/bin/djvused - substituteInPlace $f --replace djvutxt ${djvulibre.bin}/bin/djvutxt - substituteInPlace $f --replace egrep ${gnugrep}/bin/egrep - substituteInPlace $f --replace groff ${groff}/bin/groff - substituteInPlace $f --replace gunzip ${gzip}/bin/gunzip - substituteInPlace $f --replace iconv ${libiconv.bin or libiconv}/bin/iconv - substituteInPlace $f --replace lyx ${lyx}/bin/lyx - substituteInPlace $f --replace pdftotext ${poppler_utils.out}/bin/pdftotext - substituteInPlace $f --replace pstotext ${ghostscript}/bin/ps2ascii - substituteInPlace $f --replace sed ${gnused}/bin/sed - substituteInPlace $f --replace tar ${gnutar}/bin/tar - substituteInPlace $f --replace unzip ${unzip}/bin/unzip - substituteInPlace $f --replace xls2csv ${catdoc}/bin/xls2csv - substituteInPlace $f --replace xsltproc ${libxslt.bin}/bin/xsltproc - substituteInPlace $f --replace unrtf ${unrtf}/bin/unrtf - substituteInPlace $f --replace untex ${untex}/bin/untex - substituteInPlace $f --replace wpd2html ${libwpd}/bin/wpd2html - substituteInPlace $f --replace /usr/bin/perl ${perl}/bin/perl + substituteInPlace $f --replace antiword ${lib.getBin antiword}/bin/antiword + substituteInPlace $f --replace awk ${lib.getBin gawk}/bin/awk + substituteInPlace $f --replace catppt ${lib.getBin catdoc}/bin/catppt + substituteInPlace $f --replace djvused ${lib.getBin djvulibre}/bin/djvused + substituteInPlace $f --replace djvutxt ${lib.getBin djvulibre}/bin/djvutxt + substituteInPlace $f --replace egrep ${lib.getBin gnugrep}/bin/egrep + substituteInPlace $f --replace groff ${lib.getBin groff}/bin/groff + substituteInPlace $f --replace gunzip ${lib.getBin gzip}/bin/gunzip + substituteInPlace $f --replace iconv ${lib.getBin libiconv}/bin/iconv + substituteInPlace $f --replace lyx ${lib.getBin lyx}/bin/lyx + substituteInPlace $f --replace pdftotext ${lib.getBin poppler_utils}/bin/pdftotext + substituteInPlace $f --replace pstotext ${lib.getBin ghostscript}/bin/ps2ascii + substituteInPlace $f --replace sed ${lib.getBin gnused}/bin/sed + substituteInPlace $f --replace tar ${lib.getBin gnutar}/bin/tar + substituteInPlace $f --replace unzip ${lib.getBin unzip}/bin/unzip + substituteInPlace $f --replace xls2csv ${lib.getBin catdoc}/bin/xls2csv + substituteInPlace $f --replace xsltproc ${lib.getBin libxslt}/bin/xsltproc + substituteInPlace $f --replace unrtf ${lib.getBin unrtf}/bin/unrtf + substituteInPlace $f --replace untex ${lib.getBin untex}/bin/untex + substituteInPlace $f --replace wpd2html ${lib.getBin libwpd}/bin/wpd2html + substituteInPlace $f --replace /usr/bin/perl ${lib.getBin perl}/bin/perl done ''; diff --git a/pkgs/build-support/cc-wrapper/default.nix b/pkgs/build-support/cc-wrapper/default.nix index 6cdd047724455..6bdb35b912a79 100644 --- a/pkgs/build-support/cc-wrapper/default.nix +++ b/pkgs/build-support/cc-wrapper/default.nix @@ -27,13 +27,13 @@ let ccVersion = (builtins.parseDrvName cc.name).version; ccName = (builtins.parseDrvName cc.name).name; - libc_bin = if nativeLibc then null else libc.bin or libc; - libc_dev = if nativeLibc then null else libc.dev or libc; - libc_lib = if nativeLibc then null else libc.out or libc; - cc_solib = cc.lib or cc; - binutils_bin = if nativeTools then "" else binutils.bin or binutils; + libc_bin = if nativeLibc then null else getBin libc; + libc_dev = if nativeLibc then null else getDev libc; + libc_lib = if nativeLibc then null else getLib libc; + cc_solib = getLib cc; + binutils_bin = if nativeTools then "" else getBin binutils; # The wrapper scripts use 'cat' and 'grep', so we may need coreutils. - coreutils_bin = if nativeTools then "" else coreutils.bin or coreutils; + coreutils_bin = if nativeTools then "" else getBin coreutils; in stdenv.mkDerivation { diff --git a/pkgs/build-support/gcc-wrapper-old/default.nix b/pkgs/build-support/gcc-wrapper-old/default.nix index f44aaec5d9d77..a7801e239e9ca 100644 --- a/pkgs/build-support/gcc-wrapper-old/default.nix +++ b/pkgs/build-support/gcc-wrapper-old/default.nix @@ -5,7 +5,7 @@ # stdenv.mkDerivation provides a wrapper that sets up the right environment # variables so that the compiler and the linker just "work". -{ name ? "", stdenv, nativeTools, nativeLibc, nativePrefix ? "" +{ name ? "", stdenv, lib, nativeTools, nativeLibc, nativePrefix ? "" , gcc ? null, libc ? null, binutils ? null, coreutils ? null, shell ? "" , zlib ? null }: @@ -41,10 +41,10 @@ stdenv.mkDerivation { addFlags = ./add-flags; inherit nativeTools nativeLibc nativePrefix gcc; - gcc_lib = gcc.lib or gcc; + gcc_lib = lib.getLib gcc; libc = if nativeLibc then null else libc; - libc_dev = if nativeLibc then null else libc.dev or libc; - libc_bin = if nativeLibc then null else libc.bin or libc; + libc_dev = if nativeLibc then null else lib.getDev libc; + libc_bin = if nativeLibc then null else lib.getBin libc; binutils = if nativeTools then null else binutils; # The wrapper scripts use 'cat', so we may need coreutils coreutils = if nativeTools then null else coreutils; diff --git a/pkgs/development/compilers/gcc-arm-embedded/default.nix b/pkgs/development/compilers/gcc-arm-embedded/default.nix index 1c549907c31d3..85d8d37b21ce9 100644 --- a/pkgs/development/compilers/gcc-arm-embedded/default.nix +++ b/pkgs/development/compilers/gcc-arm-embedded/default.nix @@ -33,8 +33,8 @@ stdenv.mkDerivation { for f in $(find $out); do if [ -f "$f" ] && patchelf "$f" 2> /dev/null; then - patchelf --set-interpreter ${glibc.out}/lib/ld-linux.so.2 \ - --set-rpath $out/lib:${gcc.lib or gcc}/lib:${ncurses.out}/lib \ + patchelf --set-interpreter ${getLib glibc}/lib/ld-linux.so.2 \ + --set-rpath $out/lib:${getLib gcc}/lib:${ncurses.out}/lib \ "$f" || true fi done diff --git a/pkgs/development/compilers/ghc/6.10.2-binary.nix b/pkgs/development/compilers/ghc/6.10.2-binary.nix index 3ad872518f9e5..045b9142ef3bb 100644 --- a/pkgs/development/compilers/ghc/6.10.2-binary.nix +++ b/pkgs/development/compilers/ghc/6.10.2-binary.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, perl, libedit, ncurses, gmp}: +{stdenv, lib, fetchurl, perl, libedit, ncurses, gmp}: stdenv.mkDerivation rec { version = "6.10.2"; @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { '' else ""); configurePhase = '' - ./configure --prefix=$out --with-gmp-libraries=${gmp.out}/lib --with-gmp-includes=${gmp.dev or gmp}/include + ./configure --prefix=$out --with-gmp-libraries=${lib.getLib gmp}/lib --with-gmp-includes=${lib.getDev gmp}/include ''; # Stripping combined with patchelf breaks the executables (they die diff --git a/pkgs/development/compilers/go/1.4.nix b/pkgs/development/compilers/go/1.4.nix index 3a1f39eab2423..17c3cc0521778 100644 --- a/pkgs/development/compilers/go/1.4.nix +++ b/pkgs/development/compilers/go/1.4.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { sed -i 's,/usr/share/zoneinfo/,${tzdata}/share/zoneinfo/,' src/time/zoneinfo_unix.go # Find the loader dynamically - LOADER="$(find ${libc.out or libc}/lib -name ld-linux\* | head -n 1)" + LOADER="$(find ${lib.getLib libc}/lib -name ld-linux\* | head -n 1)" # Replace references to the loader find src/cmd -name asm.c -exec sed -i "s,/lib/ld-linux.*\.so\.[0-9],$LOADER," {} \; diff --git a/pkgs/development/interpreters/perl/default.nix b/pkgs/development/interpreters/perl/default.nix index f8565b9637a5b..a853ca4eb777f 100644 --- a/pkgs/development/interpreters/perl/default.nix +++ b/pkgs/development/interpreters/perl/default.nix @@ -17,8 +17,8 @@ assert enableThreading -> (stdenv ? glibc); let libc = if stdenv.cc.libc or null != null then stdenv.cc.libc else "/usr"; - libcInc = libc.dev or libc; - libcLib = libc.out or libc; + libcInc = lib.getDev libc; + libcLib = lib.getLib libc; common = { version, sha256 }: stdenv.mkDerivation rec { name = "perl-${version}"; diff --git a/pkgs/development/interpreters/pypy/default.nix b/pkgs/development/interpreters/pypy/default.nix index 095e0b7db08e3..fdbf7b1bab634 100644 --- a/pkgs/development/interpreters/pypy/default.nix +++ b/pkgs/development/interpreters/pypy/default.nix @@ -25,10 +25,9 @@ let ++ stdenv.lib.optional (stdenv ? cc && stdenv.cc.libc != null) stdenv.cc.libc ++ stdenv.lib.optional zlibSupport zlib; - C_INCLUDE_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p.dev or p}/include") buildInputs); - LIBRARY_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p.lib or p.out or p}/lib") buildInputs); - LD_LIBRARY_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p.lib or p.out or p}/lib") - (stdenv.lib.filter (x : x.outPath != stdenv.cc.libc.outPath or "") buildInputs)); + C_INCLUDE_PATH = stdenv.lib.makeSearchPathOutput "dev" "include" buildInputs; + LIBRARY_PATH = stdenv.lib.makeLibraryPath buildInputs; + LD_LIBRARY_PATH = stdenv.lib.makeLibraryPath (stdenv.lib.filter (x : x.outPath != stdenv.cc.libc.outPath or "") buildInputs); preConfigure = '' # hint pypy to find nix ncurses diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix index 96b44ddc17f38..2196bb7e8b86b 100644 --- a/pkgs/development/interpreters/python/2.6/default.nix +++ b/pkgs/development/interpreters/python/2.6/default.nix @@ -53,8 +53,8 @@ let ++ optional zlibSupport zlib; mkPaths = paths: { - C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p.dev or p}/include") paths); - LIBRARY_PATH = concatStringsSep ":" (map (p: "${p.lib or (p.out or p)}/lib") paths); + C_INCLUDE_PATH = makeSearchPathOutput "dev" "include" paths; + LIBRARY_PATH = makeLibraryPath paths; }; # Build the basic Python interpreter without modules that have diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix index f1ae897ea4ac1..6b336766db786 100644 --- a/pkgs/development/interpreters/python/2.7/default.nix +++ b/pkgs/development/interpreters/python/2.7/default.nix @@ -102,8 +102,8 @@ let propagatedBuildInputs = optional stdenv.isDarwin configd; mkPaths = paths: { - C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p.dev or p}/include") paths); - LIBRARY_PATH = concatStringsSep ":" (map (p: "${p.lib or (p.out or p)}/lib") paths); + C_INCLUDE_PATH = makeSearchPathOutput "dev" "include" paths; + LIBRARY_PATH = makeLibraryPath paths; }; # Build the basic Python interpreter without modules that have diff --git a/pkgs/development/interpreters/python/3.2/default.nix b/pkgs/development/interpreters/python/3.2/default.nix index c0b5d3401ddd3..91f962efcf4a8 100644 --- a/pkgs/development/interpreters/python/3.2/default.nix +++ b/pkgs/development/interpreters/python/3.2/default.nix @@ -44,8 +44,8 @@ stdenv.mkDerivation { ${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''} configureFlagsArray=( --enable-shared --with-threads --with-wide-unicode - CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" + CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" + LDFLAGS="${makeLibraryPath buildInputs}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix index a46ef7c056b2d..b9cb46562122a 100644 --- a/pkgs/development/interpreters/python/3.3/default.nix +++ b/pkgs/development/interpreters/python/3.3/default.nix @@ -46,8 +46,8 @@ stdenv.mkDerivation { ${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" + CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" + LDFLAGS="${makeLibraryPath buildInputs}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/python/3.4/default.nix b/pkgs/development/interpreters/python/3.4/default.nix index 8d87c6abfbb4e..6a3ab25c5d409 100644 --- a/pkgs/development/interpreters/python/3.4/default.nix +++ b/pkgs/development/interpreters/python/3.4/default.nix @@ -58,8 +58,8 @@ stdenv.mkDerivation { ''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" + CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" + LDFLAGS="${makeLibraryPath buildInputs}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix index 4bc39f4c2b3a7..504c85ac38d2b 100644 --- a/pkgs/development/interpreters/python/3.5/default.nix +++ b/pkgs/development/interpreters/python/3.5/default.nix @@ -58,8 +58,8 @@ stdenv.mkDerivation { ''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" + CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" + LDFLAGS="${makeLibraryPath buildInputs}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/tools/build-managers/cmake/default.nix b/pkgs/development/tools/build-managers/cmake/default.nix index 9d0ff6e1f1746..e1528aa5f0099 100644 --- a/pkgs/development/tools/build-managers/cmake/default.nix +++ b/pkgs/development/tools/build-managers/cmake/default.nix @@ -47,9 +47,9 @@ stdenv.mkDerivation rec { '' fixCmakeFiles . substituteInPlace Modules/Platform/UnixPaths.cmake \ - --subst-var-by glibc_bin ${glibc.bin or glibc} \ - --subst-var-by glibc_dev ${glibc.dev or glibc} \ - --subst-var-by glibc_lib ${glibc.out or glibc} + --subst-var-by glibc_bin ${getBin glibc} \ + --subst-var-by glibc_dev ${getDev glibc} \ + --subst-var-by glibc_lib ${getLib glibc} ''; configureFlags = [ "--docdir=/share/doc/${name}" diff --git a/pkgs/misc/emulators/wine/base.nix b/pkgs/misc/emulators/wine/base.nix index 804eb0bb304c5..0398ed57a7026 100644 --- a/pkgs/misc/emulators/wine/base.nix +++ b/pkgs/misc/emulators/wine/base.nix @@ -32,9 +32,10 @@ stdenv.mkDerivation ((lib.optionalAttrs (! isNull buildScript) { # them to the RPATH so that the user doesn't have to set them in # LD_LIBRARY_PATH. NIX_LDFLAGS = map (path: "-rpath " + path) ( - map (x: "${x}/lib") ([ stdenv.cc.cc ] ++ (map (x: x.lib or x.out) buildInputs)) + map (x: "${lib.getLib x}/lib") ([ stdenv.cc.cc ] ++ 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: "${lib.getLib x}/lib/pulseaudio") + (toBuildInputs pkgArches (pkgs: [ pkgs.libpulseaudio ]))) ); # Don't shrink the ELF RPATHs in order to keep the extra RPATH diff --git a/pkgs/stdenv/darwin/make-bootstrap-tools.nix b/pkgs/stdenv/darwin/make-bootstrap-tools.nix index 561dcc7fdfda1..40f26dc2450b1 100644 --- a/pkgs/stdenv/darwin/make-bootstrap-tools.nix +++ b/pkgs/stdenv/darwin/make-bootstrap-tools.nix @@ -62,7 +62,7 @@ rec { cp -d ${openssl.out}/lib/*.dylib $out/lib cp -d ${gnugrep.pcre.out}/lib/libpcre*.dylib $out/lib - cp -d ${libiconv.lib or libiconv}/lib/lib*.dylib $out/lib + cp -d ${lib.getLib libiconv}/lib/lib*.dylib $out/lib cp -d ${gettext}/lib/libintl*.dylib $out/lib chmod +x $out/lib/libintl*.dylib cp -d ${ncurses.out}/lib/libncurses*.dylib $out/lib diff --git a/pkgs/stdenv/generic/default.nix b/pkgs/stdenv/generic/default.nix index 547541d28246e..5d3b1682f3960 100644 --- a/pkgs/stdenv/generic/default.nix +++ b/pkgs/stdenv/generic/default.nix @@ -223,7 +223,7 @@ let # include it in the result, it *is* available to nix-env for queries. meta = { } # If the packager hasn't specified `outputsToInstall`, choose a default, - # namely `p.bin or p.out or p`; + # namely `lib.getBin p`; # if he has specified it, it will be overridden below in `// meta`. # Note: This default probably shouldn't be globally configurable. # Services and users should specify outputs explicitly, -- cgit 1.4.1 From 96a5c34bc5736780f84a62e682c59da50e531f0e Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 25 Apr 2016 13:21:15 +0300 Subject: cmake2_8: use get(Output) functions --- pkgs/development/tools/build-managers/cmake/2.8.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/build-managers/cmake/2.8.nix b/pkgs/development/tools/build-managers/cmake/2.8.nix index 6542c9ae3c52a..885e10b465ae4 100644 --- a/pkgs/development/tools/build-managers/cmake/2.8.nix +++ b/pkgs/development/tools/build-managers/cmake/2.8.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = optional wantPS ps; - CMAKE_PREFIX_PATH = stdenv.lib.concatStringsSep ":" + CMAKE_PREFIX_PATH = concatStringsSep ":" (concatMap (p: [ p p.out ]) buildInputs); configureFlags = @@ -63,9 +63,9 @@ stdenv.mkDerivation rec { source $setupHook fixCmakeFiles . substituteInPlace Modules/Platform/UnixPaths.cmake \ - --subst-var-by glibc_bin ${glibc.bin or glibc} \ - --subst-var-by glibc_dev ${glibc.dev or glibc} \ - --subst-var-by glibc_lib ${glibc.out or glibc} + --subst-var-by glibc_bin ${getBin glibc} \ + --subst-var-by glibc_dev ${getDev glibc} \ + --subst-var-by glibc_lib ${getLib glibc} ''; meta = { -- cgit 1.4.1 From c7377b0e4a5fb3cf44c334c2353adc96e0e82918 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Mon, 25 Apr 2016 17:12:49 +0200 Subject: zlib, bash: mass-rebuild cleanup --- pkgs/development/libraries/zlib/default.nix | 3 --- pkgs/shells/bash/default.nix | 4 +--- 2 files changed, 1 insertion(+), 6 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/zlib/default.nix b/pkgs/development/libraries/zlib/default.nix index 59713bb8d205e..92bde5deb9736 100644 --- a/pkgs/development/libraries/zlib/default.nix +++ b/pkgs/development/libraries/zlib/default.nix @@ -64,9 +64,6 @@ stdenv.mkDerivation rec { makeFlags = [ "RANLIB=${stdenv.cross.config}-ranlib" ]; }; - # CYGXXX: This is not needed anymore and non-functional, but left not to trigger rebuilds - cygwinConfigureEnableShared = if (!stdenv.isCygwin) then true else null; - passthru.version = version; meta = with stdenv.lib; { diff --git a/pkgs/shells/bash/default.nix b/pkgs/shells/bash/default.nix index 2fa229692eb3c..49d149eb183c8 100644 --- a/pkgs/shells/bash/default.nix +++ b/pkgs/shells/bash/default.nix @@ -21,9 +21,7 @@ stdenv.mkDerivation rec { inherit sha256; }; - outputs = if (!interactive) # conditional to avoid mass rebuild ATM - then [ "out" "doc" ] - else [ "out" "doc" "info" ]; + outputs = [ "out" "doc" "info" ]; # the man pages are small and useful enough outputMan = if interactive then "out" else null; -- cgit 1.4.1 From 26f90102b897bab14d05bbd8c2385f619d04d8fa Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 16 Apr 2016 19:26:31 +0300 Subject: openssl: fix indentation --- pkgs/development/libraries/openssl/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index 1e0f419c5f73c..304b575eb925b 100644 --- a/pkgs/development/libraries/openssl/default.nix +++ b/pkgs/development/libraries/openssl/default.nix @@ -57,20 +57,20 @@ let rm "$out/lib/"*.a fi - mkdir -p $bin - mv $out/bin $bin/ + mkdir -p $bin + mv $out/bin $bin/ - mkdir $dev - mv $out/include $dev/ + mkdir $dev + mv $out/include $dev/ # remove dependency on Perl at runtime - rm -r $out/etc/ssl/misc + rm -r $out/etc/ssl/misc rmdir $out/etc/ssl/{certs,private} ''; postFixup = '' - # Check to make sure the main output doesn't depend on perl + # Check to make sure the main output doesn't depend on perl if grep -r '${perl}' $out; then echo "Found an erroneous dependency on perl ^^^" >&2 exit 1 -- cgit 1.4.1 From bb9fa90dca09fc02f5bdd0548c3e7d156b02da80 Mon Sep 17 00:00:00 2001 From: Allen Nelson Date: Mon, 25 Apr 2016 11:48:47 -0500 Subject: gnum4: disable tests --- pkgs/development/tools/misc/gnum4/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/misc/gnum4/default.nix b/pkgs/development/tools/misc/gnum4/default.nix index 7216e1e169d05..eda98091fc64c 100644 --- a/pkgs/development/tools/misc/gnum4/default.nix +++ b/pkgs/development/tools/misc/gnum4/default.nix @@ -8,10 +8,7 @@ stdenv.mkDerivation rec { sha256 = "0w0da1chh12mczxa5lnwzjk9czi3dq6gnnndbpa6w4rj76b1yklf"; }; - doCheck = !stdenv.isDarwin - && !stdenv.isCygwin # XXX: `test-dup2' fails on Cygwin - && !stdenv.isSunOS # XXX: `test-setlocale2.sh' fails - && !stdenv.isFreeBSD; # XXX: test 084 fails + doCheck = false; configureFlags = "--with-syscmd-shell=${stdenv.shell}"; -- cgit 1.4.1 From db3ffaa8f0e335c305936313fb658a7482c283cc Mon Sep 17 00:00:00 2001 From: Allen Nelson Date: Mon, 25 Apr 2016 11:55:43 -0500 Subject: httpretty: working build for python3 --- pkgs/development/python-modules/httpretty/setup.py.patch | 11 +++++++++++ pkgs/top-level/python-packages.nix | 4 +++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/python-modules/httpretty/setup.py.patch (limited to 'pkgs/development') diff --git a/pkgs/development/python-modules/httpretty/setup.py.patch b/pkgs/development/python-modules/httpretty/setup.py.patch new file mode 100644 index 0000000000000..e07ba931705b8 --- /dev/null +++ b/pkgs/development/python-modules/httpretty/setup.py.patch @@ -0,0 +1,11 @@ +--- setup.py 2016-04-18 10:44:27.915536022 -0500 ++++ setup-new.py 2016-04-18 10:44:13.515537377 -0500 +@@ -75,7 +75,7 @@ + + + local_file = lambda *f: \ +- open(os.path.join(os.path.dirname(__file__), *f)).read() ++ open(os.path.join(os.path.dirname(__file__), *f), encoding="utf-8").read() + + + install_requires, dependency_links = \ diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9e3605827d3fc..89b8bebf9c049 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10420,7 +10420,6 @@ in modules // { httpretty = buildPythonPackage rec { name = "httpretty-${version}"; version = "0.8.6"; - disabled = isPy3k; doCheck = false; src = pkgs.fetchurl { @@ -10442,6 +10441,9 @@ in modules // { --- 566 ---- ! 'content-length': str(len(self.body)) DIFF + + # Explicit encoding flag is required with python3, unless locale is set. + patch -p0 -i ${../development/python-modules/httpretty/setup.py.patch} ''; meta = { -- cgit 1.4.1 From 6a64edfa0e38b599ee15f7582d3dbe62b2b884af Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 24 Apr 2016 07:39:30 -0500 Subject: gstreamer-1.0: multiple outputs --- pkgs/development/libraries/gstreamer/bad/default.nix | 2 ++ pkgs/development/libraries/gstreamer/base/default.nix | 4 +++- pkgs/development/libraries/gstreamer/core/default.nix | 7 +++++++ pkgs/development/libraries/gstreamer/ges/default.nix | 2 ++ pkgs/development/libraries/gstreamer/gnonlin/default.nix | 2 ++ pkgs/development/libraries/gstreamer/good/default.nix | 7 +++++++ pkgs/development/libraries/gstreamer/gstreamermm/default.nix | 6 ++++-- pkgs/development/libraries/gstreamer/libav/default.nix | 2 ++ pkgs/development/libraries/gstreamer/python/default.nix | 2 ++ pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix | 2 ++ pkgs/development/libraries/gstreamer/ugly/default.nix | 2 ++ pkgs/development/libraries/gstreamer/vaapi/default.nix | 2 ++ pkgs/development/libraries/gstreamer/validate/default.nix | 2 ++ 13 files changed, 39 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/gstreamer/bad/default.nix b/pkgs/development/libraries/gstreamer/bad/default.nix index add3026275f69..c47de95c2ad0d 100644 --- a/pkgs/development/libraries/gstreamer/bad/default.nix +++ b/pkgs/development/libraries/gstreamer/bad/default.nix @@ -34,6 +34,8 @@ stdenv.mkDerivation rec { sha256 = "03m99igngm37653353n5d724bcqw7p6hw6xjw0i2824523fpcqqi"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig python ]; buildInputs = [ diff --git a/pkgs/development/libraries/gstreamer/base/default.nix b/pkgs/development/libraries/gstreamer/base/default.nix index b2fff30197c26..176eb404f004a 100644 --- a/pkgs/development/libraries/gstreamer/base/default.nix +++ b/pkgs/development/libraries/gstreamer/base/default.nix @@ -18,6 +18,8 @@ stdenv.mkDerivation rec { sha256 = "08hmg7fp519wim1fm04r7f2q2020ssdninawqsbrqjsvs70srh5b"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig python gobjectIntrospection ]; @@ -31,7 +33,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ gstreamer ]; - configureFlags = if stdenv.isDarwin then [ + configureFlags = if stdenv.isDarwin then [ # Does not currently build on Darwin "--disable-libvisual" # Undefined symbols _cdda_identify and _cdda_identify_scsi in cdparanoia diff --git a/pkgs/development/libraries/gstreamer/core/default.nix b/pkgs/development/libraries/gstreamer/core/default.nix index 40caf4093f05f..162f407dd59ee 100644 --- a/pkgs/development/libraries/gstreamer/core/default.nix +++ b/pkgs/development/libraries/gstreamer/core/default.nix @@ -17,6 +17,8 @@ stdenv.mkDerivation rec { sha256 = "1p5y9bbrhywng0prmpxv29p6jsz6vd039d49bnc98p9b45532yll"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig perl bison flex python gobjectIntrospection makeWrapper ]; @@ -29,5 +31,10 @@ stdenv.mkDerivation rec { done ''; + preFixup = '' + moveToOutput "bin" "$dev" + moveToOutput "share/bash-completion" "$dev" + ''; + setupHook = ./setup-hook.sh; } diff --git a/pkgs/development/libraries/gstreamer/ges/default.nix b/pkgs/development/libraries/gstreamer/ges/default.nix index e47ecfa01aa3c..0b48d87b90a95 100644 --- a/pkgs/development/libraries/gstreamer/ges/default.nix +++ b/pkgs/development/libraries/gstreamer/ges/default.nix @@ -17,6 +17,8 @@ stdenv.mkDerivation rec { sha256 = "1gisdfa91kq89bsmbvb47alaxh8lpqmr6f3dzlwmf389nkandw2h"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig python gobjectIntrospection flex perl ]; propagatedBuildInputs = [ gnonlin libxml2 ]; diff --git a/pkgs/development/libraries/gstreamer/gnonlin/default.nix b/pkgs/development/libraries/gstreamer/gnonlin/default.nix index 9d43f3ac23c33..db29413476f68 100644 --- a/pkgs/development/libraries/gstreamer/gnonlin/default.nix +++ b/pkgs/development/libraries/gstreamer/gnonlin/default.nix @@ -22,6 +22,8 @@ stdenv.mkDerivation rec { sha256 = "0zv60rq2h736a6fivd3a3wp59dj1jar7b2vwzykahvl168b7wrid"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig ]; propagatedBuildInputs = [ gst-plugins-base ]; diff --git a/pkgs/development/libraries/gstreamer/good/default.nix b/pkgs/development/libraries/gstreamer/good/default.nix index 54175fb83fbe8..d14a99ce56bf0 100644 --- a/pkgs/development/libraries/gstreamer/good/default.nix +++ b/pkgs/development/libraries/gstreamer/good/default.nix @@ -29,6 +29,8 @@ stdenv.mkDerivation rec { sha256 = "0kczdvqxvl8kxiy2d7czv16jp73hv9k3nykh47ckihnv8x6i6362"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig python ]; buildInputs = [ @@ -40,5 +42,10 @@ stdenv.mkDerivation rec { ++ libintlOrEmpty ++ optionals stdenv.isLinux [ libv4l libpulseaudio libavc1394 libiec61883 ]; + preFixup = '' + mkdir -p "$dev/lib/gstreamer-1.0" + mv "$out/lib/gstreamer-1.0/"*.la "$dev/lib/gstreamer-1.0" + ''; + LDFLAGS = optionalString stdenv.isDarwin "-lintl"; } diff --git a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix index 692310be0bad2..9b7db6d47324e 100644 --- a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix +++ b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix @@ -11,13 +11,15 @@ stdenv.mkDerivation rec { url = "mirror://gnome/sources/gstreamermm/${ver_maj}/${name}.tar.xz"; sha256 = "0bj6and9b26d32bq90l8nx5wqh2ikkh8dm7qwxyxfdvmrzhixhgi"; }; - + + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig file ]; propagatedBuildInputs = [ glibmm gst_all_1.gst-plugins-base ]; enableParallelBuilding = true; - + meta = with stdenv.lib; { description = "C++ interface for GStreamer"; homepage = http://gstreamer.freedesktop.org/bindings/cplusplus.html; diff --git a/pkgs/development/libraries/gstreamer/libav/default.nix b/pkgs/development/libraries/gstreamer/libav/default.nix index e4daa642ba06b..ad3bdb81858e2 100644 --- a/pkgs/development/libraries/gstreamer/libav/default.nix +++ b/pkgs/development/libraries/gstreamer/libav/default.nix @@ -22,6 +22,8 @@ stdenv.mkDerivation rec { sha256 = "0719njp8aarhvn038pijq6dmsnli0zlg146hyfs3rsdffs4f472s"; }; + outputs = [ "dev" "out" ]; + configureFlags = stdenv.lib.optionalString withSystemLibav "--with-system-libav"; diff --git a/pkgs/development/libraries/gstreamer/python/default.nix b/pkgs/development/libraries/gstreamer/python/default.nix index 5320fdfaced15..6d018c36f5695 100644 --- a/pkgs/development/libraries/gstreamer/python/default.nix +++ b/pkgs/development/libraries/gstreamer/python/default.nix @@ -16,6 +16,8 @@ stdenv.mkDerivation rec { patches = [ ./different-path-with-pygobject.patch ]; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig python ]; # XXX: in the Libs.private field of python3.pc diff --git a/pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix b/pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix index 3bd840dcd7eee..675fdf322e875 100644 --- a/pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix +++ b/pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix @@ -17,6 +17,8 @@ stdenv.mkDerivation rec { }) ]; + outputs = [ "dev" "out" ]; + buildInputs = [ gst_all_1.gstreamer gst_all_1.gst-plugins-base glib qt4 ]; propagatedBuildInputs = [ boost ]; nativeBuildInputs = [ cmake automoc4 flex bison pkgconfig ]; diff --git a/pkgs/development/libraries/gstreamer/ugly/default.nix b/pkgs/development/libraries/gstreamer/ugly/default.nix index 8f8437ad4ac38..3b17c548ba213 100644 --- a/pkgs/development/libraries/gstreamer/ugly/default.nix +++ b/pkgs/development/libraries/gstreamer/ugly/default.nix @@ -25,6 +25,8 @@ stdenv.mkDerivation rec { sha256 = "137b6kqykh5nwbmiv28nn1pc1d2x2rb2xxg382pc9pa9gpxpyrak"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig python ]; buildInputs = [ diff --git a/pkgs/development/libraries/gstreamer/vaapi/default.nix b/pkgs/development/libraries/gstreamer/vaapi/default.nix index a9aa3d73fa2e7..18394193706a9 100644 --- a/pkgs/development/libraries/gstreamer/vaapi/default.nix +++ b/pkgs/development/libraries/gstreamer/vaapi/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { sha256 = "14jal2g5mf8r59w8420ixl3kg50vcmy56446ncwd0xrizd6yms5b"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = with stdenv.lib; [ pkgconfig bzip2 ]; buildInputs = [ diff --git a/pkgs/development/libraries/gstreamer/validate/default.nix b/pkgs/development/libraries/gstreamer/validate/default.nix index 1c12362166482..02ce69af907a2 100644 --- a/pkgs/development/libraries/gstreamer/validate/default.nix +++ b/pkgs/development/libraries/gstreamer/validate/default.nix @@ -17,6 +17,8 @@ stdenv.mkDerivation rec { sha256 = "1pcy9pfffyk6xiw6aq38kbv7k24x2rljdy8fabjfy1abpmvvfrkn"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig gobjectIntrospection ]; -- cgit 1.4.1 From 160bf21b3a97c1d7fb4281c4d55efad06149ae2f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 24 Apr 2016 07:58:04 -0500 Subject: librsvg: multiple outputs --- pkgs/development/libraries/librsvg/default.nix | 2 ++ pkgs/tools/inputmethods/ibus/wrapper.nix | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/librsvg/default.nix b/pkgs/development/libraries/librsvg/default.nix index 0768a21bf5436..6147e847b33d2 100644 --- a/pkgs/development/libraries/librsvg/default.nix +++ b/pkgs/development/libraries/librsvg/default.nix @@ -15,6 +15,8 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null; + outputs = [ "dev" "out" ]; + buildInputs = [ libxml2 libgsf bzip2 libcroco pango libintlOrEmpty ] ++ stdenv.lib.optional enableIntrospection [ gobjectIntrospection ]; diff --git a/pkgs/tools/inputmethods/ibus/wrapper.nix b/pkgs/tools/inputmethods/ibus/wrapper.nix index 632f46f81e94e..690043791b203 100644 --- a/pkgs/tools/inputmethods/ibus/wrapper.nix +++ b/pkgs/tools/inputmethods/ibus/wrapper.nix @@ -23,7 +23,7 @@ let for prog in ibus ibus-daemon ibus-setup; do wrapProgram "$out/bin/$prog" \ - --prefix GDK_PIXBUF_MODULE_FILE : ${librsvg}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache \ + --prefix GDK_PIXBUF_MODULE_FILE : ${librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache \ --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH:$out/lib/girepository-1.0" \ --prefix GIO_EXTRA_MODULES : "${dconf}/lib/gio/modules" \ --set IBUS_COMPONENT_PATH "$out/share/ibus/component/" \ -- cgit 1.4.1 From f11c043fa2bded6ec2588a5be8cf49434891081c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 24 Apr 2016 12:20:28 -0500 Subject: glibmm: multiple outputs --- pkgs/development/libraries/glibmm/default.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/glibmm/default.nix b/pkgs/development/libraries/glibmm/default.nix index 8417179dde199..6d15faf954900 100644 --- a/pkgs/development/libraries/glibmm/default.nix +++ b/pkgs/development/libraries/glibmm/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { sha256 = "c78654addeb27a1213bedd7cd21904a45bbb98a5ba2f2f0de2b2f1a5682d86cf"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig gnum4 ]; propagatedBuildInputs = [ glib libsigcxx ]; -- cgit 1.4.1 From 668f93c719773a66448a757de80bb166b38c729c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 25 Apr 2016 06:51:01 -0500 Subject: xcb-util-cursor: multiple outputs --- pkgs/development/libraries/xcb-util-cursor/HEAD.nix | 6 ++++-- pkgs/servers/x11/xorg/overrides.nix | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/xcb-util-cursor/HEAD.nix b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix index cf14490c5147b..8bd7a90ad5a61 100644 --- a/pkgs/development/libraries/xcb-util-cursor/HEAD.nix +++ b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, bashInteractive, autoconf, automake, libtool, pkgconfig +{ stdenv, fetchgit, autoconf, automake, libtool, pkgconfig , git, xorg, gnum4, libxcb, gperf }: stdenv.mkDerivation rec { @@ -18,6 +18,8 @@ stdenv.mkDerivation rec { platforms = platforms.linux ++ platforms.darwin; }; + outputs = [ "dev" "out" ]; + buildInputs = [ autoconf automake @@ -34,6 +36,6 @@ stdenv.mkDerivation rec { configurePhase = '' sed -i '15 i\ LT_INIT' configure.ac - ${bashInteractive}/bin/bash autogen.sh --prefix="$out" + ${stdenv.shell} autogen.sh --prefix="$out" ''; } diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index a0405ec077f32..a19f479bf2eaf 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -265,6 +265,7 @@ in }; xcbutilcursor = attrs: attrs // { + outputs = [ "dev" "out" ]; meta.maintainers = [ stdenv.lib.maintainers.lovek323 ]; }; -- cgit 1.4.1 From b06f9aa015521bb41e516e01a60d427a0ab7e178 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 25 Apr 2016 06:51:15 -0500 Subject: openjpeg: multiple outputs --- pkgs/development/libraries/openjpeg/generic.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/openjpeg/generic.nix b/pkgs/development/libraries/openjpeg/generic.nix index 1b4b4af7f41c3..b01ff527d8cd9 100644 --- a/pkgs/development/libraries/openjpeg/generic.nix +++ b/pkgs/development/libraries/openjpeg/generic.nix @@ -25,12 +25,14 @@ in stdenv.mkDerivation rec { name = "openjpeg-${version}"; - + src = fetchurl { url = "mirror://sourceforge/openjpeg.mirror/${version}/openjpeg-${version}.tar.gz"; inherit sha256; }; + outputs = [ "dev" "out" ]; + cmakeFlags = [ "-DCMAKE_INSTALL_NAME_DIR=\${CMAKE_INSTALL_PREFIX}/lib" "-DBUILD_SHARED_LIBS=ON" -- cgit 1.4.1 From 2a16c9d52bf3aa7e0206578faf6153e42d5d671a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 25 Apr 2016 06:51:29 -0500 Subject: libzip: multiple outputs --- pkgs/development/libraries/libzip/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libzip/default.nix b/pkgs/development/libraries/libzip/default.nix index 4af9278c7b1b9..fff155ca81e77 100644 --- a/pkgs/development/libraries/libzip/default.nix +++ b/pkgs/development/libraries/libzip/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "1mcqrz37vjrfr4gnss37z1m7xih9x9miq3mms78zf7wn7as1znw3"; }; + outputs = [ "dev" "out" ]; + # fix CVE-2015-2331 taken from Debian patch: # https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=12;filename=libzip-0.11.2-1.2-nmu.diff;att=1;bug=780756 postPatch = '' @@ -22,7 +24,7 @@ stdenv.mkDerivation rec { # At least mysqlWorkbench cannot find zipconf.h; I think also openoffice # had this same problem. This links it somewhere that mysqlworkbench looks. postInstall = '' - ( cd $out/include ; ln -s ../lib/libzip/include/zipconf.h zipconf.h ) + ( cd $dev/include ; ln -s ../lib/libzip/include/zipconf.h zipconf.h ) ''; meta = { -- cgit 1.4.1 From 6651b53bddb288c6c6acb9e49ce966c455874047 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 25 Apr 2016 06:51:41 -0500 Subject: libinput: multiple outputs --- pkgs/development/libraries/libinput/default.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index 2c29482227a88..82dca85c04041 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -22,6 +22,8 @@ stdenv.mkDerivation rec { sha256 = "1wp937sn2dzqhrbl2bhapqb0pvybc80z8ynw7yfkm5ycl39skch9"; }; + outputs = [ "dev" "out" ]; + configureFlags = [ (mkFlag documentationSupport "documentation") (mkFlag eventGUISupport "event-gui") -- cgit 1.4.1 From fad200eb7ce68cdd958d1b39fb1a184aa88aa3eb Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 25 Apr 2016 06:51:53 -0500 Subject: exiv2: multiple outputs --- pkgs/development/libraries/exiv2/default.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/exiv2/default.nix b/pkgs/development/libraries/exiv2/default.nix index e1af46cc3ed0e..af17c9ae0f0fe 100644 --- a/pkgs/development/libraries/exiv2/default.nix +++ b/pkgs/development/libraries/exiv2/default.nix @@ -9,6 +9,8 @@ stdenv.mkDerivation rec { }; postPatch = "patchShebangs ./src/svn_version.sh"; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ gettext ]; propagatedBuildInputs = [ zlib expat ]; -- cgit 1.4.1 From 626e5bd4dd94b04f51638cc48ac85fc658c7cc3f Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 26 Apr 2016 10:40:39 +0200 Subject: python3: fix build after 5ff40dded, refactor The path list was passed in a format not suitable for gcc command-line. Also, let's utilize that we had `with stdenv.lib;`. /cc @abbradar. --- pkgs/development/interpreters/python/3.4/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/python/3.4/default.nix b/pkgs/development/interpreters/python/3.4/default.nix index 6a3ab25c5d409..517dfc3d8b273 100644 --- a/pkgs/development/interpreters/python/3.4/default.nix +++ b/pkgs/development/interpreters/python/3.4/default.nix @@ -35,16 +35,16 @@ stdenv.mkDerivation { pythonVersion = majorVersion; inherit majorVersion version; - buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CF configd ]; + buildInputs = optionals stdenv.isDarwin [ CF configd ]; src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz"; sha256 = "18kb5c29w04rj4gyz3jngm72sy8izfnbjlm6ajv6rv2m061d75x7"; }; - NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s"; + NIX_LDFLAGS = optionalString stdenv.isLinux "-lgcc_s"; - prePatch = stdenv.lib.optionalString stdenv.isDarwin '' + prePatch = optionalString stdenv.isDarwin '' substituteInPlace configure --replace '`/usr/bin/arch`' '"i386"' ''; @@ -58,8 +58,8 @@ stdenv.mkDerivation { ''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" - LDFLAGS="${makeLibraryPath buildInputs}" + CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; @@ -113,8 +113,8 @@ stdenv.mkDerivation { hierarchical packages; exception-based error handling; and very high level dynamic data types. ''; - license = stdenv.lib.licenses.psfl; - platforms = with stdenv.lib.platforms; linux ++ darwin; - maintainers = with stdenv.lib.maintainers; [ simons chaoflow iElectric cstrahan ]; + license = licenses.psfl; + platforms = with platforms; linux ++ darwin; + maintainers = with maintainers; [ simons chaoflow iElectric cstrahan ]; }; } -- cgit 1.4.1 From 387915e99c5c90d8200ef3e86e9f42d8568dbf31 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 26 Apr 2016 10:50:48 +0200 Subject: python3*: port the fix from parent commit I really love such copied expressions... but this case was easy compared to usual consequences of file-copying in long-running branches. --- pkgs/development/interpreters/python/3.2/default.nix | 4 ++-- pkgs/development/interpreters/python/3.3/default.nix | 4 ++-- pkgs/development/interpreters/python/3.5/default.nix | 16 ++++++++-------- 3 files changed, 12 insertions(+), 12 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/python/3.2/default.nix b/pkgs/development/interpreters/python/3.2/default.nix index 91f962efcf4a8..8a2d24d76f985 100644 --- a/pkgs/development/interpreters/python/3.2/default.nix +++ b/pkgs/development/interpreters/python/3.2/default.nix @@ -44,8 +44,8 @@ stdenv.mkDerivation { ${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''} configureFlagsArray=( --enable-shared --with-threads --with-wide-unicode - CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" - LDFLAGS="${makeLibraryPath buildInputs}" + CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix index b9cb46562122a..60d56597ea0f8 100644 --- a/pkgs/development/interpreters/python/3.3/default.nix +++ b/pkgs/development/interpreters/python/3.3/default.nix @@ -46,8 +46,8 @@ stdenv.mkDerivation { ${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" - LDFLAGS="${makeLibraryPath buildInputs}" + CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix index 504c85ac38d2b..15e02d1ab3edd 100644 --- a/pkgs/development/interpreters/python/3.5/default.nix +++ b/pkgs/development/interpreters/python/3.5/default.nix @@ -35,16 +35,16 @@ stdenv.mkDerivation { pythonVersion = majorVersion; inherit majorVersion version; - buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CF configd ]; + buildInputs = optionals stdenv.isDarwin [ CF configd ]; src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz"; sha256 = "1j95yx32ggqx8jf13h3c8qfp34ixpyg8ipqcdjmn143d6q67rmf6"; }; - NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s"; + NIX_LDFLAGS = optionalString stdenv.isLinux "-lgcc_s"; - prePatch = stdenv.lib.optionalString stdenv.isDarwin '' + prePatch = optionalString stdenv.isDarwin '' substituteInPlace configure --replace '`/usr/bin/arch`' '"i386"' ''; @@ -58,8 +58,8 @@ stdenv.mkDerivation { ''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" - LDFLAGS="${makeLibraryPath buildInputs}" + CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; @@ -113,8 +113,8 @@ stdenv.mkDerivation { hierarchical packages; exception-based error handling; and very high level dynamic data types. ''; - license = stdenv.lib.licenses.psfl; - platforms = with stdenv.lib.platforms; linux ++ darwin; - maintainers = with stdenv.lib.maintainers; [ simons chaoflow iElectric cstrahan ]; + license = licenses.psfl; + platforms = with platforms; linux ++ darwin; + maintainers = with maintainers; [ simons chaoflow iElectric cstrahan ]; }; } -- cgit 1.4.1 From 45aaea24faa8a64baaa7e17d477bb2388f9b20a0 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 21:17:23 +0300 Subject: unixODBC: 2.3.2 -> 2.3.4 --- pkgs/development/libraries/unixODBC/default.nix | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/unixODBC/default.nix b/pkgs/development/libraries/unixODBC/default.nix index ef8dcdc53290c..e40f362a3b101 100644 --- a/pkgs/development/libraries/unixODBC/default.nix +++ b/pkgs/development/libraries/unixODBC/default.nix @@ -1,10 +1,20 @@ -{stdenv, fetchurl}: +{ stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "unixODBC-2.3.2"; + name = "unixODBC-${version}"; + version = "2.3.4"; + src = fetchurl { url = "ftp://ftp.unixodbc.org/pub/unixODBC/${name}.tar.gz"; - sha256 = "16jw5fq7wgfky6ak1h2j2pqx99jivsdl4q8aq6immpr55xs5jd4w"; + sha256 = "0f8y88rcc2akjvjv5y66yx7k0ms9h1s0vbcfy25j93didflhj59f"; + }; + + configureFlags = [ "--disable-gui" "--sysconfdir=/etc" ]; + + meta = with stdenv.lib; { + description = "ODBC driver manager for Unix"; + homepage = http://www.unixodbc.org/; + license = licenses.lgpl2; + platforms = platforms.linux; }; - configureFlags = "--disable-gui --sysconfdir=/etc"; } -- cgit 1.4.1 From 1a3f7d553d4b5fe78f5f186a08ded841a85c45a1 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 21:18:01 +0300 Subject: unixODBCDrivers: update and refactor, mark mysql packages as broken --- .../libraries/unixODBCDrivers/default.nix | 223 +++++++++++---------- 1 file changed, 119 insertions(+), 104 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/unixODBCDrivers/default.nix b/pkgs/development/libraries/unixODBCDrivers/default.nix index d3a2debbd121d..80b39bd4cabce 100644 --- a/pkgs/development/libraries/unixODBCDrivers/default.nix +++ b/pkgs/development/libraries/unixODBCDrivers/default.nix @@ -1,115 +1,130 @@ -{fetchurl, stdenv, unixODBC, glibc, libtool, openssl, zlib, postgresql, mysql, sqlite}: -# each attr contains the name deriv referencing the derivation and ini which -# evaluates to a string which can be appended to the global unix odbc ini file -# to register the driver +{ fetchurl, stdenv, unixODBC, cmake, postgresql, mysql55, mariadb, sqlite, zlib, libxml2 }: + # I haven't done any parameter tweaking.. So the defaults provided here might be bad + { -# new postgres connector library (doesn't work yet) - psqlng = rec { - deriv = stdenv.mkDerivation { - name = "unix-odbc-pg-odbcng-0.90.101"; - buildInputs = [ unixODBC glibc libtool postgresql ]; - # added -ltdl to resolve missing references `dlsym' `dlerror' `dlopen' `dlclose' - preConfigure=" - export CPPFLAGS=-I${unixODBC}/include - export LDFLAGS='-L${unixODBC}/lib -lltdl' - "; - src = fetchurl { - # using my mirror because original url is https - # https://projects.commandprompt.com/public/odbcng/attachment/wiki/Downloads/odbcng-0.90.101.tar.gz"; - url = http://mawercer.de/~publicrepos/odbcng-0.90.101.tar.gz; - sha256 = "13z3sify4z2jcil379704w0knkpflg6di4jh6zx1x2gdgzydxa1y"; - }; - meta = { - description = "unix odbc driver for postgresql"; - homepage = https://projects.commandprompt.com/public/odbcng; - license = stdenv.lib.licenses.gpl2; - }; + psql = stdenv.mkDerivation rec { + name = "psqlodbc-${version}"; + version = "09.05.0210"; + + src = fetchurl { + url = "http://ftp.postgresql.org/pub/odbc/versions/src/${name}.tar.gz"; + sha256 = "0317zrxaiy209xzcc6b5sz6hsyiv4zm74iikp91rgz7z3ll4n4dc"; + }; + + buildInputs = [ unixODBC postgresql ]; + + passthru = { + fancyName = "PostgreSQL"; + driver = "lib/psqlodbcw.so"; + }; + + meta = with stdenv.lib; { + description = "Official PostgreSQL ODBC Driver"; + homepage = https://odbc.postgresql.org/; + license = licenses.lgpl2; + platforms = platforms.linux; }; - ini = ""; }; -# official postgres connector - psql = rec { - deriv = stdenv.mkDerivation rec { - name = "psqlodbc-09.03.0100"; - buildInputs = [ unixODBC libtool postgresql openssl ]; - preConfigure=" - export CPPFLAGS=-I${unixODBC}/include - export LDFLAGS='-L${unixODBC}/lib -lltdl' - "; - # added -ltdl to resolve missing references `dlsym' `dlerror' `dlopen' `dlclose' + + mariadb = stdenv.mkDerivation rec { + name = "mariadb-connector-odbc-${version}"; + version = "2.0.10"; + src = fetchurl { - url = "http://ftp.postgresql.org/pub/odbc/versions/src/${name}.tar.gz"; - sha256 = "0mh10chkmlppidnmvgbp47v5jnphsrls28zwbvyk2crcn8gdx9q1"; + url = "https://downloads.mariadb.org/interstitial/connector-odbc-${version}/src/${name}-ga-src.tar.gz"; + sha256 = "0b6ximy0dg0xhqbrm1l7pn8hjapgpmddi67kh54h6i9cq9hqfdvz"; + }; + + nativeBuildInputs = [ cmake ]; + buildInputs = [ unixODBC mariadb ]; + + cmakeFlags = [ + "-DMARIADB_INCLUDE_DIR=${mariadb.lib}/include/mysql" + ]; + + preConfigure = '' + sed -i \ + -e 's,mariadb_config,mysql_config,g' \ + -e 's,libmariadbclient,libmysqlclient,g' \ + cmake/FindMariaDB.cmake + ''; + + passthru = { + fancyName = "MariaDB"; + driver = "lib/libmyodbc3-3.51.12.so"; }; - meta = { - description = "unix odbc driver for postgresql"; - homepage = http://pgfoundry.org/projects/psqlodbc/; - license = "LGPL"; + + meta = with stdenv.lib; { + description = "MariaDB ODBC database driver"; + homepage = https://downloads.mariadb.org/connector-odbc/; + license = licenses.gpl2; + platforms = platforms.linux; + broken = true; + }; + }; + + mysql = stdenv.mkDerivation rec { + name = "mysql-connector-odbc-${version}"; + majorVersion = "5.3"; + version = "${majorVersion}.6"; + + src = fetchurl { + url = "https://dev.mysql.com/get/Downloads/Connector-ODBC/${majorVersion}/${name}-src.tar.gz"; + sha256 = "1smi4z49i4zm7cmykjkwlxxzqvn7myngsw5bc35z6gqxmi8c55xr"; + }; + + nativeBuildInputs = [ cmake ]; + buildInputs = [ unixODBC mysql55 ]; + + cmakeFlags = [ "-DWITH_UNIXODBC=1" ]; + + passthru = { + fancyName = "MySQL"; + driver = "lib/libmyodbc3-3.51.12.so"; + }; + + meta = with stdenv.lib; { + description = "MariaDB ODBC database driver"; + homepage = https://dev.mysql.com/downloads/connector/odbc/; + license = licenses.gpl2; + platforms = platforms.linux; + broken = true; }; }; - ini = - "[PostgreSQL]\n" + - "Description = official PostgreSQL driver for Linux & Win32\n" + - "Driver = ${deriv}/lib/psqlodbcw.so\n" + - "Threading = 2\n"; - }; -# mysql connector - mysql = rec { - libraries = ["lib/libmyodbc3-3.51.12.so"]; - deriv = stdenv.mkDerivation { - name = "mysql-connector-odbc-3.51.12"; - src = fetchurl { - url = http://ftp.snt.utwente.nl/pub/software/mysql/Downloads/MyODBC3/mysql-connector-odbc-3.51.12.tar.gz; - md5 = "a484f590464fb823a8f821b2f1fd7fef"; - }; - configureFlags = "--disable-gui" - + " --with-mysql-path=${mysql.lib} --with-unixODBC=${unixODBC}"; - buildInputs = [ libtool zlib ]; - inherit mysql unixODBC; + + sqlite = stdenv.mkDerivation rec { + name = "sqlite-connector-odbc-${version}"; + version = "0.9993"; + + src = fetchurl { + url = "http://www.ch-werner.de/sqliteodbc/sqliteodbc-${version}.tar.gz"; + sha256 = "0dgsj28sc7f7aprmdd0n5a1rmcx6pv7170c8dfjl0x1qsjxim6hs"; }; - ini = - "[MYSQL]\n" + - "Description = MySQL driver\n" + - "Driver = ${deriv}/lib/libmyodbc3-3.51.12.so\n" + - "CPTimeout = \n" + - "CPReuse = \n" + - "FileUsage = 3\n "; - }; - sqlite = rec { - deriv = let version = "0.995"; in - stdenv.mkDerivation { - name = "sqlite-connector-odbc-${version}"; - - src = fetchurl { - url = "http://www.ch-werner.de/sqliteodbc/sqliteodbc-${version}.tar.gz"; - sha256 = "1r97fw6xy5w2f8c0ii7blfqfi6salvd3k8wnxpx9wqc1gxk8jnyy"; - }; - - buildInputs = [ sqlite ]; - - configureFlags = "--with-sqlite3=${sqlite} --with-odbc=${unixODBC}"; - - # move libraries to $out/lib where they're expected to be - postInstall = '' - mkdir -p "$out/lib" - mv "$out"/*.so "$out/lib" - mv "$out"/*.la "$out/lib" - ''; - - meta = { - description = "ODBC driver for SQLite"; - homepage = http://www.ch-werner.de/sqliteodbc; - license = stdenv.lib.licenses.bsd2; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ vlstill ]; - }; + + buildInputs = [ unixODBC sqlite zlib libxml2 ]; + + configureFlags = [ "--with-odbc=${unixODBC}" ]; + + installTargets = [ "install-3" ]; + + # move libraries to $out/lib where they're expected to be + postInstall = '' + mkdir -p "$out/lib" + mv "$out"/*.* "$out/lib" + ''; + + passthru = { + fancyName = "SQLite"; + driver = "lib/libsqlite3odbc.so"; + }; + + meta = with stdenv.lib; { + description = "ODBC driver for SQLite"; + homepage = http://www.ch-werner.de/sqliteodbc; + license = licenses.bsd2; + platforms = platforms.linux; + maintainers = with maintainers; [ vlstill ]; }; - ini = - "[SQLite]\n" + - "Description = SQLite ODBC Driver\n" + - "Driver = ${deriv}/lib/libsqlite3odbc.so\n" + - "Setup = ${deriv}/lib/libsqlite3odbc.so\n" + - "Threading = 2\n"; - }; + }; } -- cgit 1.4.1 From 2c32607650ddb6e6adbc2b22d785139f065eb18c Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 27 Apr 2016 03:46:36 +0300 Subject: libzip: 0.11.2 -> 1.1.2 --- pkgs/development/libraries/libzip/default.nix | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libzip/default.nix b/pkgs/development/libraries/libzip/default.nix index fff155ca81e77..2afc0e47ca321 100644 --- a/pkgs/development/libraries/libzip/default.nix +++ b/pkgs/development/libraries/libzip/default.nix @@ -1,26 +1,23 @@ -{ stdenv, fetchurl, zlib }: +{ stdenv, fetchurl, perl, zlib }: stdenv.mkDerivation rec { - name = "libzip-0.11.2"; + name = "libzip-${version}"; + version = "1.1.2"; src = fetchurl { url = "http://www.nih.at/libzip/${name}.tar.gz"; - sha256 = "1mcqrz37vjrfr4gnss37z1m7xih9x9miq3mms78zf7wn7as1znw3"; + sha256 = "08b26qbfxq6z5xf36y1d8insm5valv83dhj933iag6man04prb2r"; }; outputs = [ "dev" "out" ]; - # fix CVE-2015-2331 taken from Debian patch: - # https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=12;filename=libzip-0.11.2-1.2-nmu.diff;att=1;bug=780756 - postPatch = '' - substituteInPlace lib/zip_dirent.c --replace \ - 'else if ((cd->entry=(struct zip_entry *)' \ - 'else if (nentry > ((size_t)-1)/sizeof(*(cd->entry)) || (cd->entry=(struct zip_entry *)' - cat lib/zip_dirent.c - ''; - + nativeBuildInputs = [ perl ]; propagatedBuildInputs = [ zlib ]; + preInstall = '' + patchShebangs man/handle_links + ''; + # At least mysqlWorkbench cannot find zipconf.h; I think also openoffice # had this same problem. This links it somewhere that mysqlworkbench looks. postInstall = '' -- cgit 1.4.1 From 519dd711fe33cfe73e450b5f62925e8fab955bb3 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 27 Apr 2016 03:48:59 +0300 Subject: libzip: Move directory containing zipconf.h to $dev http://hydra.nixos.org/build/34979863/nixlog/1/raw --- pkgs/development/libraries/libzip/default.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libzip/default.nix b/pkgs/development/libraries/libzip/default.nix index 2afc0e47ca321..2b962425e425e 100644 --- a/pkgs/development/libraries/libzip/default.nix +++ b/pkgs/development/libraries/libzip/default.nix @@ -21,6 +21,8 @@ stdenv.mkDerivation rec { # At least mysqlWorkbench cannot find zipconf.h; I think also openoffice # had this same problem. This links it somewhere that mysqlworkbench looks. postInstall = '' + mkdir -p $dev/lib + mv $out/lib/libzip $dev/lib/libzip ( cd $dev/include ; ln -s ../lib/libzip/include/zipconf.h zipconf.h ) ''; -- cgit 1.4.1 From 25b55e740933b4f8c76a4535e50f4afbfbc7a931 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 27 Apr 2016 04:10:42 +0300 Subject: gegl: Add platforms --- pkgs/development/libraries/gegl/default.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/gegl/default.nix b/pkgs/development/libraries/gegl/default.nix index 38432f68273a9..70b731f56dd10 100644 --- a/pkgs/development/libraries/gegl/default.nix +++ b/pkgs/development/libraries/gegl/default.nix @@ -29,5 +29,6 @@ stdenv.mkDerivation rec { description = "Graph-based image processing framework"; homepage = http://www.gegl.org; license = stdenv.lib.licenses.gpl3; + platforms = stdenv.lib.platforms.unix; }; } -- cgit 1.4.1 From 15f68398ef2195859f26da570f44d48fb17f9167 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 27 Apr 2016 04:10:54 +0300 Subject: libzip: Add platforms --- pkgs/development/libraries/libzip/default.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libzip/default.nix b/pkgs/development/libraries/libzip/default.nix index 2b962425e425e..714745c432eb5 100644 --- a/pkgs/development/libraries/libzip/default.nix +++ b/pkgs/development/libraries/libzip/default.nix @@ -29,5 +29,6 @@ stdenv.mkDerivation rec { meta = { homepage = http://www.nih.at/libzip; description = "A C library for reading, creating and modifying zip archives"; + platforms = stdenv.lib.platforms.unix; }; } -- cgit 1.4.1 From 584d884bd7010fb6a990978dec03a4ffe22d2fba Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 26 Apr 2016 21:39:57 +0300 Subject: gstreamer: Fix multiple outputs split MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Explicitly moving the files breaks them, because the wrappers reference the files by absolute path. Also this automatically moves the manpages to $dev as well. - Need to explicitly set --exec-prefix since the pkgconfig file has `toolsdir=${exec_prefix}/bin`, breaking totem: http://hydra.nixos.org/build/34980617/nixlog/1/raw ```` checking for BACKEND_TEST... yes checking GStreamer 1.0 inspection tool... no configure: error: Cannot find required GStreamer-1.0 tool 'gst-inspect-1.0'. It should be part of gstreamer-1_0-utils. Please install it. builder for ‘/nix/store/npq2ihlsdniv4j3wbyparq9byjxqdi15-totem-3.18.1.drv’ failed with exit code 1 ```` While at it, enable parallel build. --- pkgs/development/libraries/gstreamer/core/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/gstreamer/core/default.nix b/pkgs/development/libraries/gstreamer/core/default.nix index 162f407dd59ee..bbd4bcde785b6 100644 --- a/pkgs/development/libraries/gstreamer/core/default.nix +++ b/pkgs/development/libraries/gstreamer/core/default.nix @@ -18,6 +18,7 @@ stdenv.mkDerivation rec { }; outputs = [ "dev" "out" ]; + outputBin = "dev"; nativeBuildInputs = [ pkgconfig perl bison flex python gobjectIntrospection makeWrapper @@ -25,6 +26,12 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ glib ]; + enableParallelBuilding = true; + + preConfigure = '' + configureFlagsArray+=("--exec-prefix=$dev") + ''; + postInstall = '' for prog in "$out/bin/"*; do wrapProgram "$prog" --prefix GST_PLUGIN_SYSTEM_PATH : "\$(unset _tmp; for profile in \$NIX_PROFILES; do _tmp="\$profile/lib/gstreamer-1.0''$\{_tmp:+:\}\$_tmp"; done; printf "\$_tmp")" @@ -32,7 +39,6 @@ stdenv.mkDerivation rec { ''; preFixup = '' - moveToOutput "bin" "$dev" moveToOutput "share/bash-completion" "$dev" ''; -- cgit 1.4.1 From b465dc202f0ba6e5ce465c5dabca2b2a3560cad6 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 28 Apr 2016 00:41:28 +0300 Subject: boost: Kill unnecessary 'lib' output This was split in somewhere pre-2014 without the current infra which automates parts of this, in particular the output propagation. --- pkgs/applications/altcoins/bitcoin-classic.nix | 2 +- pkgs/applications/altcoins/bitcoin-xt.nix | 2 +- pkgs/applications/altcoins/bitcoin.nix | 2 +- pkgs/applications/altcoins/dashpay.nix | 2 +- pkgs/applications/altcoins/dogecoin.nix | 2 +- pkgs/applications/altcoins/litecoin.nix | 2 +- pkgs/applications/altcoins/memorycoin.nix | 2 +- pkgs/applications/altcoins/primecoin.nix | 2 +- pkgs/applications/graphics/synfigstudio/default.nix | 2 +- .../networking/instant-messengers/ekiga/default.nix | 2 +- pkgs/applications/networking/p2p/qbittorrent/default.nix | 2 +- pkgs/applications/networking/p2p/twister/default.nix | 2 +- pkgs/applications/office/libreoffice/default.nix | 2 +- pkgs/applications/office/libreoffice/still.nix | 2 +- pkgs/applications/version-management/gource/default.nix | 2 +- pkgs/applications/video/aegisub/default.nix | 2 +- pkgs/applications/video/mkvtoolnix/default.nix | 2 +- pkgs/development/interpreters/pixie/default.nix | 4 ++-- pkgs/development/libraries/audio/lvtk/default.nix | 2 +- pkgs/development/libraries/blitz/default.nix | 4 ++-- pkgs/development/libraries/boost/generic.nix | 11 +++-------- pkgs/development/libraries/folly/default.nix | 2 +- pkgs/development/libraries/libtorrent-rasterbar/generic.nix | 2 +- pkgs/development/libraries/ndn-cxx/default.nix | 2 +- pkgs/development/libraries/swiften/default.nix | 2 +- pkgs/development/r-modules/default.nix | 2 +- pkgs/tools/filesystems/ceph/generic.nix | 2 +- pkgs/tools/filesystems/xtreemfs/default.nix | 2 +- pkgs/tools/text/source-highlight/default.nix | 2 +- 29 files changed, 33 insertions(+), 38 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/applications/altcoins/bitcoin-classic.nix b/pkgs/applications/altcoins/bitcoin-classic.nix index 62fe419792942..0c87530850299 100644 --- a/pkgs/applications/altcoins/bitcoin-classic.nix +++ b/pkgs/applications/altcoins/bitcoin-classic.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { miniupnpc utillinux protobuf ] ++ optionals withGui [ qt4 qrencode ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ] + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ] ++ optionals withGui [ "--with-gui=qt4" ]; meta = { diff --git a/pkgs/applications/altcoins/bitcoin-xt.nix b/pkgs/applications/altcoins/bitcoin-xt.nix index e678d6e4acb39..fd2d2f35bcb4e 100644 --- a/pkgs/applications/altcoins/bitcoin-xt.nix +++ b/pkgs/applications/altcoins/bitcoin-xt.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec{ ++ optionals withGui [ qt4 qrencode ]; configureFlags = [ - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--with-libcurl-headers=${curl.dev}/include" ] ++ optionals withGui [ "--with-gui=qt4" ]; diff --git a/pkgs/applications/altcoins/bitcoin.nix b/pkgs/applications/altcoins/bitcoin.nix index 1a57463571134..7b4e7d54f323e 100644 --- a/pkgs/applications/altcoins/bitcoin.nix +++ b/pkgs/applications/altcoins/bitcoin.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec{ ++ optionals stdenv.isLinux [ utillinux ] ++ optionals withGui [ qt4 qrencode ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ] + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ] ++ optionals withGui [ "--with-gui=qt4" ]; meta = { diff --git a/pkgs/applications/altcoins/dashpay.nix b/pkgs/applications/altcoins/dashpay.nix index 2e9f17017a2df..ef42560ee9aa0 100644 --- a/pkgs/applications/altcoins/dashpay.nix +++ b/pkgs/applications/altcoins/dashpay.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig autoreconfHook glib openssl db48 yasm boost zlib miniupnpc protobuf qt4 qrencode utillinux ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ]; + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]; meta = with stdenv.lib; { version = "0.12.0.55"; diff --git a/pkgs/applications/altcoins/dogecoin.nix b/pkgs/applications/altcoins/dogecoin.nix index cf2f25bfeeef7..c74f7ce7f2414 100644 --- a/pkgs/applications/altcoins/dogecoin.nix +++ b/pkgs/applications/altcoins/dogecoin.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { ''; configureFlags = [ "--with-incompatible-bdb" - "--with-boost-libdir=${boost.lib}/lib" ] + "--with-boost-libdir=${boost.out}/lib" ] ++ optionals withGui [ "--with-gui" ]; meta = { diff --git a/pkgs/applications/altcoins/litecoin.nix b/pkgs/applications/altcoins/litecoin.nix index 4e0198b972d41..38e671e899409 100644 --- a/pkgs/applications/altcoins/litecoin.nix +++ b/pkgs/applications/altcoins/litecoin.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { openssl db48 boost zlib miniupnpc glib protobuf utillinux ] ++ optionals withGui [ qt4 qrencode ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ] + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ] ++ optionals withGui [ "--with-gui=qt4" ]; meta = with stdenv.lib; { diff --git a/pkgs/applications/altcoins/memorycoin.nix b/pkgs/applications/altcoins/memorycoin.nix index 0470fd21eaea6..d30133fa55117 100644 --- a/pkgs/applications/altcoins/memorycoin.nix +++ b/pkgs/applications/altcoins/memorycoin.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec{ miniupnpc utillinux protobuf ] ++ optionals withGui [ qt4 qmake4Hook qrencode ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ] + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ] ++ optionals withGui [ "--with-gui=qt4" ]; preBuild = optional (!withGui) "cd src; cp makefile.unix Makefile"; diff --git a/pkgs/applications/altcoins/primecoin.nix b/pkgs/applications/altcoins/primecoin.nix index 360a39a4fd81b..7d25a26fba25e 100644 --- a/pkgs/applications/altcoins/primecoin.nix +++ b/pkgs/applications/altcoins/primecoin.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec{ miniupnpc utillinux protobuf ] ++ optionals withGui [ qt4 qmake4Hook qrencode ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ] + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ] ++ optionals withGui [ "--with-gui=qt4" ]; preBuild = optional (!withGui) "cd src; cp makefile.unix Makefile"; diff --git a/pkgs/applications/graphics/synfigstudio/default.nix b/pkgs/applications/graphics/synfigstudio/default.nix index 0dd4eab35f1eb..28a264af965c6 100644 --- a/pkgs/applications/graphics/synfigstudio/default.nix +++ b/pkgs/applications/graphics/synfigstudio/default.nix @@ -35,7 +35,7 @@ let configureFlags = [ "--with-boost=${boost.dev}" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" ]; buildInputs = [ diff --git a/pkgs/applications/networking/instant-messengers/ekiga/default.nix b/pkgs/applications/networking/instant-messengers/ekiga/default.nix index b7b9231591174..da6bf44ced110 100644 --- a/pkgs/applications/networking/instant-messengers/ekiga/default.nix +++ b/pkgs/applications/networking/instant-messengers/ekiga/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-ldap-dir=${openldap}" "--with-libsasl2-dir=${cyrus_sasl}" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--disable-gconf" ]; diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix index 31931aa75d92f..f08595028cb32 100644 --- a/pkgs/applications/networking/p2p/qbittorrent/default.nix +++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { ++ optional guiSupport dbus_libs; configureFlags = [ - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--with-boost=${boost.dev}" (if guiSupport then "" else "--disable-gui") (if webuiSupport then "" else "--disable-webui") diff --git a/pkgs/applications/networking/p2p/twister/default.nix b/pkgs/applications/networking/p2p/twister/default.nix index d8685da8d81f8..6f8ebb994c5fd 100644 --- a/pkgs/applications/networking/p2p/twister/default.nix +++ b/pkgs/applications/networking/p2p/twister/default.nix @@ -29,7 +29,7 @@ in stdenv.mkDerivation rec { "--disable-deprecated-functions" "--enable-tests" "--enable-python-binding" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" ]; buildInputs = [ diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix index 450c15bb65e3a..c2ad0929f0167 100644 --- a/pkgs/applications/office/libreoffice/default.nix +++ b/pkgs/applications/office/libreoffice/default.nix @@ -172,7 +172,7 @@ in stdenv.mkDerivation rec { configureFlags = [ "${if withHelp then "" else "--without-help"}" "--with-boost=${boost.dev}" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--with-beanshell-jar=${bsh}" "--with-vendor=NixOS" "--with-commons-logging-jar=${commonsLogging}/share/java/commons-logging-1.2.jar" diff --git a/pkgs/applications/office/libreoffice/still.nix b/pkgs/applications/office/libreoffice/still.nix index 0e4d2d7976291..e6296bb045bb1 100644 --- a/pkgs/applications/office/libreoffice/still.nix +++ b/pkgs/applications/office/libreoffice/still.nix @@ -172,7 +172,7 @@ in stdenv.mkDerivation rec { configureFlags = [ "${if withHelp then "" else "--without-help"}" "--with-boost=${boost.dev}" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--with-beanshell-jar=${bsh}" "--with-vendor=NixOS" "--with-commons-logging-jar=${commonsLogging}/share/java/commons-logging-1.2.jar" diff --git a/pkgs/applications/version-management/gource/default.nix b/pkgs/applications/version-management/gource/default.nix index 82b3f7aed0950..0e30f0239bfc5 100644 --- a/pkgs/applications/version-management/gource/default.nix +++ b/pkgs/applications/version-management/gource/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { boost glm ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ]; + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]; NIX_CFLAGS_COMPILE = "-fpermissive " + # fix build with newer gcc versions "-std=c++11"; # fix build with glm >= 0.9.6.0 diff --git a/pkgs/applications/video/aegisub/default.nix b/pkgs/applications/video/aegisub/default.nix index a5c14d0888ff4..92a2f4fb63433 100644 --- a/pkgs/applications/video/aegisub/default.nix +++ b/pkgs/applications/video/aegisub/default.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { buildInputs = with stdenv.lib; [ pkgconfig intltool libX11 wxGTK fontconfig freetype mesa - libass fftw ffms ffmpeg zlib icu boost boost.lib libiconv + libass fftw ffms ffmpeg zlib icu boost boost.out libiconv ] ++ optional spellcheckSupport hunspell ++ optional automationSupport lua diff --git a/pkgs/applications/video/mkvtoolnix/default.nix b/pkgs/applications/video/mkvtoolnix/default.nix index 05bd5ad980bdb..ca86906d3e198 100644 --- a/pkgs/applications/video/mkvtoolnix/default.nix +++ b/pkgs/applications/video/mkvtoolnix/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-magic" "--enable-optimization" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--disable-debug" "--disable-profiling" "--disable-precompiled-headers" diff --git a/pkgs/development/interpreters/pixie/default.nix b/pkgs/development/interpreters/pixie/default.nix index c4086078d7d6b..6a7424eb5cdff 100644 --- a/pkgs/development/interpreters/pixie/default.nix +++ b/pkgs/development/interpreters/pixie/default.nix @@ -22,7 +22,7 @@ let url = "https://bitbucket.org/pypy/pypy/get/${pypy-tag}.tar.bz2"; sha256 = "1cs9xqs1rmzdcnwxxkbvy064s5cbp6vvzhn2jmyzh5kg4di1r3bn"; }; - libs = [ libffi libedit libuv boost.dev boost.lib zlib ]; + libs = [ libffi libedit libuv boost.dev boost.out zlib ]; include-path = stdenv.lib.concatStringsSep ":" (map (p: "${p}/include") libs); library-path = stdenv.lib.concatStringsSep ":" @@ -47,7 +47,7 @@ let patchPhase = '' (cd pixie-src patch -p1 < ${./load_paths.patch} - libraryPaths='["${libuv}" "${libedit}" "${libffi}" "${boost.dev}" "${boost.lib}" "${zlib}"]' + libraryPaths='["${libuv}" "${libedit}" "${libffi}" "${boost.dev}" "${boost.out}" "${zlib}"]' export libraryPaths substituteAllInPlace ./pixie/ffi-infer.pxi) ''; diff --git a/pkgs/development/libraries/audio/lvtk/default.nix b/pkgs/development/libraries/audio/lvtk/default.nix index 401743ac517fa..a56425b8425be 100644 --- a/pkgs/development/libraries/audio/lvtk/default.nix +++ b/pkgs/development/libraries/audio/lvtk/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { configurePhase = '' python waf configure --prefix=$out \ --boost-includes="${boost.dev}/include" \ - --boost-libs="${boost.lib}/lib" + --boost-libs="${boost.out}/lib" ''; buildPhase = "python waf"; diff --git a/pkgs/development/libraries/blitz/default.nix b/pkgs/development/libraries/blitz/default.nix index e6f59ca8efeb4..ab34f64dfbfc8 100644 --- a/pkgs/development/libraries/blitz/default.nix +++ b/pkgs/development/libraries/blitz/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { patches = [ ./blitz-gcc47.patch ./blitz-testsuite-stencil-et.patch ]; buildInputs = [ pkgconfig gfortran texinfo ] - ++ optional (boost != null) [ boost.lib ]; + ++ optional (boost != null) [ boost.out ]; configureFlags = [ "--enable-shared" @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { ++ optional enablePadding "--enable-array-length-padding" ++ optional enableSerialization "--enable-serialization" ++ optionals (boost != null) [ "--with-boost=${boost.dev}" - "--with-boost-libdir=${boost.lib}/lib" ] + "--with-boost-libdir=${boost.out}/lib" ] ++ optional stdenv.is64bit "--enable-64bit" ; diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 5b0c06bd6bb2a..931a2ad8db638 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -53,7 +53,7 @@ let genericB2Flags = [ "--includedir=$dev/include" - "--libdir=$lib/lib" + "--libdir=$out/lib" "-j$NIX_BUILD_CORES" "--layout=${layout}" "variant=${variant}" @@ -90,10 +90,6 @@ let # Let boost install everything else ./b2 ${b2Args} install - - # Create a derivation which encompasses everything, making buildInputs nicer - mkdir -p $out/nix-support - echo "$dev $lib" > $out/nix-support/propagated-native-build-inputs ''; commonConfigureFlags = [ @@ -127,10 +123,9 @@ stdenv.mkDerivation { }; preConfigure = '' - NIX_LDFLAGS="$(echo $NIX_LDFLAGS | sed "s,$out,$lib,g")" if test -f tools/build/src/tools/clang-darwin.jam ; then substituteInPlace tools/build/src/tools/clang-darwin.jam \ - --replace '@rpath/$(<[1]:D=)' "$lib/lib/\$(<[1]:D=)"; + --replace '@rpath/$(<[1]:D=)' "$out/lib/\$(<[1]:D=)"; fi; '' + optionalString (mpi != null) '' cat << EOF > user-config.jam @@ -158,7 +153,7 @@ stdenv.mkDerivation { postFixup = fixup; - outputs = [ "out" "dev" "lib" ]; + outputs = [ "dev" "out" ]; setOutputFlags = false; crossAttrs = rec { diff --git a/pkgs/development/libraries/folly/default.nix b/pkgs/development/libraries/folly/default.nix index 046b7f97ba448..63fb8de0fffc6 100644 --- a/pkgs/development/libraries/folly/default.nix +++ b/pkgs/development/libraries/folly/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { patchShebangs build ''; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ]; + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/libtorrent-rasterbar/generic.nix b/pkgs/development/libraries/libtorrent-rasterbar/generic.nix index a5bb258af1a93..d840487b4a53a 100644 --- a/pkgs/development/libraries/libtorrent-rasterbar/generic.nix +++ b/pkgs/development/libraries/libtorrent-rasterbar/generic.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { "--with-libgeoip=system" "--with-libiconv=yes" "--with-boost=${boost.dev}" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--with-libiconv=yes" ]; diff --git a/pkgs/development/libraries/ndn-cxx/default.nix b/pkgs/development/libraries/ndn-cxx/default.nix index d95443da359d8..87aaaece53f64 100644 --- a/pkgs/development/libraries/ndn-cxx/default.nix +++ b/pkgs/development/libraries/ndn-cxx/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { ./waf configure \ --with-cryptopp=${cryptopp} \ --boost-includes=${boost.dev}/include \ - --boost-libs=${boost.lib}/lib \ + --boost-libs=${boost.out}/lib \ --with-examples \ --prefix=$out ''; diff --git a/pkgs/development/libraries/swiften/default.nix b/pkgs/development/libraries/swiften/default.nix index 64ea6fa0e74b6..46ecada966871 100644 --- a/pkgs/development/libraries/swiften/default.nix +++ b/pkgs/development/libraries/swiften/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { patchShebangs ./scons ./scons openssl=${openssl} \ boost_includedir=${boost.dev}/include \ - boost_libdir=${boost.lib}/lib \ + boost_libdir=${boost.out}/lib \ boost_bundled_enable=false \ SWIFTEN_INSTALLDIR=$out $out ''; diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix index 955dd9ed667d4..99cb9d03ab619 100644 --- a/pkgs/development/r-modules/default.nix +++ b/pkgs/development/r-modules/default.nix @@ -1866,7 +1866,7 @@ let RVowpalWabbit = old.RVowpalWabbit.overrideDerivation (attrs: { configureFlags = [ - "--with-boost=${pkgs.boost.dev}" "--with-boost-libdir=${pkgs.boost.lib}/lib" + "--with-boost=${pkgs.boost.dev}" "--with-boost-libdir=${pkgs.boost.out}/lib" ]; }); diff --git a/pkgs/tools/filesystems/ceph/generic.nix b/pkgs/tools/filesystems/ceph/generic.nix index 19457e136556f..ad237e408c66d 100644 --- a/pkgs/tools/filesystems/ceph/generic.nix +++ b/pkgs/tools/filesystems/ceph/generic.nix @@ -267,7 +267,7 @@ stdenv.mkDerivation { # Fix .la file link dependencies find "$lib/lib" -name \*.la | xargs sed -i \ - -e 's,-lboost_[a-z]*,-L${boost.lib}/lib \0,g' \ + -e 's,-lboost_[a-z]*,-L${boost.out}/lib \0,g' \ '' + optionalString (cryptoStr == "cryptopp") '' -e 's,-lcryptopp,-L${optCryptopp}/lib \0,g' \ '' + optionalString (cryptoStr == "nss") '' diff --git a/pkgs/tools/filesystems/xtreemfs/default.nix b/pkgs/tools/filesystems/xtreemfs/default.nix index 556cb674212d9..bbd4b185d5ec8 100644 --- a/pkgs/tools/filesystems/xtreemfs/default.nix +++ b/pkgs/tools/filesystems/xtreemfs/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { export ANT_HOME=${ant} export BOOST_INCLUDEDIR=${boost.dev}/include - export BOOST_LIBRARYDIR=${boost.lib}/lib + export BOOST_LIBRARYDIR=${boost.out}/lib export OPENSSL_ROOT_DIR=${openssl} substituteInPlace cpp/cmake/FindValgrind.cmake \ diff --git a/pkgs/tools/text/source-highlight/default.nix b/pkgs/tools/text/source-highlight/default.nix index d5530a3df9166..5015a220afb57 100644 --- a/pkgs/tools/text/source-highlight/default.nix +++ b/pkgs/tools/text/source-highlight/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation { buildInputs = [ boost ]; - configureFlags = [ "--with-boost=${boost.lib}" ]; + configureFlags = [ "--with-boost=${boost.out}" ]; enableParallelBuilding = false; -- cgit 1.4.1 From 58e0c4bcd9d6c1d509fbd5c12f1d5d1c29e05a29 Mon Sep 17 00:00:00 2001 From: David Guibert Date: Thu, 28 Apr 2016 11:13:26 +0200 Subject: gcc: add 6.1.0 --- pkgs/development/compilers/gcc/6/default.nix | 538 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 23 ++ 2 files changed, 561 insertions(+) create mode 100644 pkgs/development/compilers/gcc/6/default.nix (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/gcc/6/default.nix b/pkgs/development/compilers/gcc/6/default.nix new file mode 100644 index 0000000000000..cbd4e1e340c9b --- /dev/null +++ b/pkgs/development/compilers/gcc/6/default.nix @@ -0,0 +1,538 @@ +{ stdenv, fetchurl, noSysDirs +, langC ? true, langCC ? true, langFortran ? false +, langObjC ? stdenv.isDarwin +, langObjCpp ? stdenv.isDarwin +, langJava ? false +, langAda ? false +, langVhdl ? false +, langGo ? false +, profiledCompiler ? false +, staticCompiler ? false +, enableShared ? true +, texinfo ? null +, perl ? null # optional, for texi2pod (then pod2man); required for Java +, gmp, mpfr, libmpc, gettext, which +, libelf # optional, for link-time optimizations (LTO) +, isl ? null # optional, for the Graphite optimization framework. +, zlib ? null, boehmgc ? null +, zip ? null, unzip ? null, pkgconfig ? null +, gtk ? null, libart_lgpl ? null +, libX11 ? null, libXt ? null, libSM ? null, libICE ? null, libXtst ? null +, libXrender ? null, xproto ? null, renderproto ? null, xextproto ? null +, libXrandr ? null, libXi ? null, inputproto ? null, randrproto ? null +, x11Support ? langJava +, gnatboot ? null +, enableMultilib ? false +, enablePlugin ? true # whether to support user-supplied plug-ins +, name ? "gcc" +, cross ? null +, binutilsCross ? null +, libcCross ? null +, crossStageStatic ? true +, gnat ? null +, libpthread ? null, libpthreadCross ? null # required for GNU/Hurd +, stripped ? true +, gnused ? null +, binutils ? null +, cloog # unused; just for compat with gcc4, as we override the parameter on some places +}: + +assert langJava -> zip != null && unzip != null + && zlib != null && boehmgc != null + && perl != null; # for `--enable-java-home' +assert langAda -> gnatboot != null; +assert langVhdl -> gnat != null; + +# LTO needs libelf and zlib. +assert libelf != null -> zlib != null; + +# Make sure we get GNU sed. +assert stdenv.isDarwin -> gnused != null; + +# Need c++filt on darwin +assert stdenv.isDarwin -> binutils != null; + +# The go frontend is written in c++ +assert langGo -> langCC; + +with stdenv.lib; +with builtins; + +let version = "6.1.0"; + + # Whether building a cross-compiler for GNU/Hurd. + crossGNU = cross != null && cross.config == "i586-pc-gnu"; + + enableParallelBuilding = true; + + patches = + [ ../use-source-date-epoch.patch ] + ++ optional (cross != null) ../libstdc++-target.patch + ++ optional noSysDirs ../no-sys-dirs.patch + # The GNAT Makefiles did not pay attention to CFLAGS_FOR_TARGET for its + # target libraries and tools. + ++ optional langAda ../gnat-cflags.patch + ++ optional langFortran ../gfortran-driving.patch; + + javaEcj = fetchurl { + # The `$(top_srcdir)/ecj.jar' file is automatically picked up at + # `configure' time. + + # XXX: Eventually we might want to take it from upstream. + url = "ftp://sourceware.org/pub/java/ecj-4.3.jar"; + sha256 = "0jz7hvc0s6iydmhgh5h2m15yza7p2rlss2vkif30vm9y77m97qcx"; + }; + + # Antlr (optional) allows the Java `gjdoc' tool to be built. We want a + # binary distribution here to allow the whole chain to be bootstrapped. + javaAntlr = fetchurl { + url = http://www.antlr.org/download/antlr-4.4-complete.jar; + sha256 = "02lda2imivsvsis8rnzmbrbp8rh1kb8vmq4i67pqhkwz7lf8y6dz"; + }; + + xlibs = [ + libX11 libXt libSM libICE libXtst libXrender libXrandr libXi + xproto renderproto xextproto inputproto randrproto + ]; + + javaAwtGtk = langJava && x11Support; + + /* Platform flags */ + platformFlags = let + gccArch = stdenv.platform.gcc.arch or null; + gccCpu = stdenv.platform.gcc.cpu or null; + gccAbi = stdenv.platform.gcc.abi or null; + gccFpu = stdenv.platform.gcc.fpu or null; + gccFloat = stdenv.platform.gcc.float or null; + gccMode = stdenv.platform.gcc.mode or null; + withArch = if gccArch != null then " --with-arch=${gccArch}" else ""; + withCpu = if gccCpu != null then " --with-cpu=${gccCpu}" else ""; + withAbi = if gccAbi != null then " --with-abi=${gccAbi}" else ""; + withFpu = if gccFpu != null then " --with-fpu=${gccFpu}" else ""; + withFloat = if gccFloat != null then " --with-float=${gccFloat}" else ""; + withMode = if gccMode != null then " --with-mode=${gccMode}" else ""; + in + withArch + + withCpu + + withAbi + + withFpu + + withFloat + + withMode; + + /* Cross-gcc settings */ + crossMingw = cross != null && cross.libc == "msvcrt"; + crossDarwin = cross != null && cross.libc == "libSystem"; + crossConfigureFlags = let + gccArch = stdenv.cross.gcc.arch or null; + gccCpu = stdenv.cross.gcc.cpu or null; + gccAbi = stdenv.cross.gcc.abi or null; + gccFpu = stdenv.cross.gcc.fpu or null; + gccFloat = stdenv.cross.gcc.float or null; + gccMode = stdenv.cross.gcc.mode or null; + withArch = if gccArch != null then " --with-arch=${gccArch}" else ""; + withCpu = if gccCpu != null then " --with-cpu=${gccCpu}" else ""; + withAbi = if gccAbi != null then " --with-abi=${gccAbi}" else ""; + withFpu = if gccFpu != null then " --with-fpu=${gccFpu}" else ""; + withFloat = if gccFloat != null then " --with-float=${gccFloat}" else ""; + withMode = if gccMode != null then " --with-mode=${gccMode}" else ""; + in + "--target=${cross.config}" + + withArch + + withCpu + + withAbi + + withFpu + + withFloat + + withMode + + (if crossMingw && crossStageStatic then + " --with-headers=${libcCross}/include" + + " --with-gcc" + + " --with-gnu-as" + + " --with-gnu-ld" + + " --with-gnu-ld" + + " --disable-shared" + + " --disable-nls" + + " --disable-debug" + + " --enable-sjlj-exceptions" + + " --enable-threads=win32" + + " --disable-win32-registry" + else if crossStageStatic then + " --disable-libssp --disable-nls" + + " --without-headers" + + " --disable-threads " + + " --disable-libgomp " + + " --disable-libquadmath" + + " --disable-shared" + + " --disable-libatomic " + # libatomic requires libc + " --disable-decimal-float" # libdecnumber requires libc + else + (if crossDarwin then " --with-sysroot=${libcCross}/share/sysroot" + else " --with-headers=${libcCross}/include") + + # Ensure that -print-prog-name is able to find the correct programs. + (stdenv.lib.optionalString (crossMingw || crossDarwin) ( + " --with-as=${binutilsCross}/bin/${cross.config}-as" + + " --with-ld=${binutilsCross}/bin/${cross.config}-ld" + )) + + " --enable-__cxa_atexit" + + " --enable-long-long" + + (if crossMingw then + " --enable-threads=win32" + + " --enable-sjlj-exceptions" + + " --enable-hash-synchronization" + + " --disable-libssp" + + " --disable-nls" + + " --with-dwarf2" + + # I think noone uses shared gcc libs in mingw, so we better do the same. + # In any case, mingw32 g++ linking is broken by default with shared libs, + # unless adding "-lsupc++" to any linking command. I don't know why. + " --disable-shared" + + # To keep ABI compatibility with upstream mingw-w64 + " --enable-fully-dynamic-string" + else (if cross.libc == "uclibc" then + # In uclibc cases, libgomp needs an additional '-ldl' + # and as I don't know how to pass it, I disable libgomp. + " --disable-libgomp" else "") + + " --enable-threads=posix" + + " --enable-nls" + + " --disable-decimal-float") # No final libdecnumber (it may work only in 386) + ); + stageNameAddon = if crossStageStatic then "-stage-static" else "-stage-final"; + crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else ""; + + bootstrap = cross == null; + +in + +# We need all these X libraries when building AWT with GTK+. +assert x11Support -> (filter (x: x == null) ([ gtk libart_lgpl ] ++ xlibs)) == []; + +stdenv.mkDerivation ({ + name = "${name}${if stripped then "" else "-debug"}-${version}" + crossNameAddon; + + builder = ../builder.sh; + + src = fetchurl { + url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2"; + sha256 = "0ld3y4rgimyqgx1nwvzqyl5gr4wzc0ch4akkvsqp3fgbmdfcii09"; + }; + + inherit patches; + + outputs = [ "out" "lib" "man" "info" ]; + setOutputFlags = false; + NIX_NO_SELF_RPATH = true; + + libc_dev = stdenv.cc.libc_dev; + + postPatch = + if (stdenv.isGNU + || (libcCross != null # e.g., building `gcc.crossDrv' + && libcCross ? crossConfig + && libcCross.crossConfig == "i586-pc-gnu") + || (crossGNU && libcCross != null)) + then + # On GNU/Hurd glibc refers to Hurd & Mach headers and libpthread is not + # in glibc, so add the right `-I' flags to the default spec string. + assert libcCross != null -> libpthreadCross != null; + let + libc = if libcCross != null then libcCross else stdenv.glibc; + gnu_h = "gcc/config/gnu.h"; + extraCPPDeps = + libc.propagatedBuildInputs + ++ stdenv.lib.optional (libpthreadCross != null) libpthreadCross + ++ stdenv.lib.optional (libpthread != null) libpthread; + extraCPPSpec = + concatStrings (intersperse " " + (map (x: "-I${x}/include") extraCPPDeps)); + extraLibSpec = + if libpthreadCross != null + then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}" + else "-L${libpthread}/lib"; + in + '' echo "augmenting \`CPP_SPEC' in \`${gnu_h}' with \`${extraCPPSpec}'..." + sed -i "${gnu_h}" \ + -es'|CPP_SPEC *"\(.*\)$|CPP_SPEC "${extraCPPSpec} \1|g' + + echo "augmenting \`LIB_SPEC' in \`${gnu_h}' with \`${extraLibSpec}'..." + sed -i "${gnu_h}" \ + -es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g' + + echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc}/include'..." + sed -i "${gnu_h}" \ + -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc}/include"|g' + '' + else if cross != null || stdenv.cc.libc != null then + # On NixOS, use the right path to the dynamic linker instead of + # `/lib/ld*.so'. + let + libc = if libcCross != null then libcCross else stdenv.cc.libc; + in + '' echo "fixing the \`GLIBC_DYNAMIC_LINKER' and \`UCLIBC_DYNAMIC_LINKER' macros..." + for header in "gcc/config/"*-gnu.h "gcc/config/"*"/"*.h + do + grep -q LIBC_DYNAMIC_LINKER "$header" || continue + echo " fixing \`$header'..." + sed -i "$header" \ + -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc}\3"|g' + done + '' + else null; + + inherit noSysDirs staticCompiler langJava crossStageStatic + libcCross crossMingw; + + nativeBuildInputs = [ texinfo which gettext ] + ++ (optional (perl != null) perl) + ++ (optional javaAwtGtk pkgconfig); + + buildInputs = [ gmp mpfr libmpc libelf ] + ++ (optional (isl != null) isl) + ++ (optional (zlib != null) zlib) + ++ (optionals langJava [ boehmgc zip unzip ]) + ++ (optionals javaAwtGtk ([ gtk libart_lgpl ] ++ xlibs)) + ++ (optionals (cross != null) [binutilsCross]) + ++ (optionals langAda [gnatboot]) + ++ (optionals langVhdl [gnat]) + + # The builder relies on GNU sed (for instance, Darwin's `sed' fails with + # "-i may not be used with stdin"), and `stdenvNative' doesn't provide it. + ++ (optional stdenv.isDarwin gnused) + ++ (optional stdenv.isDarwin binutils) + ; + + NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isSunOS "-lm -ldl"; + + preConfigure = stdenv.lib.optionalString (stdenv.isSunOS && stdenv.is64bit) '' + export NIX_LDFLAGS=`echo $NIX_LDFLAGS | sed -e s~$prefix/lib~$prefix/lib/amd64~g` + export LDFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $LDFLAGS_FOR_TARGET" + export CXXFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CXXFLAGS_FOR_TARGET" + export CFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CFLAGS_FOR_TARGET" + '' + stdenv.lib.optionalString stdenv.isDarwin '' + if SDKROOT=$(/usr/bin/xcrun --show-sdk-path); then + configureFlagsArray+=(--with-native-system-header-dir=$SDKROOT/usr/include) + makeFlagsArray+=( \ + CFLAGS_FOR_BUILD=-F$SDKROOT/System/Library/Frameworks \ + CFLAGS_FOR_TARGET=-F$SDKROOT/System/Library/Frameworks \ + FLAGS_FOR_TARGET=-F$SDKROOT/System/Library/Frameworks \ + ) + fi + ''; + + dontDisableStatic = true; + + configureFlags = " + ${if stdenv.isSunOS then + " --enable-long-long --enable-libssp --enable-threads=posix --disable-nls --enable-__cxa_atexit " + + # On Illumos/Solaris GNU as is preferred + " --with-gnu-as --without-gnu-ld " + else ""} + --enable-lto + ${if enableMultilib then "--enable-multilib --disable-libquadmath" else "--disable-multilib"} + ${if enableShared then "" else "--disable-shared"} + ${if enablePlugin then "--enable-plugin" else "--disable-plugin"} + ${optionalString (isl != null) "--with-isl=${isl}"} + ${if langJava then + "--with-ecj-jar=${javaEcj} " + + + # Follow Sun's layout for the convenience of IcedTea/OpenJDK. See + # . + "--enable-java-home --with-java-home=\${prefix}/lib/jvm/jre " + else ""} + ${if javaAwtGtk then "--enable-java-awt=gtk" else ""} + ${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr}" else ""} + --with-gmp=${gmp} + --with-mpfr=${mpfr} + --with-mpc=${libmpc} + ${if libelf != null then "--with-libelf=${libelf}" else ""} + --disable-libstdcxx-pch + --without-included-gettext + --with-system-zlib + --enable-static + --enable-languages=${ + concatStrings (intersperse "," + ( optional langC "c" + ++ optional langCC "c++" + ++ optional langFortran "fortran" + ++ optional langJava "java" + ++ optional langAda "ada" + ++ optional langVhdl "vhdl" + ++ optional langGo "go" + ++ optional langObjC "objc" + ++ optional langObjCpp "obj-c++" + ++ optionals crossDarwin [ "objc" "obj-c++" ] + ) + ) + } + ${if (stdenv ? glibc && cross == null) + then " --with-native-system-header-dir=${stdenv.glibc.dev}/include" + else ""} + ${if langAda then " --enable-libada" else ""} + ${if cross == null && stdenv.isi686 then "--with-arch=i686" else ""} + ${if cross != null then crossConfigureFlags else ""} + ${if !bootstrap then "--disable-bootstrap" else ""} + ${if cross == null then platformFlags else ""} + "; + + targetConfig = if cross != null then cross.config else null; + + buildFlags = if bootstrap then + (if profiledCompiler then "profiledbootstrap" else "bootstrap") + else ""; + + installTargets = + if stripped + then "install-strip" + else "install"; + + crossAttrs = let + xgccArch = stdenv.cross.gcc.arch or null; + xgccCpu = stdenv.cross.gcc.cpu or null; + xgccAbi = stdenv.cross.gcc.abi or null; + xgccFpu = stdenv.cross.gcc.fpu or null; + xgccFloat = stdenv.cross.gcc.float or null; + xwithArch = if xgccArch != null then " --with-arch=${xgccArch}" else ""; + xwithCpu = if xgccCpu != null then " --with-cpu=${xgccCpu}" else ""; + xwithAbi = if xgccAbi != null then " --with-abi=${xgccAbi}" else ""; + xwithFpu = if xgccFpu != null then " --with-fpu=${xgccFpu}" else ""; + xwithFloat = if xgccFloat != null then " --with-float=${xgccFloat}" else ""; + in { + AR = "${stdenv.cross.config}-ar"; + LD = "${stdenv.cross.config}-ld"; + CC = "${stdenv.cross.config}-gcc"; + CXX = "${stdenv.cross.config}-gcc"; + AR_FOR_TARGET = "${stdenv.cross.config}-ar"; + LD_FOR_TARGET = "${stdenv.cross.config}-ld"; + CC_FOR_TARGET = "${stdenv.cross.config}-gcc"; + NM_FOR_TARGET = "${stdenv.cross.config}-nm"; + CXX_FOR_TARGET = "${stdenv.cross.config}-g++"; + # If we are making a cross compiler, cross != null + NIX_CC_CROSS = if cross == null then "${stdenv.ccCross}" else ""; + dontStrip = true; + configureFlags = '' + ${if enableMultilib then "" else "--disable-multilib"} + ${if enableShared then "" else "--disable-shared"} + ${if langJava then "--with-ecj-jar=${javaEcj.crossDrv}" else ""} + ${if javaAwtGtk then "--enable-java-awt=gtk" else ""} + ${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr.crossDrv}" else ""} + --with-gmp=${gmp.crossDrv} + --with-mpfr=${mpfr.crossDrv} + --disable-libstdcxx-pch + --without-included-gettext + --with-system-zlib + --enable-languages=${ + concatStrings (intersperse "," + ( optional langC "c" + ++ optional langCC "c++" + ++ optional langFortran "fortran" + ++ optional langJava "java" + ++ optional langAda "ada" + ++ optional langVhdl "vhdl" + ++ optional langGo "go" + ) + ) + } + ${if langAda then " --enable-libada" else ""} + --target=${stdenv.cross.config} + ${xwithArch} + ${xwithCpu} + ${xwithAbi} + ${xwithFpu} + ${xwithFloat} + ''; + buildFlags = ""; + }; + + + # Needed for the cross compilation to work + AR = "ar"; + LD = "ld"; + # http://gcc.gnu.org/install/specific.html#x86-64-x-solaris210 + CC = if stdenv.system == "x86_64-solaris" then "gcc -m64" else "gcc"; + + # Setting $CPATH and $LIBRARY_PATH to make sure both `gcc' and `xgcc' find + # the library headers and binaries, regarless of the language being + # compiled. + + # Note: When building the Java AWT GTK+ peer, the build system doesn't + # honor `--with-gmp' et al., e.g., when building + # `libjava/classpath/native/jni/java-math/gnu_java_math_GMP.c', so we just + # add them to $CPATH and $LIBRARY_PATH in this case. + # + # Likewise, the LTO code doesn't find zlib. + + CPATH = concatStrings + (intersperse ":" (map (x: x + "/include") + (optionals (zlib != null) [ zlib ] + ++ optionals langJava [ boehmgc ] + ++ optionals javaAwtGtk xlibs + ++ optionals javaAwtGtk [ gmp mpfr ] + ++ optional (libpthread != null) libpthread + ++ optional (libpthreadCross != null) libpthreadCross + + # On GNU/Hurd glibc refers to Mach & Hurd + # headers. + ++ optionals (libcCross != null && libcCross ? "propagatedBuildInputs" ) + libcCross.propagatedBuildInputs))); + + LIBRARY_PATH = concatStrings + (intersperse ":" (map (x: x + "/lib") + (optionals (zlib != null) [ zlib ] + ++ optionals langJava [ boehmgc ] + ++ optionals javaAwtGtk xlibs + ++ optionals javaAwtGtk [ gmp mpfr ] + ++ optional (libpthread != null) libpthread))); + + EXTRA_TARGET_CFLAGS = + if cross != null && libcCross != null + then "-idirafter ${libcCross}/include" + else null; + + EXTRA_TARGET_LDFLAGS = + if cross != null && libcCross != null + then "-B${libcCross}/lib -Wl,-L${libcCross}/lib" + + (optionalString (libpthreadCross != null) + " -L${libpthreadCross}/lib -Wl,${libpthreadCross.TARGET_LDFLAGS}") + else null; + + passthru = + { inherit langC langCC langObjC langObjCpp langAda langFortran langVhdl langGo version; isGNU = true; }; + + inherit enableParallelBuilding enableMultilib; + + inherit (stdenv) is64bit; + + meta = { + homepage = http://gcc.gnu.org/; + license = stdenv.lib.licenses.gpl3Plus; # runtime support libraries are typically LGPLv3+ + description = "GNU Compiler Collection, version ${version}" + + (if stripped then "" else " (with debugging info)"); + + longDescription = '' + The GNU Compiler Collection includes compiler front ends for C, C++, + Objective-C, Fortran, OpenMP for C/C++/Fortran, Java, and Ada, as well + as libraries for these languages (libstdc++, libgcj, libgomp,...). + + GCC development is a part of the GNU Project, aiming to improve the + compiler used in the GNU system including the GNU/Linux variant. + ''; + + maintainers = with stdenv.lib.maintainers; [ viric simons ]; + + # gnatboot is not available out of linux platforms, so we disable the darwin build + # for the gnat (ada compiler). + platforms = + stdenv.lib.platforms.linux ++ + stdenv.lib.platforms.freebsd ++ + optionals (langAda == false) stdenv.lib.platforms.darwin; + }; +} + +// optionalAttrs (cross != null && cross.libc == "msvcrt" && crossStageStatic) { + makeFlags = [ "all-gcc" "all-target-libgcc" ]; + installTargets = "install-gcc install-target-libgcc"; +} + +# Strip kills static libs of other archs (hence cross != null) +// optionalAttrs (!stripped || cross != null) { dontStrip = true; NIX_STRIP_DEBUG = 0; } + +// optionalAttrs (enableMultilib) { dontMoveLib64 = true; } +) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cd576d1bea031..b40cf2faaa97b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4222,6 +4222,21 @@ in isl = isl_0_14; })); + gcc6 = lowPrio (wrapCC (callPackage ../development/compilers/gcc/6 { + inherit noSysDirs; + + # PGO seems to speed up compilation by gcc by ~10%, see #445 discussion + profiledCompiler = with stdenv; (!isDarwin && (isi686 || isx86_64)); + + # When building `gcc.crossDrv' (a "Canadian cross", with host == target + # and host != build), `cross' must be null but the cross-libc must still + # be passed. + cross = null; + libcCross = if crossSystem != null then libcCross else null; + + isl = isl_0_14; + })); + gfortran = if !stdenv.isDarwin then gfortran5 else callPackage ../development/compilers/gcc/gfortran-darwin.nix { inherit (darwin) Libsystem; @@ -4251,6 +4266,14 @@ in profiledCompiler = false; }); + gfortran6 = wrapCC (gcc6.cc.override { + name = "gfortran"; + langFortran = true; + langCC = false; + langC = false; + profiledCompiler = false; + }); + gcj = gcj49; gcj49 = wrapCC (gcc49.cc.override { name = "gcj"; -- cgit 1.4.1 From 42f46936bbc83438011fa0d96013f92fd7fec6c4 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Fri, 29 Apr 2016 03:29:30 +0000 Subject: libarchive: add propagatedBuildInputs for attr and acl to appease pkgconfig dependencies --- pkgs/development/libraries/libarchive/default.nix | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libarchive/default.nix b/pkgs/development/libraries/libarchive/default.nix index 467dd87f43e94..55ff770f4bd97 100644 --- a/pkgs/development/libraries/libarchive/default.nix +++ b/pkgs/development/libraries/libarchive/default.nix @@ -21,6 +21,9 @@ stdenv.mkDerivation rec { buildInputs = [ sharutils libxml2 zlib bzip2 openssl xz lzo ] ++ stdenv.lib.optionals stdenv.isLinux [ e2fsprogs attr acl ]; + # Without this, pkgconfig-based dependencies are unhappy + propagatedBuildInputs = stdenv.lib.optionals stdenv.isLinux [ attr acl ]; + preBuild = if stdenv.isCygwin then '' echo "#include " >> config.h '' else null; -- cgit 1.4.1 From a8bc5b67f8caf82585932eab14cb99fcbc4d595b Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Fri, 29 Apr 2016 15:26:20 +0900 Subject: php: add default php.ini --- nixos/modules/rename.nix | 1 + .../services/web-servers/apache-httpd/default.nix | 2 +- nixos/modules/services/web-servers/phpfpm.nix | 21 ++++++++++++++++----- pkgs/development/interpreters/php/default.nix | 6 ++---- 4 files changed, 20 insertions(+), 10 deletions(-) (limited to 'pkgs/development') diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 6b02446d53b48..5c4793624e027 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -123,6 +123,7 @@ with lib; (mkRemovedOptionModule [ "services" "printing" "cupsFilesConf" ]) (mkRemovedOptionModule [ "services" "printing" "cupsdConf" ]) (mkRemovedOptionModule [ "services" "xserver" "startGnuPGAgent" ]) + (mkRemovedOptionModule [ "services" "phpfpm" "phpIni" ]) ]; } diff --git a/nixos/modules/services/web-servers/apache-httpd/default.nix b/nixos/modules/services/web-servers/apache-httpd/default.nix index 7953729c00cd8..c23897192b4c6 100644 --- a/nixos/modules/services/web-servers/apache-httpd/default.nix +++ b/nixos/modules/services/web-servers/apache-httpd/default.nix @@ -406,7 +406,7 @@ let ([ mainCfg.phpOptions ] ++ (map (svc: svc.phpOptions) allSubservices)); } '' - cat ${php}/etc/php-recommended.ini > $out + cat ${php}/etc/php.ini > $out echo "$options" >> $out ''; diff --git a/nixos/modules/services/web-servers/phpfpm.nix b/nixos/modules/services/web-servers/phpfpm.nix index 6a60000ce19e6..2658d7117e37d 100644 --- a/nixos/modules/services/web-servers/phpfpm.nix +++ b/nixos/modules/services/web-servers/phpfpm.nix @@ -19,6 +19,12 @@ let ${concatStringsSep "\n" (mapAttrsToList (n: v: "[${n}]\n${v}") cfg.poolConfigs)} ''; + phpIni = pkgs.writeText "php.ini" '' + ${readFile "${cfg.phpPackage}/etc/php.ini"} + + ${cfg.phpOptions} + ''; + in { options = { @@ -44,10 +50,15 @@ in { ''; }; - phpIni = mkOption { - type = types.path; - default = "${cfg.phpPackage}/etc/php-recommended.ini"; - description = "php.ini file to use."; + phpOptions = mkOption { + type = types.lines; + default = ""; + example = + '' + date.timezone = "CET" + ''; + description = + "Options appended to the PHP configuration file php.ini."; }; poolConfigs = mkOption { @@ -84,7 +95,7 @@ in { mkdir -p "${stateDir}" ''; serviceConfig = { - ExecStart = "${cfg.phpPackage}/sbin/php-fpm -y ${cfgFile} -c ${cfg.phpIni}"; + ExecStart = "${cfg.phpPackage}/bin/php-fpm -y ${cfgFile} -c ${phpIni}"; PIDFile = pidFile; }; }; diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index a618fd85d719e..d59273a18c3e4 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -265,14 +265,12 @@ let --replace '@PHP_LDFLAGS@' "" done - iniFile=$out/etc/php-recommended.ini [[ -z "$libxml2" ]] || export PATH=$PATH:$libxml2/bin ./configure --with-config-file-scan-dir=/etc --with-config-file-path=$out/etc --prefix=$out $configureFlags ''; - installPhase = '' - unset installPhase; installPhase; - cp php.ini-production $iniFile + postInstall = '' + cp php.ini-production $out/etc/php.ini ''; src = fetchurl { -- cgit 1.4.1 From 36d50d2e6c2b2d6829763ef52e75b47ac32b372d Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 05:01:55 +0300 Subject: nodejs-0_10: fix build --- pkgs/development/web/nodejs/v0_10.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/web/nodejs/v0_10.nix b/pkgs/development/web/nodejs/v0_10.nix index 3196153b60478..9845aa3bf8c80 100644 --- a/pkgs/development/web/nodejs/v0_10.nix +++ b/pkgs/development/web/nodejs/v0_10.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, openssl, python, zlib, v8, utillinux, http-parser, c-ares +{ stdenv, lib, fetchurl, openssl, python, zlib, v8, utillinux, http-parser, c-ares , pkgconfig, runCommand, which, libtool # apple frameworks @@ -20,10 +20,10 @@ let }) // ({ cares = c-ares; }); - sharedConfigureFlags = name: [ + sharedConfigureFlags = name: let drv = builtins.getAttr name deps; in [ "--shared-${name}" - "--shared-${name}-includes=${builtins.getAttr name deps}/include" - "--shared-${name}-libpath=${builtins.getAttr name deps}/lib" + "--shared-${name}-includes=${lib.getDev drv}/include" + "--shared-${name}-libpath=${lib.getLib drv}/lib" ]; inherit (stdenv.lib) concatMap optional optionals maintainers licenses platforms; -- cgit 1.4.1 From 97d9368471542388dd761a1a4654c52cd7ddbea7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:20:32 -0500 Subject: qmakeHook: move libtool archives and qmake project files to $dev/lib --- pkgs/development/libraries/qt-5/5.5/default.nix | 1 - pkgs/development/libraries/qt-5/5.5/qmake-hook.sh | 11 +++++++++++ pkgs/development/libraries/qt-5/5.5/qtbase/default.nix | 13 +++++++++++++ 3 files changed, 24 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/qt-5/5.5/default.nix b/pkgs/development/libraries/qt-5/5.5/default.nix index 034e25662ea18..9cfc052e730e1 100644 --- a/pkgs/development/libraries/qt-5/5.5/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/default.nix @@ -45,7 +45,6 @@ let nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ self.fixQtModuleCMakeConfig self.qmakeHook ]; NIX_QT_SUBMODULE = args.NIX_QT_SUBMODULE or true; - dontFixLibtool = args.dontFixLibtool or true; outputs = args.outputs or [ "dev" "out" ]; setOutputFlags = args.setOutputFlags or false; diff --git a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh index f059c19e03bb7..aa20779f4ec05 100644 --- a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh +++ b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh @@ -53,6 +53,17 @@ _qtMultioutModuleDevs() { # The destination directory must exist or moveToOutput will do nothing mkdir -p "${!outputDev}/share" moveToOutput "share/doc" "${!outputDev}" + + # Move libtool archives and qmake project files to $dev/lib + if [ "z${!outputLib}" != "z${!outputDev}" ]; then + pushd "${!outputLib}" + find lib -name '*.a' -o -name '*.la' -o -name '*.prl' -print0 | \ + while read -r -d $'\0' file; do + mkdir -p "${!outputDev}/$(dirname "$file")" + mv "${!outputLib}/$file" "${!outputDev}/$file" + done + popd + fi } qmakeConfigurePhase() { diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 7d68116d71685..f8dd82c88226b 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -235,6 +235,19 @@ stdenv.mkDerivation { # freetype-2.5.4 changed signedness of some struct fields NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; + preFixup = '' + # Move libtool archives and qmake projects + if [ "z''${!outputLib}" != "z''${!outputDev}" ]; then + pushd "''${!outputLib}" + find lib -name '*.a' -o -name '*.la' -o -name '*.prl' | \ + while read -r file; do + mkdir -p "''${!outputDev}/$(dirname "$file")" + mv "''${!outputLib}/$file" "''${!outputDev}/$file" + done + popd + fi + ''; + postFixup = '' # Don't retain build-time dependencies like gdb and ruby. -- cgit 1.4.1 From 008b3d5d84ad300095eeee0b84ef1b5adb04c395 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:21:10 -0500 Subject: qt55.qtbase: move moveToOutput hooks --- .../libraries/qt-5/5.5/qtbase/default.nix | 23 ++++++++++------------ 1 file changed, 10 insertions(+), 13 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index f8dd82c88226b..f2071fa6f8fc1 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -111,19 +111,6 @@ stdenv.mkDerivation { export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH" export MAKEFLAGS=-j$NIX_BUILD_CORES - _multioutQtDevs() { - # We cannot simply set these paths in configureFlags because libQtCore retains - # references to the paths it was built with. - moveToOutput "bin" "$dev" - moveToOutput "include" "$dev" - moveToOutput "mkspecs" "$dev" - - # The destination directory must exist or moveToOutput will do nothing - mkdir -p "$dev/share" - moveToOutput "share/doc" "$dev" - } - preFixupHooks+=(_multioutQtDevs) - configureFlags+="\ -plugindir $out/lib/qt5/plugins \ -importdir $out/lib/qt5/imports \ @@ -236,6 +223,16 @@ stdenv.mkDerivation { NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; preFixup = '' + # We cannot simply set these paths in configureFlags because libQtCore retains + # references to the paths it was built with. + moveToOutput "bin" "$dev" + moveToOutput "include" "$dev" + moveToOutput "mkspecs" "$dev" + + # The destination directory must exist or moveToOutput will do nothing + mkdir -p "$dev/share" + moveToOutput "share/doc" "$dev" + # Move libtool archives and qmake projects if [ "z''${!outputLib}" != "z''${!outputDev}" ]; then pushd "''${!outputLib}" -- cgit 1.4.1 From 3f6a2b944101a22db3325d1c676978831d2ddc9c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:21:41 -0500 Subject: qt55.qtbase: build QGtkStyle by default --- .../libraries/qt-5/5.5/qtbase/default.nix | 37 ++++++++++++++-------- 1 file changed, 24 insertions(+), 13 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index f2071fa6f8fc1..2cd129acab1d0 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -8,7 +8,7 @@ , zlib, libjpeg, libpng, libtiff, sqlite, icu , coreutils, bison, flex, gdb, gperf, lndir, ruby -, python, perl, pkgconfig +, patchelf, perl, pkgconfig, python # optional dependencies , cups ? null @@ -19,7 +19,7 @@ , buildExamples ? false , buildTests ? false , developerBuild ? false -, gtkStyle ? false, libgnomeui, GConf, gnome_vfs, gtk +, gtkStyle ? true, libgnomeui, GConf, gnome_vfs, gtk , decryptSslTraffic ? false }: @@ -27,6 +27,9 @@ let inherit (srcs.qt5) version; system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64; + # Search path for Gtk plugin + gtkLibPath = lib.makeLibraryPath [ gtk.out gnome_vfs.out libgnomeui.out GConf.out ]; + dontInvalidateBacking = fetchurl { url = "https://codereview.qt-project.org/gitweb?p=qt/qtbase.git;a=patch;h=0f68f8920573cdce1729a285a92ac8582df32841;hp=24c50f8dcf7fa61ac3c3d4d6295c259a104a2b8c"; name = "qtbug-48321-dont-invalidate-backing-store.patch"; @@ -43,7 +46,7 @@ stdenv.mkDerivation { sourceRoot = "qt-everywhere-opensource-src-${version}"; - outputs = [ "dev" "out" ]; + outputs = [ "dev" "out" "gtk" ]; postUnpack = '' mv qtbase-opensource-src-${version} ./qt-everywhere-opensource-src-${version}/qtbase @@ -51,7 +54,6 @@ stdenv.mkDerivation { patches = copyPathsToStore (lib.readPathsFromFile ./. ./series) - ++ lib.optional gtkStyle ./dlopen-gtkstyle.patch ++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch ++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ]; @@ -89,14 +91,6 @@ stdenv.mkDerivation { qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ --replace "@libX11@" "${libX11.out}" '' - + lib.optionalString gtkStyle '' - substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk.out}" - substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ - --replace "@gtk@" "${gtk.out}" \ - --replace "@gnome_vfs@" "${gnome_vfs.out}" \ - --replace "@libgnomeui@" "${libgnomeui.out}" \ - --replace "@gconf@" "${GConf.out}" - '' + lib.optionalString mesaSupported '' substituteInPlace \ qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ @@ -106,6 +100,7 @@ stdenv.mkDerivation { --replace "@mesa_inc@" "${mesa.dev}" ''; + setOutputFlags = false; preConfigure = '' export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH" @@ -217,7 +212,7 @@ stdenv.mkDerivation { ++ lib.optional (postgresql != null) postgresql ++ lib.optionals gtkStyle [gnome_vfs.out libgnomeui.out gtk GConf]; - nativeBuildInputs = [ fixQtModuleCMakeConfig lndir python perl pkgconfig ]; + nativeBuildInputs = [ fixQtModuleCMakeConfig lndir patchelf perl pkgconfig python ]; # freetype-2.5.4 changed signedness of some struct fields NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; @@ -243,6 +238,22 @@ stdenv.mkDerivation { done popd fi + + # Move the QGtkStyle plugin to the gtk output + mkdir -p "$gtk/lib/qt5/plugins/platformthemes" + mv "$out/lib/qt5/plugins/platformthemes/libqgtk2.so" "$gtk/lib/qt5/plugins/platformthemes" + rm "$out/lib/cmake/Qt5Gui/Qt5Gui_QGtk2ThemePlugin.cmake" + + # Set RPATH for QGtkStyle plugin + qgtk2="$gtk/lib/qt5/plugins/platformthemes/libqgtk2.so" + qgtk2_RPATH="$(patchelf --print-rpath "$qgtk2")" + qgtk2_RPATH="$qgtk2_RPATH''${qgtk2_RPATH:+:}${gtkLibPath}" + patchelf "$qgtk2" \ + --add-needed libgtk-x11-2.0.so \ + --add-needed libgnomeui-2.so \ + --add-needed libgnomevfs-2.so \ + --add-needed libgconf-2.so \ + --set-rpath "$qgtk2_RPATH" ''; postFixup = -- cgit 1.4.1 From 1051cfa1811275a07d00218e75a13c939242a7f0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 20:05:42 -0500 Subject: libgnome-keyring: multiple outputs --- pkgs/development/libraries/libgnome-keyring/default.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libgnome-keyring/default.nix b/pkgs/development/libraries/libgnome-keyring/default.nix index 4aadafff84418..95de491866858 100644 --- a/pkgs/development/libraries/libgnome-keyring/default.nix +++ b/pkgs/development/libraries/libgnome-keyring/default.nix @@ -9,6 +9,8 @@ stdenv.mkDerivation { sha256 = "030gka96kzqg1r19b4xrmac89hf1xj1kr5p461yvbzfxh46qqf2n"; }; + outputs = [ "dev" "out" ]; + propagatedBuildInputs = [ glib dbus_libs libgcrypt ]; nativeBuildInputs = [ pkgconfig intltool ]; -- cgit 1.4.1 From f79ace27289ac60e71c7be743602b52d21df1fae Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:51:08 -0500 Subject: qt55.poppler: compile with -DQT_NO_DEBUG Qt's debugging messages cause the qtbase.dev output to be retained by poppler.out. --- pkgs/development/libraries/poppler/default.nix | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix index ebcdcc2b3efdf..bb3458d62dd43 100644 --- a/pkgs/development/libraries/poppler/default.nix +++ b/pkgs/development/libraries/poppler/default.nix @@ -29,11 +29,14 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig libiconv ] ++ libintlOrEmpty; + NIX_CFLAGS_COMPILE = [ "-DQT_NO_DEBUG" ]; + configureFlags = with lib; [ "--enable-xpdf-headers" "--enable-libcurl" "--enable-zlib" + "--enable-build-type=release" ] ++ optionals minimal [ "--disable-poppler-glib" "--disable-poppler-cpp" ] ++ optional (!utils) "--disable-utils"; -- cgit 1.4.1 From 3a6c85da65977c9f2a20fb40b18aaac8077e53b8 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 30 Apr 2016 16:18:19 +0200 Subject: camlp5: 6.14 -> 6.16 --- pkgs/development/tools/ocaml/camlp5/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/ocaml/camlp5/default.nix b/pkgs/development/tools/ocaml/camlp5/default.nix index 83dd74d321ec6..bb44bbc8d6eeb 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 ]; -- cgit 1.4.1 From 84df0ba64c7571b98b7ef7a9624f684c11569065 Mon Sep 17 00:00:00 2001 From: yawnt Date: Mon, 2 May 2016 10:17:55 +0200 Subject: jdk: refactor install phase, avoid deleting source files needed for IDE support --- pkgs/development/compilers/oraclejdk/jdk-linux-base.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix index a18ffcbf3d4b9..f7bc2afcc4cf4 100644 --- a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix +++ b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix @@ -103,7 +103,8 @@ let result = stdenv.mkDerivation rec { mv $sourceRoot $out fi - for file in $out/* + shopt -s extglob + for file in $out/!(*src.zip) do if test -f $file ; then rm $file -- cgit 1.4.1 From 097a05a5b1c0917a0ab354a78b275fe4e2869a3d Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Mon, 2 May 2016 17:31:30 +0200 Subject: redis-dump: init at 0.3.5 --- pkgs/development/tools/redis-dump/.bundle/config | 3 ++ pkgs/development/tools/redis-dump/Gemfile | 3 ++ pkgs/development/tools/redis-dump/Gemfile.lock | 21 ++++++++++++ pkgs/development/tools/redis-dump/default.nix | 20 ++++++++++++ pkgs/development/tools/redis-dump/gemset.nix | 41 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 6 files changed, 92 insertions(+) create mode 100644 pkgs/development/tools/redis-dump/.bundle/config create mode 100644 pkgs/development/tools/redis-dump/Gemfile create mode 100644 pkgs/development/tools/redis-dump/Gemfile.lock create mode 100644 pkgs/development/tools/redis-dump/default.nix create mode 100644 pkgs/development/tools/redis-dump/gemset.nix (limited to 'pkgs/development') diff --git a/pkgs/development/tools/redis-dump/.bundle/config b/pkgs/development/tools/redis-dump/.bundle/config new file mode 100644 index 0000000000000..b81abe028c3ca --- /dev/null +++ b/pkgs/development/tools/redis-dump/.bundle/config @@ -0,0 +1,3 @@ +--- +BUNDLE_PATH: vendor +BUNDLE_DISABLE_SHARED_GEMS: '1' diff --git a/pkgs/development/tools/redis-dump/Gemfile b/pkgs/development/tools/redis-dump/Gemfile new file mode 100644 index 0000000000000..f78cb0873c08e --- /dev/null +++ b/pkgs/development/tools/redis-dump/Gemfile @@ -0,0 +1,3 @@ +source 'https://rubygems.org' + +gem 'redis-dump' diff --git a/pkgs/development/tools/redis-dump/Gemfile.lock b/pkgs/development/tools/redis-dump/Gemfile.lock new file mode 100644 index 0000000000000..283a3815f2235 --- /dev/null +++ b/pkgs/development/tools/redis-dump/Gemfile.lock @@ -0,0 +1,21 @@ +GEM + remote: https://rubygems.org/ + specs: + drydock (0.6.9) + redis (3.3.0) + redis-dump (0.3.5) + drydock (>= 0.6.9) + redis (>= 2.0) + uri-redis (>= 0.4.0) + yajl-ruby (>= 0.1) + uri-redis (0.4.2) + yajl-ruby (1.2.1) + +PLATFORMS + ruby + +DEPENDENCIES + redis-dump + +BUNDLED WITH + 1.11.2 diff --git a/pkgs/development/tools/redis-dump/default.nix b/pkgs/development/tools/redis-dump/default.nix new file mode 100644 index 0000000000000..bc1adf730a351 --- /dev/null +++ b/pkgs/development/tools/redis-dump/default.nix @@ -0,0 +1,20 @@ +{ stdenv, lib, bundlerEnv, ruby, perl, autoconf }: + +bundlerEnv { + name = "redis-dump-0.3.5"; + + inherit ruby; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + + buildInputs = [ perl autoconf ]; + + meta = with lib; { + description = "Backup and restore your Redis data to and from JSON"; + homepage = http://delanotes.com/redis-dump/; + license = licenses.mit; + maintainers = with maintainers; [ offline ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/development/tools/redis-dump/gemset.nix b/pkgs/development/tools/redis-dump/gemset.nix new file mode 100644 index 0000000000000..4054f4bb0a7a5 --- /dev/null +++ b/pkgs/development/tools/redis-dump/gemset.nix @@ -0,0 +1,41 @@ +{ + drydock = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0grf3361mh93lczljmnwafl7gbcp9kk1bjpfwx4ykpd43fzdbfyj"; + type = "gem"; + }; + version = "0.6.9"; + }; + redis = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1v68ggm0pwcyml3ngfyngwgvypwmsrmji1kyx48qqcg045zjs5p6"; + type = "gem"; + }; + version = "3.3.0"; + }; + redis-dump = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0y6s3nvcw84jqqvp9pjg9qmqyc0b8jkrp0dknhjjr0lg2q3fq87h"; + type = "gem"; + }; + version = "0.3.5"; + }; + uri-redis = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "13n8ak41rikkbmml054pir4i1xbgjpmf3dbqihc2kcrgmz3dg81a"; + type = "gem"; + }; + version = "0.4.2"; + }; + yajl-ruby = { + source = { + sha256 = "0zvvb7i1bl98k3zkdrnx9vasq0rp2cyy5n7p9804dqs4fz9xh9vf"; + type = "gem"; + }; + version = "1.2.1"; + }; +} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4126d518076a8..3b787bb93875e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6243,6 +6243,10 @@ in hammer = callPackage ../development/tools/parsing/hammer { }; + redis-dump = callPackage ../development/tools/redis-dump { + ruby = ruby_2_0; + }; + re2c = callPackage ../development/tools/parsing/re2c { }; remake = callPackage ../development/tools/build-managers/remake { }; -- cgit 1.4.1 From f04e0e70e8ddb82686a2f660d292e7338ed564d2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 2 May 2016 13:01:59 -0500 Subject: Revert "Revert "dbus: 1.8.20 -> 1.10.8"" This reverts commit 9eb107dc52409c5f438402eadf48b5dcd64da6ac. --- pkgs/development/libraries/dbus/default.nix | 7 +++---- .../dbus/ignore-missing-includedirs.patch | 23 ---------------------- 2 files changed, 3 insertions(+), 27 deletions(-) delete mode 100644 pkgs/development/libraries/dbus/ignore-missing-includedirs.patch (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/dbus/default.nix b/pkgs/development/libraries/dbus/default.nix index 83635d9739f18..dd86ca540815a 100644 --- a/pkgs/development/libraries/dbus/default.nix +++ b/pkgs/development/libraries/dbus/default.nix @@ -6,8 +6,8 @@ assert x11Support -> libX11 != null && libSM != null; let - version = "1.8.20"; - sha256 = "0fkh3d5r57a659hw9lqnw4v0bc5556vx54fsf7l9c732ci6byksw"; + version = "1.10.8"; + sha256 = "0560y3hxpgh346w6avcrcz79c8ansmn771y5xpcvvlr6m8mx5wxs"; self = stdenv.mkDerivation { name = "dbus-${version}"; @@ -17,8 +17,7 @@ self = stdenv.mkDerivation { inherit sha256; }; - patches = [ ./ignore-missing-includedirs.patch ] - ++ lib.optional stdenv.isSunOS ./implement-getgrouplist.patch; + patches = lib.optional stdenv.isSunOS ./implement-getgrouplist.patch; postPatch = '' substituteInPlace tools/Makefile.in \ --replace 'install-localstatelibDATA:' 'disabled:' \ diff --git a/pkgs/development/libraries/dbus/ignore-missing-includedirs.patch b/pkgs/development/libraries/dbus/ignore-missing-includedirs.patch deleted file mode 100644 index 2781f4ae3de51..0000000000000 --- a/pkgs/development/libraries/dbus/ignore-missing-includedirs.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff -ru -x '*~' dbus-1.2.24-orig/bus/config-parser.c dbus-1.2.24/bus/config-parser.c ---- dbus-1.2.24-orig/bus/config-parser.c 2010-03-23 20:01:27.000000000 +0100 -+++ dbus-1.2.24/bus/config-parser.c 2010-07-20 14:17:20.000000000 +0200 -@@ -2159,12 +2159,16 @@ - - retval = FALSE; - -- dir = _dbus_directory_open (dirname, error); -+ dbus_error_init (&tmp_error); -+ -+ dir = _dbus_directory_open (dirname, &tmp_error); - - if (dir == NULL) -- goto failed; -+ { -+ retval = TRUE; -+ goto failed; -+ } - -- dbus_error_init (&tmp_error); - while (_dbus_directory_get_next_file (dir, &filename, &tmp_error)) - { - DBusString full_path; -- cgit 1.4.1 From 6e353bb17f3ccd032d72c32a7b2e51fb86c80ccf Mon Sep 17 00:00:00 2001 From: Brad Ediger Date: Mon, 2 May 2016 15:42:09 -0500 Subject: ruby: update 2.3 series to 2.3.1 --- pkgs/development/interpreters/ruby/default.nix | 9 ++++----- pkgs/development/interpreters/ruby/patchsets.nix | 8 ++++---- pkgs/top-level/all-packages.nix | 4 ++-- 3 files changed, 10 insertions(+), 11 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/ruby/default.nix b/pkgs/development/interpreters/ruby/default.nix index 2ff960f6fcc6c..8db9dd4eaf9ab 100644 --- a/pkgs/development/interpreters/ruby/default.nix +++ b/pkgs/development/interpreters/ruby/default.nix @@ -206,15 +206,14 @@ in { }; }; - ruby_2_3_0 = generic { + ruby_2_3_1 = generic { majorVersion = "2"; minorVersion = "3"; - teenyVersion = "0"; + teenyVersion = "1"; patchLevel = "0"; sha256 = { - # src = "1ssq3c23ay57ypfis47y2n817hfmb71w0xrdzp57j6bv12jqmgrx"; - src = "01z5cya4a7y751d4pb3aak5qcwmmvnwkbgz9z171p8hsbw7acnxs"; - git = "0nl0pp96m0jxi422mqx09jqn9bff90pzz0xxa0ikrx7by0g00npg"; + src = "1kbxg72las93w0y553cxv3lymy2wvij3i3pg1y9g8aq3na676z5q"; + git = "0dv1rf5f9lj3icqs51bq7ljdcf17sdclmxm9hilwxps5l69v5q9r"; }; }; } diff --git a/pkgs/development/interpreters/ruby/patchsets.nix b/pkgs/development/interpreters/ruby/patchsets.nix index ded72b8695ecb..0e81db4e047f7 100644 --- a/pkgs/development/interpreters/ruby/patchsets.nix +++ b/pkgs/development/interpreters/ruby/patchsets.nix @@ -54,9 +54,9 @@ rec { "${patchSet}/patches/ruby/2.2.3/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.2.3/railsexpress/03-display-more-detailed-stack-trace.patch" ]; - "2.3.0" = ops useRailsExpress [ - "${patchSet}/patches/ruby/2.3.0/railsexpress/01-skip-broken-tests.patch" - "${patchSet}/patches/ruby/2.3.0/railsexpress/02-improve-gc-stats.patch" - "${patchSet}/patches/ruby/2.3.0/railsexpress/03-display-more-detailed-stack-trace.patch" + "2.3.1" = ops useRailsExpress [ + "${patchSet}/patches/ruby/2.3/head/railsexpress/01-skip-broken-tests.patch" + "${patchSet}/patches/ruby/2.3/head/railsexpress/02-improve-gc-stats.patch" + "${patchSet}/patches/ruby/2.3/head/railsexpress/03-display-more-detailed-stack-trace.patch" ]; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4126d518076a8..1194651e0b6aa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5593,7 +5593,7 @@ in ruby_2_0_0 ruby_2_1_7 ruby_2_2_3 - ruby_2_3_0; + ruby_2_3_1; # Ruby aliases ruby = ruby_2_3; @@ -5601,7 +5601,7 @@ in ruby_2_0 = ruby_2_0_0; ruby_2_1 = ruby_2_1_7; ruby_2_2 = ruby_2_2_3; - ruby_2_3 = ruby_2_3_0; + ruby_2_3 = ruby_2_3_1; scsh = callPackage ../development/interpreters/scsh { }; -- cgit 1.4.1 From 84bf43a702026ec02355379490ef881a4ee75af5 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 3 May 2016 00:17:45 +0000 Subject: openjdk: 8u76 -> 8u92 --- pkgs/development/compilers/openjdk/8.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/openjdk/8.nix b/pkgs/development/compilers/openjdk/8.nix index 7ba6b56a8f38c..0eb427754b38b 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}"; -- cgit 1.4.1 From 7a595cdfc308b85bbc49e5f318a0809fe734c5f6 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 04:11:44 +0200 Subject: libpwquality: 1.2.3 -> 1.3.0 --- pkgs/development/libraries/libpwquality/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libpwquality/default.nix b/pkgs/development/libraries/libpwquality/default.nix index aaa39783fa724..fa272f2ec6f19 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 ]; -- cgit 1.4.1 From 49fd7d9d086483bf83911fbf292bd2f229c2ff21 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 04:21:44 +0200 Subject: autoconf-archive: 2015.09.25 -> 2016.03.20 --- pkgs/development/tools/misc/autoconf-archive/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/misc/autoconf-archive/default.nix b/pkgs/development/tools/misc/autoconf-archive/default.nix index 31bd4fb1c4338..70dccdcd626f6 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; { -- cgit 1.4.1 From 6ca5c3667b68ed6a7f11a68201ef59730179c3e9 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 3 May 2016 08:59:18 +0200 Subject: 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 - .../libraries/kde-frameworks-5.19/bluez-qt.nix | 17 - .../libraries/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 -- .../kde-frameworks-5.19/extra-cmake-modules/series | 1 - .../extra-cmake-modules/setup-hook.sh | 81 --- .../libraries/kde-frameworks-5.19/fetchsrcs.sh | 57 --- .../kde-frameworks-5.19/frameworkintegration.nix | 17 - .../libraries/kde-frameworks-5.19/kactivities.nix | 22 - .../libraries/kde-frameworks-5.19/kapidox.nix | 12 - .../libraries/kde-frameworks-5.19/karchive.nix | 11 - .../kauth/cmake-install-paths.patch | 17 - .../kde-frameworks-5.19/kauth/default.nix | 16 - .../libraries/kde-frameworks-5.19/kauth/series | 1 - .../libraries/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 - .../libraries/kde-frameworks-5.19/kcompletion.nix | 14 - .../libraries/kde-frameworks-5.19/kconfig.nix | 16 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kde-frameworks-5.19/kconfigwidgets/default.nix | 17 - .../libraries/kde-frameworks-5.19/kcoreaddons.nix | 16 - .../libraries/kde-frameworks-5.19/kcrash.nix | 16 - .../libraries/kde-frameworks-5.19/kdbusaddons.nix | 17 - .../libraries/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 - .../kde-frameworks-5.19/kdelibs4support/series | 1 - .../kdelibs4support/setup-hook.sh | 1 - .../kde-frameworks-5.19/kdesignerplugin.nix | 34 -- .../libraries/kde-frameworks-5.19/kdesu.nix | 13 - .../libraries/kde-frameworks-5.19/kdewebkit.nix | 13 - .../libraries/kde-frameworks-5.19/kdnssd.nix | 13 - .../kde-frameworks-5.19/kdoctools/default.nix | 19 - .../kdoctools/kdoctools-no-find-docbook-xml.patch | 12 - .../libraries/kde-frameworks-5.19/kemoticons.nix | 17 - .../kfilemetadata/cmake-install-paths.patch | 13 - .../kde-frameworks-5.19/kfilemetadata/default.nix | 14 - .../kde-frameworks-5.19/kfilemetadata/series | 1 - .../libraries/kde-frameworks-5.19/kglobalaccel.nix | 23 - .../libraries/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 - .../kde-frameworks-5.19/kiconthemes/default.nix | 18 - .../kde-frameworks-5.19/kiconthemes/series | 1 - .../libraries/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 - .../libraries/kde-frameworks-5.19/kio/default.nix | 33 -- .../kio/samba-search-path.patch | 28 - .../libraries/kde-frameworks-5.19/kio/series | 1 - .../libraries/kde-frameworks-5.19/kitemmodels.nix | 11 - .../libraries/kde-frameworks-5.19/kitemviews.nix | 11 - .../libraries/kde-frameworks-5.19/kjobwidgets.nix | 16 - .../libraries/kde-frameworks-5.19/kjs.nix | 16 - .../libraries/kde-frameworks-5.19/kjsembed.nix | 17 - .../libraries/kde-frameworks-5.19/kmediaplayer.nix | 15 - .../libraries/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 - .../kpackage/qdiriterator-follow-symlinks.patch | 26 - .../libraries/kde-frameworks-5.19/kpackage/series | 2 - .../libraries/kde-frameworks-5.19/kparts.nix | 17 - .../libraries/kde-frameworks-5.19/kpeople.nix | 15 - .../libraries/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 - .../kde-frameworks-5.19/ktexteditor/default.nix | 22 - .../ktexteditor/no-qcoreapplication.patch | 36 -- .../kde-frameworks-5.19/ktexteditor/series | 1 - .../libraries/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 --------------------- .../libraries/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 (limited to 'pkgs/development') 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 e61c4bb86e7c7..0000000000000 --- 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 98721876c1204..0000000000000 --- 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 38c41d9271d86..0000000000000 --- 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 f981b0516f720..0000000000000 --- 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 44cc99daf261b..0000000000000 --- 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 bb96048d6ff56..0000000000000 --- 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 1c2ea70442d32..0000000000000 --- 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 a74340a6dc969..0000000000000 --- 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 b4569e50a5f73..0000000000000 --- 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 56ed09f4ea59e..0000000000000 --- 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 7937e6f8bed92..0000000000000 --- 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 26987c385ad5d..0000000000000 --- 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 3225098f43980..0000000000000 --- 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 647be8f052c39..0000000000000 --- 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 a8d9a0003c3b8..0000000000000 --- 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 c66f5ecd008f8..0000000000000 --- 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 1352d8c5821f5..0000000000000 --- 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 d2689425c3876..0000000000000 --- 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 1a469ab4db6da..0000000000000 --- 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 0d861fa95012d..0000000000000 --- 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 dbbb783ac6152..0000000000000 --- 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 53a69a69b69c4..0000000000000 --- 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 e393774f16a52..0000000000000 --- 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 e132afe598866..0000000000000 --- 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 7a6c0ee90534f..0000000000000 --- 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 0e14d06edd367..0000000000000 --- 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 f3a1db7bd4841..0000000000000 --- 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 bbab78ccb4090..0000000000000 --- 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 d2ceab31d14bb..0000000000000 --- 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 74d107466cfc4..0000000000000 --- 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 47ae2d68c68e4..0000000000000 --- 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 843db83a99b23..0000000000000 --- 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 eabb702544830..0000000000000 --- 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 9b08ab208774a..0000000000000 --- 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 21ac2e83b5dae..0000000000000 --- 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 cbc114ccca036..0000000000000 --- 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 364fbd6a720bd..0000000000000 --- 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 d361313d1d494..0000000000000 --- 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 f00432b0c9ce4..0000000000000 --- 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 f67c19f42395a..0000000000000 --- 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 4e3a33efab32b..0000000000000 --- 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 d165f84e3a2dd..0000000000000 --- 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 732f7b69c828d..0000000000000 --- 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 9bb4831cf8da2..0000000000000 --- 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 d2689425c3876..0000000000000 --- 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 c535b3590a388..0000000000000 --- 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 bc4e9ab11843a..0000000000000 --- 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 d40df466ebbdc..0000000000000 --- 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 268006512e7c3..0000000000000 --- 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 5b3b15d5d5b5b..0000000000000 --- 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 b78b25582bebd..0000000000000 --- 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 ab5cc8a3edb27..0000000000000 --- 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 fc0865600239f..0000000000000 --- 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 49d66bbcc2c64..0000000000000 --- 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 9c76079a382a8..0000000000000 --- 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 5f644d7c424e2..0000000000000 --- 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 a2131ff338505..0000000000000 --- 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 c9ad46b41bb76..0000000000000 --- 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 77ca154500474..0000000000000 --- 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 a9024d771cc33..0000000000000 --- 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 931019ce495d7..0000000000000 --- 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 746edf12eea03..0000000000000 --- 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 768720f178c87..0000000000000 --- 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 22eef2d47bde6..0000000000000 --- 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 460458b22323a..0000000000000 --- 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 5bcd6f3014624..0000000000000 --- 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 7e301dd0f2683..0000000000000 --- 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 dd99d2d4f1e57..0000000000000 --- 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 e9d7444481480..0000000000000 --- 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 aea1b0d31a0d9..0000000000000 --- 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 ddbf17d00064c..0000000000000 --- 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 9b7f076efc70e..0000000000000 --- 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 1c3e0b2cbc519..0000000000000 --- 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 4c3877e7efd2f..0000000000000 --- 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 c16f51b5ac3cd..0000000000000 --- 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 2e34e6f674cee..0000000000000 --- 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 7c6f079feaa7c..0000000000000 --- 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 12d2b54d0eb36..0000000000000 --- 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 3d8397d8ee2df..0000000000000 --- 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 685c685261195..0000000000000 --- 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 3a27d85b9166e..0000000000000 --- 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 b8df6a5f4c0d4..0000000000000 --- 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 19ab1e1e55138..0000000000000 --- 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 46cd23829a2fd..0000000000000 --- 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 e332d4ff9a832..0000000000000 --- 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 3cf0f847d83d5..0000000000000 --- 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 5ade5f63a8d04..0000000000000 --- 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 d95f44d3fecfd..0000000000000 --- 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 09ab1f2200de3..0000000000000 --- 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 f081d5f9170e3..0000000000000 --- 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 20a300b68bc87..0000000000000 --- 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 7d7f769d6a9be..0000000000000 --- 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 333378bd14316..0000000000000 --- 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 ee350f8e15367..0000000000000 --- 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 d8846f7772318..0000000000000 --- 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 afd125e3c5973..0000000000000 --- 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 943fe04a1c92c..0000000000000 --- 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 b86c0b71224d6..0000000000000 --- 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 52817921cc723..0000000000000 --- 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 ]; - }; -} -- cgit 1.4.1 From a42f8459253d8f226d7d4611f057fc4d578a658c Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 2 May 2016 09:53:29 +0200 Subject: coq-dpdgraph: init at 0.5 --- pkgs/development/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 (limited to 'pkgs/development') diff --git a/pkgs/development/coq-modules/dpdgraph/default.nix b/pkgs/development/coq-modules/dpdgraph/default.nix new file mode 100644 index 0000000000000..0dec05ebd3f5d --- /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 3137b95b07ab9..85c2afd4a5407 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 {}; -- cgit 1.4.1 From 372782d1f02138ffd5b1518a38545e88014c63c8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 24 Apr 2016 23:44:10 +0200 Subject: 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 + .../haskell-modules/configuration-lts-1.10.nix | 36 + .../haskell-modules/configuration-lts-1.11.nix | 36 + .../haskell-modules/configuration-lts-1.12.nix | 36 + .../haskell-modules/configuration-lts-1.13.nix | 36 + .../haskell-modules/configuration-lts-1.14.nix | 37 + .../haskell-modules/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 + .../haskell-modules/configuration-lts-2.10.nix | 37 + .../haskell-modules/configuration-lts-2.11.nix | 37 + .../haskell-modules/configuration-lts-2.12.nix | 37 + .../haskell-modules/configuration-lts-2.13.nix | 37 + .../haskell-modules/configuration-lts-2.14.nix | 37 + .../haskell-modules/configuration-lts-2.15.nix | 37 + .../haskell-modules/configuration-lts-2.16.nix | 38 + .../haskell-modules/configuration-lts-2.17.nix | 38 + .../haskell-modules/configuration-lts-2.18.nix | 38 + .../haskell-modules/configuration-lts-2.19.nix | 38 + .../haskell-modules/configuration-lts-2.2.nix | 37 + .../haskell-modules/configuration-lts-2.20.nix | 38 + .../haskell-modules/configuration-lts-2.21.nix | 39 + .../haskell-modules/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 + .../haskell-modules/configuration-lts-3.10.nix | 52 + .../haskell-modules/configuration-lts-3.11.nix | 52 + .../haskell-modules/configuration-lts-3.12.nix | 52 + .../haskell-modules/configuration-lts-3.13.nix | 52 + .../haskell-modules/configuration-lts-3.14.nix | 55 + .../haskell-modules/configuration-lts-3.15.nix | 55 + .../haskell-modules/configuration-lts-3.16.nix | 55 + .../haskell-modules/configuration-lts-3.17.nix | 55 + .../haskell-modules/configuration-lts-3.18.nix | 56 + .../haskell-modules/configuration-lts-3.19.nix | 57 + .../haskell-modules/configuration-lts-3.2.nix | 46 + .../haskell-modules/configuration-lts-3.20.nix | 57 + .../haskell-modules/configuration-lts-3.21.nix | 58 + .../haskell-modules/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 + .../haskell-modules/configuration-lts-5.10.nix | 114 + .../haskell-modules/configuration-lts-5.11.nix | 120 + .../haskell-modules/configuration-lts-5.12.nix | 123 + .../haskell-modules/configuration-lts-5.13.nix | 128 + .../haskell-modules/configuration-lts-5.14.nix | 8149 ++++++++++++++++++++ .../haskell-modules/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 | 3948 +++++++--- 88 files changed, 23738 insertions(+), 1015 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 (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 5d5e07c3a481c..20e87e83c293f 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 994ca185089c7..8142d61db1ff7 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 13288cf6eefd4..93da6c8ea2692 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 a2a328b65c003..139587df0ca4c 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 8947dce5d90ca..ebf71b233b281 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 74c95cb7400d0..98602756736a1 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 1e44d58aefdcd..36e7461a8cf6d 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 f5075c4afc294..5b1578fd4c3d1 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 b1e9391c5f862..ee69deb9f1b80 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 4f833f432c8d9..00e5a44a804a9 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 988c7e3714a92..9a04c8e8c94ce 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 0fe6da3b53689..33d0a5b299bab 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 6523554f05222..3fcd44271df66 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 9b192de01660c..1cedbc8be952c 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 a2021991e508d..3483e76ea3175 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 b5fdfd2a4aa33..5cc0f9fffde77 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 2ce53895ab7be..7ac7464aa4529 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 5092c1f02a788..b5e1d26ff190c 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 de2508852e7ed..5e5d5ff2a2f58 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 72af4fc6c77e3..345a0efa8f457 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 b7b754a984f37..4b1d4e7c9a241 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 6cb77fd1f9bc3..54c9bc0f5bf2f 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 fa5928d6b7234..1e4b541f52465 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 8ff45e0c7df52..490801bae1b44 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 3b13848d98a90..a9e84b655238c 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 14570e607c83c..17f0dc577668c 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 706e342f6b21f..248c9d5bdb3b7 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 7cad852e803fd..f2b2e400ab79d 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 951fd6c2f8d6e..aabae0822bf47 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 8adbc6fec84cc..b1f729fc28fd8 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 3e319aa5ed43d..723d0c93c377f 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 0a58df9453524..eaf1fea3dae80 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 e7a9357da6a46..073161b05b0cf 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 de4b6c8fbb8a9..de94de5ae3c22 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 b1785347434ba..ce113fd1467a6 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 13fd59373ee59..dae40ae5b4e2a 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 9718fd66f0860..36373c0e79abb 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 c9c1be69df44c..638c1833dc367 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 5548314dff3fa..7bc9200c11097 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 9becf92e39a15..17cfdfa1bccdc 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 c770cc19433aa..54bdf226282f4 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 b18878eda989b..53a6ba088d394 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 a310f5c227974..4bc47cb0bd844 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 6f38b78b48a90..d9fbbb3de7222 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 e082c07865a39..6a5856b036bc2 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 dc44bbbcf456f..e69cfb6680b5d 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 564fca0b8dfa8..28c84d54ed93f 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 80084167d43a8..9263d961f7050 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 a7a66f3782424..4a0c8ae04f264 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 928bc177e6aa7..f87cc10c8a90b 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 45442c782c031..4d0b4b51f4bb2 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 3a2e3d30d4eff..79c0bd0d594dc 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 49d22021c49a1..25a1f7d6102f2 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 c296a9132a120..b060ad42b00cd 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 501a11cc54cff..9d30a0fc1832d 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 8eed33d20a22b..ef8133df5c8ab 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 a41538e480533..16e30cfc4250d 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 53be954857ca9..39f1eaddce5f2 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 58bef4e1657ef..7fcfebf22301b 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 ac0f58b31bd2e..e8f29e893e541 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 438cbbc5a1925..25e927b694c90 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 0b13ec7c6b0b7..85f58d4dc7549 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 70650c9956aec..7ac520afb6008 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 4f178b4b1cfe7..fc4a7679ff465 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 cf8d12a649393..791a8a909c597 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 3cf88fb2e61cf..63a27278bc012 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 104697b1a4bfe..b04324a3e14c8 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 be7b35aabf754..3a41fc07bbae6 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 5613b9d911968..f242179e73a4e 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 dad52f109ee05..c9e4182196f0b 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 53c7128416326..a1ebe60a9ecaf 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 17e11586d38c4..7c814e27ccfe9 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 bfb3b73199801..ea20f7e7d14cd 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 4044a1f41a0ad..38acdb238cfe8 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 5d5a3767d6fcd..ae02a8e85a58e 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 b8353d4f9b310..6b0728a07d74e 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 75d72e126f1a4..c7c616b0c09a4 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 0000000000000..e05ecd581b36e --- /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 0000000000000..c0e68130c4a74 --- /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 7dbaa3da18b99..a7e35e6c137d5 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 4368c6406046a..ce377cc70cb66 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 d54a61d0d9de4..f10586dcc5aef 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 3755d3ed35cec..7743af0949ef2 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 53643599858cc..1299567a772f4 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 b8ae4e152110c..8b3c63bdb5160 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 ddb17e5922d75..8454d0b5a632f 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 3bb8e3ad80201..1ca18de21a3a7 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 903f2c3a3a14e..8a88cce67538d 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,13 +23745,14 @@ 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" = callPackage + "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 @@ -23624,6 +23774,35 @@ self: { 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; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "aeson-compat" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat, base-orphans + , bytestring, containers, exceptions, hashable, nats, QuickCheck + , quickcheck-instances, scientific, semigroups, tagged, tasty + , tasty-hunit, tasty-quickcheck, text, time, time-locale-compat + , unordered-containers, vector + }: + mkDerivation { + pname = "aeson-compat"; + version = "0.3.3.0"; + sha256 = "33a6a4c8d41b3ee08432c1ed0f118b595cd582cffb81b8621ad0bbd3164eb7e4"; + libraryHaskellDepends = [ + aeson attoparsec base base-compat bytestring containers exceptions + hashable nats scientific semigroups tagged text time + time-locale-compat unordered-containers vector + ]; + testHaskellDepends = [ + aeson attoparsec base base-compat base-orphans bytestring + containers exceptions hashable nats QuickCheck quickcheck-instances + scientific semigroups tagged tasty tasty-hunit tasty-quickcheck + text time time-locale-compat unordered-containers vector + ]; homepage = "https://github.com/phadej/aeson-compat#readme"; description = "Compatibility layer for aeson"; license = stdenv.lib.licenses.bsd3; @@ -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,29 +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; }) {}; - "autoexporter" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath }: + "auto-update" = callPackage + ({ mkDerivation, base }: mkDerivation { - pname = "autoexporter"; - version = "0.2.0"; - sha256 = "e4c0145475197dd5dd61639d88c406090d472daa7bac28e9be70a230994bb8db"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal directory filepath ]; - executableHaskellDepends = [ base ]; - homepage = "https://github.com/tfausak/autoexporter#readme"; - description = "Automatically re-export modules"; + 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_0_2_1" = callPackage + "autoexporter" = callPackage ({ mkDerivation, base, Cabal, directory, filepath }: mkDerivation { pname = "autoexporter"; - version = "0.2.1"; - sha256 = "fe46d1f434862dfaa4fd245c66d4a96ea8c4f3f8c3314ca6fc844e97e71097e4"; + version = "0.2.2"; + sha256 = "2ad4c6d948984c0a5542f5ce87d806b3597088083bc179217d36d08380880d03"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base Cabal directory filepath ]; @@ -34756,7 +34936,6 @@ self: { 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 @@ -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,35 +123115,32 @@ 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-prim" = callPackage - ({ mkDerivation, base, bytestring, hspec, QuickCheck, random - , vector + "hw-parser" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, hw-prim + , mono-traversable, text }: mkDerivation { - pname = "hw-prim"; - version = "0.0.0.7"; - sha256 = "ea9c3334e62e4fdaeca3db78b877621750529fa23323b1a7bee8976c6b5ba4f6"; - 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"; + 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_0_0_0_8" = callPackage + "hw-prim" = callPackage ({ mkDerivation, base, bytestring, hspec, QuickCheck, random , vector }: mkDerivation { pname = "hw-prim"; - version = "0.0.0.8"; - sha256 = "47c84f878d396475590223529fd9d70b277e8345a1f1b2c0d7956d968a5b14b1"; + version = "0.0.0.10"; + sha256 = "641a1da0488664d12438f396f08577e02f9ca43b53a6f00e52085f63a5ab776e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring random vector ]; @@ -122331,7 +123149,6 @@ self: { 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 @@ -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,19 +190068,34 @@ 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" = callPackage + "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; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-blaze" = callPackage + ({ mkDerivation, base, blaze-html, http-media, servant }: + mkDerivation { + pname = "servant-blaze"; + 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"; license = stdenv.lib.licenses.bsd3; @@ -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,9 +236748,39 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-account" = callPackage + "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 @@ -235091,6 +236801,30 @@ self: { 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 + ({ 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.2"; + sha256 = "38d5c5795a6acb487f408b0bd7ab3fd874f3d99c5df94202dcbb436847e7eef3"; + 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; }) {}; "yesod-auth-account-fork" = callPackage @@ -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 -- cgit 1.4.1 From ec493075184f342d29b125457a9a84ccdaf9419a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 26 Apr 2016 17:14:36 +0200 Subject: haskell-hakyll: fix test suite by providing "rev" in test environment --- pkgs/development/haskell-modules/configuration-common.nix | 1 - 1 file changed, 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 363ddcbea8869..3616847dfa058 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; -- cgit 1.4.1 From ddb8c06c2d82c44077b2b73606297a70191c3ca2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 25 Apr 2016 10:10:44 +0200 Subject: haskell-yi: mark as broken --- pkgs/development/haskell-modules/configuration-common.nix | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 3616847dfa058..4a9857b20dfde 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; + } -- cgit 1.4.1 From 967901f1957b98df04c91d6a54b7b55afe07fb97 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Apr 2016 09:48:20 +0200 Subject: 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(-) (limited to 'pkgs/development') 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 1bdd454d4080f..89755799af8c2 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 db0aa51492fe0..d4c3ae73114d0 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 e2bb4f00d7872..977fffbd5584b 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 e10136a42ee08..4ce544534fc39 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; -- cgit 1.4.1 From 66ff540ee6afc52c443296dbfdc7683e608399ea Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Apr 2016 11:22:15 +0200 Subject: 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(-) (limited to 'pkgs/development') 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 555223b759442..3611b19db1b68 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; -- cgit 1.4.1 From 0ba62f7150ed1b2756adb52b1bac6d3d7d93831f Mon Sep 17 00:00:00 2001 From: rardiol Date: Tue, 3 May 2016 06:19:19 -0300 Subject: 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 (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/alure/default.nix b/pkgs/development/libraries/alure/default.nix new file mode 100644 index 0000000000000..200ff1ca2e7f2 --- /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 525adbc0a123d..9e4a0954272bc 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 bbcbd1920e9da..571cf311545a6 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 85c2afd4a5407..cb067817f5486 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 {}; -- cgit 1.4.1 From c0f4361902d786459b29d69913f606a4a7f92d1c Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 1 May 2016 14:41:52 +0200 Subject: php: Fix openssl module build --- pkgs/development/interpreters/php/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index c9fbf5c5de6fc..d6b4e03a2f661 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 = { -- cgit 1.4.1 From a6fdcea877889ff56f533e7bda7c0c57e56f0b72 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 24 Apr 2016 17:39:36 +0200 Subject: 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(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/cimg/builder.sh b/pkgs/development/libraries/cimg/builder.sh index bbd5f71255178..6473395493c39 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 dc397adf49153..722852f12700c 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; -- cgit 1.4.1 From d8230abeed7168a044a231797678754c671c160b Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 03:30:17 +0200 Subject: libass: 0.12.2 -> 0.13.2 --- pkgs/development/libraries/libass/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libass/default.nix b/pkgs/development/libraries/libass/default.nix index ab300729accfc..1acd71c30c84b 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 = [ -- cgit 1.4.1 From ed64199876f8329fa847f9fb2adf97df2b130145 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 02:46:24 +0200 Subject: libdwg: 0.3 -> 0.6 --- pkgs/development/libraries/libdwg/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libdwg/default.nix b/pkgs/development/libraries/libdwg/default.nix index a80c0677a3bdb..8ffa1ff819240 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/; -- cgit 1.4.1 From 13b9d32917bc613f293688989bfa6e25fe5f3e59 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 02:25:25 +0200 Subject: libu2f-host: 1.0.0 -> 1.1.1 --- pkgs/development/libraries/libu2f-host/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libu2f-host/default.nix b/pkgs/development/libraries/libu2f-host/default.nix index dc2481a2e85b2..98dbe517591f3 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 ]; -- cgit 1.4.1 From 0ab30ecf06d5bf5271e4d256954f734d723b6f0a Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:20:49 +0200 Subject: libopus: 1.1 -> 1.1.2 --- pkgs/development/libraries/libopus/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libopus/default.nix b/pkgs/development/libraries/libopus/default.nix index b8951e66c8bdb..20101fe6fe31e 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" ]; -- cgit 1.4.1 From 7ac522ad83f7d952bc2dd193f77c5e732e575413 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:20:33 +0200 Subject: libevdev: 1.4.5 -> 1.4.6 --- pkgs/development/libraries/libevdev/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libevdev/default.nix b/pkgs/development/libraries/libevdev/default.nix index c1587cedd169e..3ff40141b164b 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 ]; -- cgit 1.4.1 From b4a5bb3d4be7104bf933a0012af522cb3081d241 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:20:18 +0200 Subject: libev: 4.20 -> 4.22 --- pkgs/development/libraries/libev/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libev/default.nix b/pkgs/development/libraries/libev/default.nix index 0472aeef694a4..37e0c9b3431ea 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 = { -- cgit 1.4.1 From 9f99116772ffd2a394f9fe2f084b6cd67c099d96 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:15:48 +0200 Subject: libnatspec: 0.2.6 -> 0.3.0 --- pkgs/development/libraries/libnatspec/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libnatspec/default.nix b/pkgs/development/libraries/libnatspec/default.nix index 7dafe3434f9f0..cdde02c361fa3 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 = { -- cgit 1.4.1 From 738661953878ed0c67c23bbfffe73d05da25c190 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:06:26 +0200 Subject: libseccomp: 2.2.3 -> 2.3.0 --- pkgs/development/libraries/libseccomp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libseccomp/default.nix b/pkgs/development/libraries/libseccomp/default.nix index 444b68a23ee61..63a60820e3fc2 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 ]; -- cgit 1.4.1 From 57b5c22feb90376bea9e0fe4a4c3405bb59eeacf Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:06:10 +0200 Subject: libsecret: 0.18 -> 0.18.5 --- pkgs/development/libraries/libsecret/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libsecret/default.nix b/pkgs/development/libraries/libsecret/default.nix index 3ceabc3f1ac3b..bb8d971d6d419 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 ]; -- cgit 1.4.1 From dc576f940383c379692badf968800bbb228695eb Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 00:12:59 +0200 Subject: libxmp: 4.3.11 -> 4.3.12 --- pkgs/development/libraries/libxmp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libxmp/default.nix b/pkgs/development/libraries/libxmp/default.nix index 106fcee257f00..28584d14a8773 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"; }; } -- cgit 1.4.1 From dd3c18fe2223e14444a7417012b707a679a2e808 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 22:50:28 +0200 Subject: openh264: 1.4.0 -> 1.5.0 --- pkgs/development/libraries/openh264/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/openh264/default.nix b/pkgs/development/libraries/openh264/default.nix index 76188d484f916..71983b30a2cb3 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 ]; -- cgit 1.4.1 From 1ec3e7197165dfc5ec59e6c202c1f0e3410b6441 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 22:21:49 +0200 Subject: libdvdread: 5.0.2 -> 5.0.3 --- pkgs/development/libraries/libdvdread/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libdvdread/default.nix b/pkgs/development/libraries/libdvdread/default.nix index 493be4c8f86b6..ef717fedb2270 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]; -- cgit 1.4.1 From bdafc6df04d650518525e8e4bb27d442a60a339a Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Tue, 3 May 2016 10:42:29 -0400 Subject: 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(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index 1e0f419c5f73c..fa84b89bd3890 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"; }; } -- cgit 1.4.1 From 6d55b2e9c0a8bd72cb4375c55a5789682cb96b1c Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 3 May 2016 17:18:04 +0200 Subject: 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(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libressl/2.2.nix b/pkgs/development/libraries/libressl/2.2.nix index 09505217ae2db..280c2e6bc943b 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 129456e6657c8..a5052a9b499d2 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; -- cgit 1.4.1 From 980bca286e4bc509fb4321b75481d9e683e5a1b4 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 3 May 2016 21:29:16 +0300 Subject: 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 (limited to 'pkgs/development') 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 907772b2af8af..0000000000000 --- 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 907772b2af8af..0000000000000 --- 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 -- cgit 1.4.1 From 147d942b545c7d6c020534fd2987d5e33dc00b6f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 3 May 2016 13:34:50 -0500 Subject: 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(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/julia/git.nix b/pkgs/development/compilers/julia/git.nix index b6d917865d838..00c4730cf85ff 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" ]; }; } -- cgit 1.4.1 From d4d6d9d3d2f85892dfa3fabab2dfe5f250b054b7 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 19:17:14 +0200 Subject: ortp: 0.24.2 -> 0.25.0 --- pkgs/development/libraries/ortp/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/ortp/default.nix b/pkgs/development/libraries/ortp/default.nix index 746f10eebed14..15bd39a031f3a 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; { -- cgit 1.4.1 From b1bf11881a9e2f17c410f5ba8d03756daf71c975 Mon Sep 17 00:00:00 2001 From: obadz Date: Tue, 3 May 2016 22:54:06 +0100 Subject: spdlog: init at 292bdc5 --- pkgs/development/libraries/spdlog/default.nix | 36 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/libraries/spdlog/default.nix (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/spdlog/default.nix b/pkgs/development/libraries/spdlog/default.nix new file mode 100644 index 0000000000000..1c3952e7adfb8 --- /dev/null +++ b/pkgs/development/libraries/spdlog/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitHub, cmake }: + +stdenv.mkDerivation rec { + name = "spdlog-${version}"; + version = stdenv.lib.strings.substring 0 7 rev; + rev = "292bdc5eb4929f183c78d2c67082b715306f81c9"; + + src = fetchFromGitHub { + owner = "gabime"; + repo = "spdlog"; + inherit rev; + sha256 = "1b6b0c81a8hisaibqlzj5mrk3snrfl8p5sqa056q2f02i62zksbn"; + }; + + buildInputs = [ cmake ]; + + # cmakeFlags = [ "-DSPDLOG_BUILD_EXAMPLES=ON" ]; + + outputs = [ "out" "doc" ]; + + postInstall = '' + mkdir -p $out/share/doc/spdlog + cp -rv ../example $out/share/doc/spdlog + ''; + + meta = with stdenv.lib; { + description = "Very fast, header only, C++ logging library."; + homepage = https://github.com/gabime/spdlog; + license = licenses.mit; + maintainers = with maintainers; [ obadz ]; + platforms = platforms.all; + + # This is a header-only library, no point in hydra building it: + hydraPlatforms = []; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ffcbeddfb93f7..5f901adb856ce 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16709,6 +16709,8 @@ in bullet = callPackage ../development/libraries/bullet {}; + spdlog = callPackage ../development/libraries/spdlog { }; + dart = callPackage ../development/interpreters/dart { }; httrack = callPackage ../tools/backup/httrack { }; -- cgit 1.4.1 From 63a63c53d6de08543c08b19f7a62b930b91d19d0 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 23:40:55 +0200 Subject: poppler: 0.36.0 -> 0.43.0 --- pkgs/development/libraries/poppler/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix index ebcdcc2b3efdf..ae20cb4090c44 100644 --- a/pkgs/development/libraries/poppler/default.nix +++ b/pkgs/development/libraries/poppler/default.nix @@ -5,8 +5,8 @@ }: let # beware: updates often break cups_filters build - version = "0.36.0"; # even major numbers are stable - sha256 = "13i440kv873wgmw50rs4d1v05cj0r7bqnghd70hp9vy44dxhdk4k"; + version = "0.43.0"; # even major numbers are stable + sha256 = "0mi4zf0pz3x3fx3ir7szz1n57nywgbpd4mp2r7mvf47f4rmf4867"; in stdenv.mkDerivation rec { name = "poppler-${suffix}-${version}"; -- cgit 1.4.1 From 3e401a8d01ddb21fe43f77124bfbefb7c82299ef Mon Sep 17 00:00:00 2001 From: José Romildo Malaquias Date: Tue, 3 May 2016 22:32:57 -0300 Subject: imlib2: 1.4.8 -> 1.4.9 --- pkgs/development/libraries/imlib2/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/imlib2/default.nix b/pkgs/development/libraries/imlib2/default.nix index 8d79fcc50a8ec..85e9979ebb078 100644 --- a/pkgs/development/libraries/imlib2/default.nix +++ b/pkgs/development/libraries/imlib2/default.nix @@ -1,17 +1,19 @@ { stdenv, fetchurl, xlibsWrapper, libjpeg, libtiff, giflib, libpng, bzip2, pkgconfig }: stdenv.mkDerivation rec { - name = "imlib2-1.4.8"; + name = "imlib2-1.4.9"; src = fetchurl { url = "mirror://sourceforge/enlightenment/${name}.tar.bz2"; - sha256 = "0xxhgkd1axlcmf3kp1d7naiygparpg8l3sg3d263rhl2z0gm7aw9"; + sha256 = "08809xxk2555yj6glixzw9a0x3x8cx55imd89kj3r0h152bn8a3x"; }; buildInputs = [ xlibsWrapper libjpeg libtiff giflib libpng bzip2 ]; nativeBuildInputs = [ pkgconfig ]; + enableParallelBuilding = true; + preConfigure = '' substituteInPlace imlib2-config.in \ --replace "@my_libs@" "" -- cgit 1.4.1 From 9820cb1bf24254199db05856bbb4919378ac75cb Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Wed, 4 May 2016 10:08:35 +0000 Subject: use dontBuild instead of hacks changes: * buildPhase = "true" * buildPhase = ":" --- pkgs/applications/audio/baudline/default.nix | 2 +- pkgs/applications/audio/faust/faust1.nix | 5 +- pkgs/applications/audio/faust/faust2.nix | 4 +- .../graphics/sane/backends/brscan4/default.nix | 15 +--- .../sane/backends/brscan4/udev_rules_type1.nix | 9 +-- pkgs/applications/misc/jbidwatcher/default.nix | 4 +- .../misc/terminal-notifier/default.nix | 2 +- .../version-management/cvs2svn/default.nix | 2 +- .../git-and-tools/fast-export/default.nix | 2 +- .../git-and-tools/svn2git/default.nix | 31 ++++---- .../version-management/gitolite/default.nix | 3 +- pkgs/data/fonts/aurulent-sans/default.nix | 2 +- pkgs/data/fonts/bakoma-ttf/default.nix | 12 ++-- pkgs/data/fonts/dosemu-fonts/default.nix | 3 +- pkgs/data/fonts/powerline-fonts/default.nix | 27 ++++--- pkgs/data/fonts/ttf-bitstream-vera/default.nix | 6 +- pkgs/data/fonts/vista-fonts/default.nix | 12 ++-- .../stylesheets/xslt/docbook-xsl/default.nix | 25 ++++--- pkgs/development/compilers/ghc/6.10.2-binary.nix | 2 +- pkgs/development/compilers/ghc/7.0.4-binary.nix | 2 +- pkgs/development/compilers/ghc/7.4.2-binary.nix | 2 +- pkgs/development/libraries/fmod/4.24.16.nix | 3 +- pkgs/development/libraries/fmod/default.nix | 3 +- pkgs/development/libraries/libspotify/default.nix | 15 ++-- pkgs/development/libraries/uthash/default.nix | 2 +- .../libraries/xlibs-wrapper/default.nix | 5 +- .../mobile/titaniumenv/cli/node-env.nix | 84 +++++++++++----------- .../python-modules/stringtemplate/default.nix | 19 +++-- .../tools/analysis/clang-analyzer/default.nix | 3 +- .../tools/build-managers/gradle/default.nix | 2 +- pkgs/development/tools/misc/sqitch/default.nix | 8 ++- pkgs/development/web/grails/default.nix | 2 +- .../cups/drivers/brgenml1cupswrapper/default.nix | 9 ++- pkgs/misc/cups/drivers/brgenml1lpr/default.nix | 8 +-- .../darwin/install_name_tool/default.nix | 4 +- pkgs/os-specific/darwin/osx-sdk/default.nix | 5 +- pkgs/os-specific/gnu/hurd/default.nix | 2 +- pkgs/os-specific/gnu/libpthread/default.nix | 2 +- pkgs/os-specific/gnu/mach/default.nix | 2 +- pkgs/os-specific/linux/firmware/zd1211/default.nix | 7 +- pkgs/servers/monitoring/longview/default.nix | 18 ++--- pkgs/servers/rt/default.nix | 3 +- pkgs/servers/sql/monetdb/default.nix | 7 +- pkgs/servers/x11/xquartz/default.nix | 7 +- pkgs/tools/admin/sec/default.nix | 7 +- pkgs/tools/misc/debootstrap/default.nix | 15 +--- pkgs/tools/networking/swec/default.nix | 43 +++++------ pkgs/tools/package-management/nix-repl/default.nix | 19 +++-- .../tools/package-management/nix-serve/default.nix | 25 ++++--- pkgs/tools/security/pius/default.nix | 20 +++--- pkgs/tools/text/xidel/default.nix | 2 +- pkgs/tools/text/xml/basex/default.nix | 5 +- pkgs/tools/typesetting/pygmentex/default.nix | 7 +- pkgs/tools/typesetting/tex/dblatex/default.nix | 2 +- pkgs/tools/typesetting/tex/pgf/1.x.nix | 4 +- pkgs/tools/typesetting/tex/pgf/2.x.nix | 3 +- pkgs/tools/typesetting/tex/pgf/3.x.nix | 3 +- pkgs/tools/typesetting/tex/pgfplots/default.nix | 11 +-- 58 files changed, 272 insertions(+), 286 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/applications/audio/baudline/default.nix b/pkgs/applications/audio/baudline/default.nix index 2d6b0434d6a1c..e3cef30ccdaa8 100644 --- a/pkgs/applications/audio/baudline/default.nix +++ b/pkgs/applications/audio/baudline/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { # Prebuilt binary distribution. # "patchelf --set-rpath" seems to break the application (cannot start), using # LD_LIBRARY_PATH wrapper script instead. - buildPhase = "true"; + dontBuild = true; installPhase = '' mkdir -p "$out/bin" mkdir -p "$out/libexec/baudline" diff --git a/pkgs/applications/audio/faust/faust1.nix b/pkgs/applications/audio/faust/faust1.nix index 56f7ac50227ef..20ba1c14745a1 100644 --- a/pkgs/applications/audio/faust/faust1.nix +++ b/pkgs/applications/audio/faust/faust1.nix @@ -25,7 +25,6 @@ let }; faust = stdenv.mkDerivation { - name = "faust-${version}"; inherit src; @@ -107,9 +106,7 @@ let inherit src; - configurePhase = ":"; - - buildPhase = ":"; + dontBuild = true; installPhase = '' runHook preInstall diff --git a/pkgs/applications/audio/faust/faust2.nix b/pkgs/applications/audio/faust/faust2.nix index 612a3dab99fe9..3953eb2b7e05e 100644 --- a/pkgs/applications/audio/faust/faust2.nix +++ b/pkgs/applications/audio/faust/faust2.nix @@ -132,9 +132,7 @@ let inherit src; - configurePhase = ":"; - - buildPhase = ":"; + dontBuild = true; installPhase = '' runHook preInstall diff --git a/pkgs/applications/graphics/sane/backends/brscan4/default.nix b/pkgs/applications/graphics/sane/backends/brscan4/default.nix index 7b22e88bb840b..8561c2a4ccf62 100644 --- a/pkgs/applications/graphics/sane/backends/brscan4/default.nix +++ b/pkgs/applications/graphics/sane/backends/brscan4/default.nix @@ -1,12 +1,6 @@ { 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 \ @@ -15,10 +9,7 @@ let udevRules = callPackage ./udev_rules_type1.nix {}; -in - -stdenv.mkDerivation rec { - +in stdenv.mkDerivation rec { name = "brscan4-0.4.3-3"; src = fetchurl { url = "http://download.brother.com/welcome/dlf006645/${name}.amd64.deb"; @@ -32,8 +23,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ makeWrapper patchelf coreutils udevRules ]; buildInputs = [ libusb ]; - buildPhase = ":"; - + dontBuild = true; patchPhase = '' ${myPatchElf "opt/brother/scanner/brscan4/brsaneconfig4"} @@ -47,7 +37,6 @@ stdenv.mkDerivation rec { ''; installPhase = '' - PATH_TO_BRSCAN4="opt/brother/scanner/brscan4" mkdir -p $out/$PATH_TO_BRSCAN4 cp -rp $PATH_TO_BRSCAN4/* $out/$PATH_TO_BRSCAN4 diff --git a/pkgs/applications/graphics/sane/backends/brscan4/udev_rules_type1.nix b/pkgs/applications/graphics/sane/backends/brscan4/udev_rules_type1.nix index 873240e81fca7..da136a7f9e1e6 100644 --- a/pkgs/applications/graphics/sane/backends/brscan4/udev_rules_type1.nix +++ b/pkgs/applications/graphics/sane/backends/brscan4/udev_rules_type1.nix @@ -1,8 +1,6 @@ { stdenv, fetchurl, libsaneUDevRuleNumber ? "49"}: - stdenv.mkDerivation rec { - name = "brother-udev-rule-type1-1.0.0-1"; src = fetchurl { @@ -10,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "0i0x5jw135pli4jl9mgnr5n2rrdvml57nw84yq2999r4frza53xi"; }; - buildInputs = [ ]; + dontBuild = true; unpackPhase = '' ar x $src @@ -37,9 +35,6 @@ stdenv.mkDerivation rec { 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 \ @@ -57,4 +52,4 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.unfree; maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; }; -} \ No newline at end of file +} diff --git a/pkgs/applications/misc/jbidwatcher/default.nix b/pkgs/applications/misc/jbidwatcher/default.nix index 9b74b0c93a975..a933befec5f44 100644 --- a/pkgs/applications/misc/jbidwatcher/default.nix +++ b/pkgs/applications/misc/jbidwatcher/default.nix @@ -15,9 +15,9 @@ stdenv.mkDerivation rec { jarfile = "$out/share/java/${pname}/JBidwatcher.jar"; - unpackPhase = "true"; +# unpackPhase = "true"; - buildPhase = "true"; + dontBuild = true; installPhase = '' mkdir -p "$out/bin" diff --git a/pkgs/applications/misc/terminal-notifier/default.nix b/pkgs/applications/misc/terminal-notifier/default.nix index 57ff213ae80ec..d9046c55e12ad 100644 --- a/pkgs/applications/misc/terminal-notifier/default.nix +++ b/pkgs/applications/misc/terminal-notifier/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { sha256 = "09x7vl0kddivqq3pyrk6sg1f0sv5l7nj0bmblq222zk3b09bgg8p"; }; - buildPhase = "true"; + dontBuild = true; installPhase = '' mkdir -p $out/Applications diff --git a/pkgs/applications/version-management/cvs2svn/default.nix b/pkgs/applications/version-management/cvs2svn/default.nix index 85749f978d1c9..952d9b7f21ae9 100644 --- a/pkgs/applications/version-management/cvs2svn/default.nix +++ b/pkgs/applications/version-management/cvs2svn/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { buildInputs = [python makeWrapper]; - buildPhase = "true"; + dontBuild = true; installPhase = '' python ./setup.py install --prefix=$out for i in bzr svn git; do diff --git a/pkgs/applications/version-management/git-and-tools/fast-export/default.nix b/pkgs/applications/version-management/git-and-tools/fast-export/default.nix index 5bd6995d20461..ef681c9ba7dd7 100644 --- a/pkgs/applications/version-management/git-and-tools/fast-export/default.nix +++ b/pkgs/applications/version-management/git-and-tools/fast-export/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation { buildInputs = [mercurial.python mercurial makeWrapper subversion]; - buildPhase="true"; # skip svn for now + dontBuild = true; # skip svn for now # TODO also support svn stuff # moving .py files into lib directory so that you can't pick the wrong file from PATH. diff --git a/pkgs/applications/version-management/git-and-tools/svn2git/default.nix b/pkgs/applications/version-management/git-and-tools/svn2git/default.nix index c735ef4506a41..9a19b358c90ce 100644 --- a/pkgs/applications/version-management/git-and-tools/svn2git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/svn2git/default.nix @@ -13,22 +13,21 @@ stdenv.mkDerivation { buildInputs = [ ruby makeWrapper ]; - buildPhase = "true"; - - installPhase = - '' - mkdir -p $out - cp -r lib $out/ - - mkdir -p $out/bin - substituteInPlace bin/svn2git --replace '/usr/bin/env ruby' ${ruby}/bin/ruby - cp bin/svn2git $out/bin/ - chmod +x $out/bin/svn2git - - wrapProgram $out/bin/svn2git \ - --set RUBYLIB $out/lib \ - --prefix PATH : ${git}/bin - ''; + dontBuild = true; + + installPhase = '' + mkdir -p $out + cp -r lib $out/ + + mkdir -p $out/bin + substituteInPlace bin/svn2git --replace '/usr/bin/env ruby' ${ruby}/bin/ruby + cp bin/svn2git $out/bin/ + chmod +x $out/bin/svn2git + + wrapProgram $out/bin/svn2git \ + --set RUBYLIB $out/lib \ + --prefix PATH : ${git}/bin + ''; meta = { homepage = https://github.com/nirvdrum/svn2git; diff --git a/pkgs/applications/version-management/gitolite/default.nix b/pkgs/applications/version-management/gitolite/default.nix index 60e0a79470581..5e1feacd83d40 100644 --- a/pkgs/applications/version-management/gitolite/default.nix +++ b/pkgs/applications/version-management/gitolite/default.nix @@ -10,7 +10,8 @@ stdenv.mkDerivation rec { }; buildInputs = [ git nettools perl ]; - buildPhase = "true"; + + dontBuild = true; patchPhase = '' substituteInPlace ./install --replace " 2>/dev/null" "" diff --git a/pkgs/data/fonts/aurulent-sans/default.nix b/pkgs/data/fonts/aurulent-sans/default.nix index f57f3de7f8291..9941b4791b58f 100644 --- a/pkgs/data/fonts/aurulent-sans/default.nix +++ b/pkgs/data/fonts/aurulent-sans/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "01hvpvbrks40g9k1xr2f1gxnd5wd0sxidgfbwrm94pdi1a36xxrk"; }; - buildPhase = "true"; + dontBuild = true; installPhase = '' fontDir=$out/share/fonts/opentype diff --git a/pkgs/data/fonts/bakoma-ttf/default.nix b/pkgs/data/fonts/bakoma-ttf/default.nix index 8b607adaaae8d..fb1459831f661 100644 --- a/pkgs/data/fonts/bakoma-ttf/default.nix +++ b/pkgs/data/fonts/bakoma-ttf/default.nix @@ -2,14 +2,18 @@ stdenv.mkDerivation { name = "bakoma-ttf"; - + src = fetchurl { url = http://tarballs.nixos.org/bakoma-ttf.tar.bz2; sha256 = "1j1y3cq6ys30m734axc0brdm2q9n2as4h32jws15r7w5fwr991km"; }; - - buildPhase = "true"; - installPhase = "mkdir -p $out/share/fonts/truetype; cp ttf/*.ttf $out/share/fonts/truetype"; + + dontBuild = true; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + cp ttf/*.ttf $out/share/fonts/truetype + ''; meta = { description = "TrueType versions of the Computer Modern and AMS TeX Fonts"; diff --git a/pkgs/data/fonts/dosemu-fonts/default.nix b/pkgs/data/fonts/dosemu-fonts/default.nix index 97fb0b82c7449..decfaf63aef99 100644 --- a/pkgs/data/fonts/dosemu-fonts/default.nix +++ b/pkgs/data/fonts/dosemu-fonts/default.nix @@ -9,8 +9,7 @@ stdenv.mkDerivation rec { sha256 = "0l1zwmw42mpakjrzmbygshcg2qzq9mv8lx42738rz3j9hrqzg4pw"; }; - configurePhase = "true"; - buildPhase = "true"; + dontBuild = true; buildInputs = [bdftopcf mkfontdir mkfontscale]; diff --git a/pkgs/data/fonts/powerline-fonts/default.nix b/pkgs/data/fonts/powerline-fonts/default.nix index 2e576cf6dc8b6..dbfb49f1bedde 100644 --- a/pkgs/data/fonts/powerline-fonts/default.nix +++ b/pkgs/data/fonts/powerline-fonts/default.nix @@ -10,25 +10,24 @@ stdenv.mkDerivation { sha256 = "1pwz83yh28yd8aj6fbyfz8z3q3v67psszpd9mp4vv0ms9w8b5ajn"; }; - buildPhase = "true"; + dontBuild = true; - installPhase = - '' - mkdir -p $out/share/fonts/opentype - cp -v */*.otf $out/share/fonts/opentype + installPhase = '' + mkdir -p $out/share/fonts/opentype + cp -v */*.otf $out/share/fonts/opentype - mkdir -p $out/share/fonts/truetype - cp -v */*.ttf $out/share/fonts/truetype + mkdir -p $out/share/fonts/truetype + cp -v */*.ttf $out/share/fonts/truetype - mkdir -p $out/share/fonts/bdf - cp -v */BDF/*.bdf $out/share/fonts/bdf + mkdir -p $out/share/fonts/bdf + cp -v */BDF/*.bdf $out/share/fonts/bdf - mkdir -p $out/share/fonts/pcf - cp -v */PCF/*.pcf.gz $out/share/fonts/pcf + mkdir -p $out/share/fonts/pcf + cp -v */PCF/*.pcf.gz $out/share/fonts/pcf - mkdir -p $out/share/fonts/psf - cp -v */PSF/*.psf.gz $out/share/fonts/psf - ''; + mkdir -p $out/share/fonts/psf + cp -v */PSF/*.psf.gz $out/share/fonts/psf + ''; meta = with stdenv.lib; { homepage = https://github.com/powerline/fonts; diff --git a/pkgs/data/fonts/ttf-bitstream-vera/default.nix b/pkgs/data/fonts/ttf-bitstream-vera/default.nix index 10766d9fa788e..d448aa558eb2b 100644 --- a/pkgs/data/fonts/ttf-bitstream-vera/default.nix +++ b/pkgs/data/fonts/ttf-bitstream-vera/default.nix @@ -8,11 +8,11 @@ stdenv.mkDerivation { sha256 = "1p3qs51x5327gnk71yq8cvmxc6wgx79sqxfvxcv80cdvgggjfnyv"; }; - buildPhase = "true"; + dontBuild = true; - installPhase = " + installPhase = '' fontDir=$out/share/fonts/truetype mkdir -p $fontDir cp *.ttf $fontDir - "; + ''; } diff --git a/pkgs/data/fonts/vista-fonts/default.nix b/pkgs/data/fonts/vista-fonts/default.nix index f3165b33ccafc..b2854b399f683 100644 --- a/pkgs/data/fonts/vista-fonts/default.nix +++ b/pkgs/data/fonts/vista-fonts/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation { name = "vista-fonts-1"; - + src = fetchurl { url = http://download.microsoft.com/download/f/5/a/f5a3df76-d856-4a61-a6bd-722f52a5be26/PowerPointViewer.exe; sha256 = "07vhjdw8iip7gxk6wvp4myhvbn9619g10j9qvpbzz4ihima57ry4"; @@ -10,14 +10,14 @@ stdenv.mkDerivation { buildInputs = [cabextract]; - unpackPhase = " + unpackPhase = '' cabextract --lowercase --filter ppviewer.cab $src cabextract --lowercase --filter '*.TTF' ppviewer.cab sourceRoot=. - "; - - buildPhase = "true"; - + ''; + + dontBuild = true; + installPhase = '' mkdir -p $out/share/fonts/truetype cp *.ttf $out/share/fonts/truetype diff --git a/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix b/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix index 863f60444025a..77cd666b8c6dd 100644 --- a/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix +++ b/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix @@ -10,19 +10,18 @@ let inherit sha256; }; - buildPhase = "true"; - - installPhase = - '' - dst=$out/share/xml/${pname} - mkdir -p $dst - rm -rf RELEASE* README* INSTALL TODO NEWS* BUGS install.sh svn* tools log Makefile tests extensions webhelp - mv * $dst/ - - # Backwards compatibility. Will remove eventually. - mkdir -p $out/xml/xsl - ln -s $dst $out/xml/xsl/docbook - ''; + dontBuild = true; + + installPhase = '' + dst=$out/share/xml/${pname} + mkdir -p $dst + rm -rf RELEASE* README* INSTALL TODO NEWS* BUGS install.sh svn* tools log Makefile tests extensions webhelp + mv * $dst/ + + # Backwards compatibility. Will remove eventually. + mkdir -p $out/xml/xsl + ln -s $dst $out/xml/xsl/docbook + ''; meta = { homepage = http://wiki.docbook.org/topic/DocBookXslStylesheets; diff --git a/pkgs/development/compilers/ghc/6.10.2-binary.nix b/pkgs/development/compilers/ghc/6.10.2-binary.nix index 045b9142ef3bb..81bdebdcbd475 100644 --- a/pkgs/development/compilers/ghc/6.10.2-binary.nix +++ b/pkgs/development/compilers/ghc/6.10.2-binary.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { # No building is necessary, but calling make without flags ironically # calls install-strip ... - buildPhase = "true"; + dontBuild = true; # The binaries for Darwin use frameworks, so fake those frameworks, # and create some wrapper scripts that set DYLD_FRAMEWORK_PATH so diff --git a/pkgs/development/compilers/ghc/7.0.4-binary.nix b/pkgs/development/compilers/ghc/7.0.4-binary.nix index c03cfbaaaddac..77e5229a2a0ae 100644 --- a/pkgs/development/compilers/ghc/7.0.4-binary.nix +++ b/pkgs/development/compilers/ghc/7.0.4-binary.nix @@ -99,7 +99,7 @@ stdenv.mkDerivation rec { # No building is necessary, but calling make without flags ironically # calls install-strip ... - buildPhase = "true"; + dontBuild = true; postInstall = '' diff --git a/pkgs/development/compilers/ghc/7.4.2-binary.nix b/pkgs/development/compilers/ghc/7.4.2-binary.nix index cf21a61b1b39c..c9f281980d95a 100644 --- a/pkgs/development/compilers/ghc/7.4.2-binary.nix +++ b/pkgs/development/compilers/ghc/7.4.2-binary.nix @@ -101,7 +101,7 @@ stdenv.mkDerivation rec { # No building is necessary, but calling make without flags ironically # calls install-strip ... - buildPhase = "true"; + dontBuild = true; preInstall = stdenv.lib.optionalString stdenv.isDarwin '' mkdir -p $out/lib/ghc-7.4.2 diff --git a/pkgs/development/libraries/fmod/4.24.16.nix b/pkgs/development/libraries/fmod/4.24.16.nix index 191db2f6f6ddb..b45ec24ca6bdb 100644 --- a/pkgs/development/libraries/fmod/4.24.16.nix +++ b/pkgs/development/libraries/fmod/4.24.16.nix @@ -29,11 +29,10 @@ stdenv.mkDerivation rec { dontStrip = true; dontPatchELF = true; + dontBuild = true; makeFlags = [ "DESTLIBDIR=$(out)/lib" "DESTHDRDIR=$(out)/include" ]; - buildPhase = "true"; - preInstall = '' mkdir -p $out/lib ''; diff --git a/pkgs/development/libraries/fmod/default.nix b/pkgs/development/libraries/fmod/default.nix index 621d6dc405fe2..af94601954016 100644 --- a/pkgs/development/libraries/fmod/default.nix +++ b/pkgs/development/libraries/fmod/default.nix @@ -18,7 +18,8 @@ stdenv.mkDerivation rec { }; dontStrip = true; - buildPhase = "true"; + dontBuild = true; + installPhase = '' mkdir -p $out/lib $out/include/fmodex diff --git a/pkgs/development/libraries/libspotify/default.nix b/pkgs/development/libraries/libspotify/default.nix index 02bd1f966e6e6..951a939cbfbf0 100644 --- a/pkgs/development/libraries/libspotify/default.nix +++ b/pkgs/development/libraries/libspotify/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, libspotify, alsaLib, readline, pkgconfig, apiKey, unzip, gnused }: -let - version = "12.1.51"; +let + version = "12.1.51"; isLinux = (stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux"); in @@ -29,13 +29,8 @@ else stdenv.mkDerivation { else null; - # common - buildPhase = "true"; - # no patch or build phase for darwin - phases = - [ "unpackPhase" ] ++ - (stdenv.lib.optionals (isLinux) [ "patchPhase" "buildPhase" ]) ++ - [ "installPhase" ]; + dontBuild = true; + installPhase = if (isLinux) then "installPhase" else '' @@ -48,7 +43,7 @@ else stdenv.mkDerivation { mkdir -p "$out"/share/man mv -v man3 "$out"/share/man ''; - + # darwin-specific buildInputs = stdenv.lib.optional (stdenv.system == "x86_64-darwin") unzip; diff --git a/pkgs/development/libraries/uthash/default.nix b/pkgs/development/libraries/uthash/default.nix index 5f3b71131e0ca..511129de1e8d6 100644 --- a/pkgs/development/libraries/uthash/default.nix +++ b/pkgs/development/libraries/uthash/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "035z3cs5ignywgh4wqxx358a2nhn3lj0x1ifij6vj0yyyhah3wgj"; }; - buildPhase = ":"; + dontBuild = false; buildInputs = stdenv.lib.optional doCheck perl; diff --git a/pkgs/development/libraries/xlibs-wrapper/default.nix b/pkgs/development/libraries/xlibs-wrapper/default.nix index fcdab133e2f8e..ffc58d9ad4b94 100644 --- a/pkgs/development/libraries/xlibs-wrapper/default.nix +++ b/pkgs/development/libraries/xlibs-wrapper/default.nix @@ -2,9 +2,12 @@ stdenv.mkDerivation { name = "xlibs-wrapper"; - buildPhase = "true"; + + dontBuild = true; + installPhase = "mkdir -p $out"; unpackPhase = "sourceRoot=."; + propagatedBuildInputs = packages; preferLocalBuild = true; diff --git a/pkgs/development/mobile/titaniumenv/cli/node-env.nix b/pkgs/development/mobile/titaniumenv/cli/node-env.nix index 7af18c034f249..c6d56c9e07472 100644 --- a/pkgs/development/mobile/titaniumenv/cli/node-env.nix +++ b/pkgs/development/mobile/titaniumenv/cli/node-env.nix @@ -4,7 +4,7 @@ let # Function that generates a TGZ file from a NPM project buildNodeSourceDist = { name, version, src }: - + stdenv.mkDerivation { name = "node-tarball-${name}-${version}"; inherit src; @@ -30,7 +30,7 @@ let sha1 = "77466de589cd5d3c95f138aa78bc569a3cb5d27a"; }; } {}; - + # Function that produces a deployed NPM package in the Nix store buildNodePackage = { name, version, src, dependencies ? {}, buildInputs ? [], production ? true, npmFlags ? "", meta ? {}, linkDependencies ? false }: @@ -42,8 +42,8 @@ let # # It uses the semver utility to check whether a version range matches any # of the provided dependencies. - - analysedDependencies = + + analysedDependencies = if dependencies == {} then {} else import (stdenv.mkDerivation { @@ -63,14 +63,14 @@ let let providedDependency = builtins.getAttr dependencyName providedDependencies; versions = builtins.attrNames providedDependency; - + # If there is a version range match, add the dependency to # the set of shimmed dependencies. # Otherwise, it is a required dependency. in '' $(latestVersion=$(semver -r '${versionSpec}' ${stdenv.lib.concatMapStrings (version: " '${version}'") versions} | tail -1 | tr -d '\n') - + if semver -r '${versionSpec}' ${stdenv.lib.concatMapStrings (version: " '${version}'") versions} >/dev/null then echo "shimmedDependencies.\"${dependencyName}\".\"$latestVersion\" = true;" @@ -86,7 +86,7 @@ let EOF ''; }); - + requiredDependencies = analysedDependencies.requiredDependencies or {}; shimmedDependencies = analysedDependencies.shimmedDependencies or {}; @@ -95,11 +95,11 @@ let tar --no-same-owner --no-same-permissions -xf ${nodejs.src} mv node-* $out ''; - + # Compose dependency information that this package must propagate to its # dependencies, so that provided dependencies are not included a second time. # This prevents cycles and wildcard version mismatches. - + propagatedProvidedDependencies = (stdenv.lib.mapAttrs (dependencyName: dependency: builtins.listToAttrs (map (versionSpec: @@ -110,20 +110,20 @@ let ) dependencies) // providedDependencies // { "${name}"."${version}" = true; }; - + # Create a node_modules folder containing all required dependencies of the # package - + nodeDependencies = stdenv.mkDerivation { name = "node-dependencies-${name}-${version}"; inherit src; buildCommand = '' mkdir -p $out/lib/node_modules cd $out/lib/node_modules - + # Create copies of (or symlinks to) the dependencies that must be deployed in this package's private node_modules folder. # This package's private dependencies are NPM packages that have not been provided by any of the includers. - + ${stdenv.lib.concatMapStrings (requiredDependencyName: stdenv.lib.concatMapStrings (versionSpec: let @@ -133,7 +133,7 @@ let in '' depPath=$(echo ${dependency}/lib/node_modules/*) - + ${if linkDependencies then '' ln -s $depPath . '' else '' @@ -144,35 +144,35 @@ let ) (builtins.attrNames requiredDependencies)} ''; }; - + # Deploy the Node package with some tricks self = stdenv.lib.makeOverridable stdenv.mkDerivation { inherit src meta; dontStrip = true; - + name = "node-${name}-${version}"; buildInputs = [ nodejs python ] ++ stdenv.lib.optional (stdenv.isLinux) utillinux ++ buildInputs; - buildPhase = "true"; - + dontBuild = true; + installPhase = '' # Move the contents of the tarball into the output folder mkdir -p "$out/lib/node_modules/${name}" mv * "$out/lib/node_modules/${name}" - + # Enter the target directory cd "$out/lib/node_modules/${name}" - + # Patch the shebangs of the bundled modules. For "regular" dependencies # this is step is not required, because it has already been done by the generic builder. - + if [ -d node_modules ] then patchShebangs node_modules fi - + # Copy the required dependencies mkdir -p node_modules - + ${stdenv.lib.optionalString (requiredDependencies != {}) '' for i in ${nodeDependencies}/lib/node_modules/* do @@ -182,9 +182,9 @@ let fi done ''} - + # Create shims for the packages that have been provided by earlier includers to allow the NPM install operation to still succeed - + ${stdenv.lib.concatMapStrings (shimmedDependencyName: stdenv.lib.concatMapStrings (versionSpec: '' @@ -198,24 +198,24 @@ let '' ) (builtins.attrNames (shimmedDependencies."${shimmedDependencyName}")) ) (builtins.attrNames shimmedDependencies)} - + # Ignore npm-shrinkwrap.json for now. Ideally, it should be supported as well rm -f npm-shrinkwrap.json - + # Some version specifiers (latest, unstable, URLs, file paths) force NPM to make remote connections or consult paths outside the Nix store. # The following JavaScript replaces these by * to prevent that: - + ( cat < 0` in `brother_lpdwrapper_BrGenML1`. Note that when `DEBUG > 1` the wrapper stops performing its function. Better keep `DEBUG == 1` unless this is desirable. @@ -29,7 +29,7 @@ Fixed. 3. > perl: warning: Falling back to the standard locale ("C"). - + are supported and installed on your system. LANG = "en_US.UTF-8" LC_ALL = (unset), @@ -67,12 +67,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ makeWrapper ]; buildInputs = [ cups perl coreutils gnused gnugrep brgenml1lpr ]; - configurePhase = ":"; - buildPhase = ":"; + dontBuild = true; patchPhase = '' WRAPPER=opt/brother/Printers/BrGenML1/cupswrapper/brother_lpdwrapper_BrGenML1 - PAPER_CFG=opt/brother/Printers/BrGenML1/cupswrapper/paperconfigml1 + PAPER_CFG=opt/brother/Printers/BrGenML1/cupswrapper/paperconfigml1 substituteInPlace $WRAPPER \ --replace "basedir =~" "basedir = \"${brgenml1lpr}/opt/brother/Printers/BrGenML1\"; #" \ diff --git a/pkgs/misc/cups/drivers/brgenml1lpr/default.nix b/pkgs/misc/cups/drivers/brgenml1lpr/default.nix index 6dc2408ec88ab..bd069b0d65a90 100644 --- a/pkgs/misc/cups/drivers/brgenml1lpr/default.nix +++ b/pkgs/misc/cups/drivers/brgenml1lpr/default.nix @@ -8,7 +8,7 @@ Logging ------- - + `/tmp/br_lpdfilter_ml1.log` when `$ENV{LPD_DEBUG} > 0` in `filter_BrGenML1` which is activated automatically when `DEBUG > 0` in `brother_lpdwrapper_BrGenML1` from the cups wrapper. @@ -17,7 +17,7 @@ ------ - filter_BrGenML1 ln 196 `my $GHOST_SCRIPT=`which gs`;` - + `GHOST_SCRIPT` is empty resulting in an empty `/tmp/br_lpdfilter_ml1_gsout.dat` file. See `/tmp/br_lpdfilter_ml1.log` for the executed command. @@ -49,8 +49,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ makeWrapper ]; buildInputs = [ cups perl glibc ghostscript which ]; - - buildPhase = ":"; + + dontBuild = true; patchPhase = '' INFDIR=opt/brother/Printers/BrGenML1/inf diff --git a/pkgs/os-specific/darwin/install_name_tool/default.nix b/pkgs/os-specific/darwin/install_name_tool/default.nix index 6a7e6caaa2620..581eb31cc71c1 100644 --- a/pkgs/os-specific/darwin/install_name_tool/default.nix +++ b/pkgs/os-specific/darwin/install_name_tool/default.nix @@ -5,9 +5,9 @@ assert stdenv.isDarwin; stdenv.mkDerivation { name = "install_name_tool"; src = "/usr/bin/install_name_tool"; + unpackPhase = "true"; - configurePhase = "true"; - buildPhase = "true"; + dontBuild = true; installPhase = '' mkdir -p "$out"/bin diff --git a/pkgs/os-specific/darwin/osx-sdk/default.nix b/pkgs/os-specific/darwin/osx-sdk/default.nix index 875479b4f29dc..235eadfd25564 100644 --- a/pkgs/os-specific/darwin/osx-sdk/default.nix +++ b/pkgs/os-specific/darwin/osx-sdk/default.nix @@ -7,9 +7,8 @@ in stdenv.mkDerivation rec { src = "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk"; - unpackPhase = "true"; - configurePhase = "true"; - buildPhase = "true"; + unpackPhase = "true"; + dontBuild = true; installPhase = '' mkdir -p $out/Developer/SDKs/ diff --git a/pkgs/os-specific/gnu/hurd/default.nix b/pkgs/os-specific/gnu/hurd/default.nix index 4bdb6e132fbb0..5eccee62468da 100644 --- a/pkgs/os-specific/gnu/hurd/default.nix +++ b/pkgs/os-specific/gnu/hurd/default.nix @@ -87,7 +87,7 @@ stdenv.mkDerivation ({ // (if headersOnly - then { buildPhase = ":"; installPhase = "make install-headers"; } + then { dontBuild = true; installPhase = "make install-headers"; } else (if (cross != null) then { crossConfig = cross.config; diff --git a/pkgs/os-specific/gnu/libpthread/default.nix b/pkgs/os-specific/gnu/libpthread/default.nix index 4b16652ba0530..294a1548582b2 100644 --- a/pkgs/os-specific/gnu/libpthread/default.nix +++ b/pkgs/os-specific/gnu/libpthread/default.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation ({ "ac_cv_lib_ihash_hurd_ihash_create=yes" ]; - buildPhase = ":"; + dontBuild = true; installPhase = "make install-data-local-headers"; } else { }) diff --git a/pkgs/os-specific/gnu/mach/default.nix b/pkgs/os-specific/gnu/mach/default.nix index 6d2d20687bc6f..e8c1585071511 100644 --- a/pkgs/os-specific/gnu/mach/default.nix +++ b/pkgs/os-specific/gnu/mach/default.nix @@ -53,5 +53,5 @@ stdenv.mkDerivation ({ // (if headersOnly - then { buildPhase = ":"; installPhase = "make install-data"; } + then { dontBuild = true; installPhase = "make install-data"; } else {})) diff --git a/pkgs/os-specific/linux/firmware/zd1211/default.nix b/pkgs/os-specific/linux/firmware/zd1211/default.nix index 19cbdecca0cca..2298cbd13c570 100644 --- a/pkgs/os-specific/linux/firmware/zd1211/default.nix +++ b/pkgs/os-specific/linux/firmware/zd1211/default.nix @@ -11,9 +11,12 @@ stdenv.mkDerivation rec { sha256 = "04ibs0qw8bh6h6zmm5iz6lddgknwhsjq8ib3gyck6a7psw83h7gi"; }; - buildPhase = "true"; + dontBuild = true; - installPhase = "mkdir -p $out/lib/firmware/zd1211; cp * $out/lib/firmware/zd1211"; + installPhase = '' + mkdir -p $out/lib/firmware/zd1211 + cp * $out/lib/firmware/zd1211 + ''; meta = { description = "Firmware for the ZyDAS ZD1211(b) 802.11a/b/g USB WLAN chip"; diff --git a/pkgs/servers/monitoring/longview/default.nix b/pkgs/servers/monitoring/longview/default.nix index 9436f4bf300fd..fd8a009b16703 100644 --- a/pkgs/servers/monitoring/longview/default.nix +++ b/pkgs/servers/monitoring/longview/default.nix @@ -11,15 +11,14 @@ stdenv.mkDerivation rec { sha256 = "1i6va44bx2zfgbld7znf1slph0iqidlahq2xh3kd8q4lhvbrjn02"; }; - patches = - [ # log to systemd journal - ./log-stdout.patch - ]; + patches = [ + # log to systemd journal + ./log-stdout.patch + ]; - postPatch = - '' - substituteInPlace Linode/Longview/Util.pm --replace /var/run/longview.pid /run/longview.pid - ''; + postPatch = '' + substituteInPlace Linode/Longview/Util.pm --replace /var/run/longview.pid /run/longview.pid + ''; buildInputs = [ perl makeWrapper glibc ] ++ (with perlPackages; [ @@ -37,7 +36,8 @@ stdenv.mkDerivation rec { DBDmysql ]); - buildPhase = "true"; + dontBuild = true; + installPhase = '' mkdir -p $out/bin $out/usr mv Linode $out diff --git a/pkgs/servers/rt/default.nix b/pkgs/servers/rt/default.nix index 77b7c6d4f2694..4bb111e18936c 100644 --- a/pkgs/servers/rt/default.nix +++ b/pkgs/servers/rt/default.nix @@ -7,7 +7,6 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://download.bestpractical.com/pub/rt/release/${name}.tar.gz"; - sha256 = "1hgz50fxv9zdcngww083aqh8vzyk148lm7mcivxflpnsqfw3696x"; }; @@ -15,7 +14,7 @@ stdenv.mkDerivation rec { buildInputs = [ perl ]; - buildPhase = "true"; + dontBuild = true; installPhase = '' mkdir $out diff --git a/pkgs/servers/sql/monetdb/default.nix b/pkgs/servers/sql/monetdb/default.nix index 443dafef55ca7..0e27211a0606b 100644 --- a/pkgs/servers/sql/monetdb/default.nix +++ b/pkgs/servers/sql/monetdb/default.nix @@ -25,15 +25,14 @@ composableDerivation.composableDerivation {} { javaSupport = true; }; - configurePhase = ":"; - buildPhase = ":"; - + dontBuild = true; + installPhase = '' mkdir $TMP/build sh monetdb-install.sh --build=$TMP/build --prefix=$out --enable-sql --enable-xquery ''; - meta = { + meta = { description = "A open-source database system for high-performance applications in data mining, OLAP, GIS, XML Query, text and multimedia retrieval"; homepage = http://monetdb.cwi.nl/; license = "MonetDB Public License"; # very similar to Mozilla public license (MPL) Version see 1.1 http://monetdb.cwi.nl/Legal/MonetDBLicense-1.1.html diff --git a/pkgs/servers/x11/xquartz/default.nix b/pkgs/servers/x11/xquartz/default.nix index db0c446617af6..16a4aeb1ce58a 100644 --- a/pkgs/servers/x11/xquartz/default.nix +++ b/pkgs/servers/x11/xquartz/default.nix @@ -98,9 +98,13 @@ let }; in stdenv.mkDerivation { name = "xquartz"; + buildInputs = [ ruby makeWrapper ]; + unpackPhase = "sourceRoot=."; - buildPhase = ":"; + + dontBuild = true; + installPhase = '' cp -rT ${xorg.xinit} $out chmod -R u+w $out @@ -179,6 +183,7 @@ in stdenv.mkDerivation { --replace "@DEFAULT_CLIENT@" "${xterm}/bin/xterm" \ --replace "@FONTCONFIG_FILE@" "$fontsConfPath" ''; + meta = with lib; { platforms = platforms.darwin; maintainers = with maintainers; [ cstrahan ]; diff --git a/pkgs/tools/admin/sec/default.nix b/pkgs/tools/admin/sec/default.nix index c74814ae1974c..56da02cc8d087 100644 --- a/pkgs/tools/admin/sec/default.nix +++ b/pkgs/tools/admin/sec/default.nix @@ -10,14 +10,14 @@ stdenv.mkDerivation rec { buildInputs = [ perl ]; - configurePhase = ":"; - buildPhase = ":"; + dontBuild = false; + doCheck = false; + installPhase = '' mkdir -p $out/bin $out/share/man/man1 cp sec $out/bin cp sec.man $out/share/man/man1/sec.1 ''; - doCheck = false; meta = { homepage = "http://simple-evcorr.sourceforge.net/"; @@ -26,5 +26,4 @@ stdenv.mkDerivation rec { maintainers = [ stdenv.lib.maintainers.tv ]; platforms = stdenv.lib.platforms.all; }; - } diff --git a/pkgs/tools/misc/debootstrap/default.nix b/pkgs/tools/misc/debootstrap/default.nix index 4af6475668e7a..d60b47ca01168 100644 --- a/pkgs/tools/misc/debootstrap/default.nix +++ b/pkgs/tools/misc/debootstrap/default.nix @@ -1,11 +1,8 @@ { stdenv, fetchurl, dpkg, gettext, gawk, perl, wget, coreutils, fakeroot }: let - # USAGE like this: debootstrap sid /tmp/target-chroot-directory - # There is also cdebootstrap now. Is that easier to maintain? - makedev = stdenv.mkDerivation { name = "makedev-for-debootstrap"; src = fetchurl { @@ -27,11 +24,7 @@ let chmod +x $t ''; }; - -in - -stdenv.mkDerivation rec { - +in stdenv.mkDerivation rec { name = "debootstrap-${version}"; version = "1.0.80"; @@ -44,14 +37,13 @@ stdenv.mkDerivation rec { buildInputs = [ dpkg gettext gawk perl ]; - buildPhase = ":"; + dontBuild = true; # If you have to update the patch for functions a vim regex like this # can help you identify which lines are used to write scripts on TARGET and # which should /bin/ paths should be replaced: # \\|\/bin\/\|^\s*\\|EOF\|END installPhase = '' - sed -i \ -e 's@/usr/bin/id@id@' \ -e 's@/usr/bin/dpkg@${dpkg}/bin/dpkg@' \ @@ -59,7 +51,6 @@ stdenv.mkDerivation rec { -e 's@/bin/sha@${coreutils}/bin/sha@' \ debootstrap - for file in functions debootstrap; do substituteInPlace "$file" \ --subst-var-by gunzip "$(type -p gunzip)" \ @@ -103,7 +94,7 @@ stdenv.mkDerivation rec { inherit makedev; }; - meta = { + meta = { description = "Tool to create a Debian system in a chroot"; homepage = http://packages.debian.org/de/lenny/debootstrap; # http://code.erisian.com.au/Wiki/debootstrap license = stdenv.lib.licenses.gpl2; # gentoo says so.. ? diff --git a/pkgs/tools/networking/swec/default.nix b/pkgs/tools/networking/swec/default.nix index 3e8f3ca3dc592..f8a8b6393d214 100644 --- a/pkgs/tools/networking/swec/default.nix +++ b/pkgs/tools/networking/swec/default.nix @@ -5,33 +5,34 @@ stdenv.mkDerivation rec { name = "swec-0.4"; src = fetchurl { - url = "http://random.zerodogg.org/files/${name}.tar.bz2"; + url = "http://files.zerodogg.org/swec/${name}.tar.bz2"; sha256 = "1m3971z4z1wr0paggprfz0n8ng8vsnkc9m6s3bdplgyz7qjk6jwx"; }; buildInputs = [ makeWrapper perl LWP URI HTMLParser ] ++ stdenv.lib.optional doCheck [ HTTPServerSimple Parent ]; - configurePhase = - '' for i in swec tests/{runTests,testServer} - do - sed -i "$i" -e's|/usr/bin/perl|${perl}/bin/perl|g' - done - ''; - - buildPhase = "true"; - installPhase = - '' make install prefix="$out" - - mkdir -p "$out/share/${name}" - cp -v default.sdf "$out/share/${name}" - sed -i "$out/bin/swec" -e"s|realpath(\$0)|'$out/share/${name}/swec'|g" - - wrapProgram "$out/bin/swec" \ - --prefix PERL5LIB : \ - ${stdenv.lib.concatStringsSep ":" - (map (x: "${x}/lib/perl5/site_perl") [ LWP URI HTMLParser ])} - ''; + configurePhase = '' + for i in swec tests/{runTests,testServer} + do + sed -i "$i" -e's|/usr/bin/perl|${perl}/bin/perl|g' + done + ''; + + dontBuild = true; + + installPhase = '' + make install prefix="$out" + + mkdir -p "$out/share/${name}" + cp -v default.sdf "$out/share/${name}" + sed -i "$out/bin/swec" -e"s|realpath(\$0)|'$out/share/${name}/swec'|g" + + wrapProgram "$out/bin/swec" \ + --prefix PERL5LIB : \ + ${stdenv.lib.concatStringsSep ":" + (map (x: "${x}/lib/perl5/site_perl") [ LWP URI HTMLParser ])} + ''; doCheck = true; checkPhase = "make test"; diff --git a/pkgs/tools/package-management/nix-repl/default.nix b/pkgs/tools/package-management/nix-repl/default.nix index e8670770c5f4a..8dfc9e6333eb5 100644 --- a/pkgs/tools/package-management/nix-repl/default.nix +++ b/pkgs/tools/package-management/nix-repl/default.nix @@ -14,18 +14,17 @@ stdenv.mkDerivation { buildInputs = [ nix readline ]; - buildPhase = "true"; + dontBuild = true; # FIXME: unfortunate cut&paste. - installPhase = - '' - mkdir -p $out/bin - $CXX -O3 -Wall -std=c++0x \ - -o $out/bin/nix-repl nix-repl.cc \ - -I${nix}/include/nix \ - -lnixformat -lnixutil -lnixstore -lnixexpr -lnixmain -lreadline -lgc \ - -DNIX_VERSION=\"${(builtins.parseDrvName nix.name).version}\" - ''; + installPhase = '' + mkdir -p $out/bin + $CXX -O3 -Wall -std=c++0x \ + -o $out/bin/nix-repl nix-repl.cc \ + -I${nix}/include/nix \ + -lnixformat -lnixutil -lnixstore -lnixexpr -lnixmain -lreadline -lgc \ + -DNIX_VERSION=\"${(builtins.parseDrvName nix.name).version}\" + ''; meta = { homepage = https://github.com/edolstra/nix-repl; diff --git a/pkgs/tools/package-management/nix-serve/default.nix b/pkgs/tools/package-management/nix-serve/default.nix index 332576a9873cb..3a20fdc0fac3f 100644 --- a/pkgs/tools/package-management/nix-serve/default.nix +++ b/pkgs/tools/package-management/nix-serve/default.nix @@ -15,21 +15,20 @@ stdenv.mkDerivation rec { buildInputs = [ perl nix ] ++ (with perlPackages; [ DBI DBDSQLite Plack Starman ]); - buildPhase = "true"; + dontBuild = false; # FIXME: unfortunate cut&paste. - installPhase = - '' - mkdir -p $out/libexec/nix-serve - cp nix-serve.psgi $out/libexec/nix-serve/nix-serve.psgi - - mkdir -p $out/bin - cat > $out/bin/nix-serve < $out/bin/nix-serve < Date: Mon, 2 May 2016 18:48:23 +0300 Subject: ghc8 | config: lucid-svg: jailbreak --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/development') 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 282a0b49e5228..784ea0327cfca 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -97,4 +97,6 @@ self: super: { }; }); + lucid-svg = doJailbreak super.lucid-svg; + } -- cgit 1.4.1 From 2018121298985ee0eab8b0d8cd9c07a6e054117e Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Mon, 2 May 2016 18:48:32 +0300 Subject: ghc8 | config: monads-tf: jailbreak --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/development') 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 784ea0327cfca..f859a2387ee34 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -99,4 +99,6 @@ self: super: { lucid-svg = doJailbreak super.lucid-svg; + monads-tf = doJailbreak super.monads-tf; + } -- cgit 1.4.1 From 4015f60d1ddbe67f5a4558c0083db27f622fb8d0 Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Mon, 2 May 2016 18:48:40 +0300 Subject: ghc8 | config: parsers: jailbreak --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/development') 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 f859a2387ee34..8e2f72d5f5355 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -101,4 +101,6 @@ self: super: { monads-tf = doJailbreak super.monads-tf; + parsers = doJailbreak super.parsers; + } -- cgit 1.4.1 From 1fa1be62b6dec9eb67fa5d7c4f85c5bf57436299 Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Mon, 2 May 2016 18:53:06 +0300 Subject: ghc8 | config: pointed -> pointed_5 --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/development') 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 8e2f72d5f5355..6d26474f5efb7 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -103,4 +103,6 @@ self: super: { parsers = doJailbreak super.parsers; + pointed = super.pointed_5; + } -- cgit 1.4.1 From 5e08a820dc748b2d9e7ca51bd75167e63528257a Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Mon, 2 May 2016 18:53:55 +0300 Subject: ghc8 | config: reducers: jailbreak --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/development') 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 6d26474f5efb7..d3b522fcb73aa 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -105,4 +105,6 @@ self: super: { pointed = super.pointed_5; + reducers = doJailbreak super.reducers; + } -- cgit 1.4.1 From d27186a9cae8bd26fa96b725e545cfc939d3f534 Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Mon, 2 May 2016 18:54:08 +0300 Subject: ghc8 | config: sdl2: jailbreak --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/development') 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 d3b522fcb73aa..97d5452fac798 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -107,4 +107,6 @@ self: super: { reducers = doJailbreak super.reducers; + sdl2 = doJailbreak super.sdl2; + } -- cgit 1.4.1 From 6ce39b317ed13af912da0325efd871d99819f1e5 Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Mon, 2 May 2016 18:54:27 +0300 Subject: ghc8 | config: servant*: jailbreak, disable tests --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pkgs/development') 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 97d5452fac798..3f3b5171c008c 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -109,4 +109,8 @@ self: super: { sdl2 = doJailbreak super.sdl2; + servant = dontCheck (doJailbreak super.servant_0_7); + servant-client = dontCheck (doJailbreak super.servant-client_0_7); + servant-server = dontCheck (doJailbreak super.servant-server_0_7); + } -- cgit 1.4.1 From 49a92137604172670a99af0fa0601a735923dc91 Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Mon, 2 May 2016 18:55:49 +0300 Subject: ghc8 | config: singletons -> git --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'pkgs/development') 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 3f3b5171c008c..7a30431fa9ef6 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -113,4 +113,13 @@ self: super: { servant-client = dontCheck (doJailbreak super.servant-client_0_7); servant-server = dontCheck (doJailbreak super.servant-server_0_7); + # The essential part is released in 2.1 upstream (needs hackage import) + singletons = (pkgs.haskell.lib.overrideCabal super.singletons (oldAttrs: { + src = pkgs.fetchgit { + url = https://github.com/goldfirere/singletons.git; + rev = "277fa943e8c260973effb2291672b166bdd951c1"; + sha256 = "1ll9fcgs5nxqihvv5vr2bf9z6ijvn3yyk5ss3cgcfvcd95ayy1wz"; + }; + })); + } -- cgit 1.4.1 From c03af86d39177e82cc5212b378645d1b83a0c15c Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Mon, 2 May 2016 18:56:33 +0300 Subject: ghc8 | config: stm-conduit -> git --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'pkgs/development') 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 7a30431fa9ef6..71fef2ecf23be 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -122,4 +122,13 @@ self: super: { }; })); + # The essential part only in upstream git, last released upstream version 2.7.0, Dec 8 + stm-conduit = doJailbreak (pkgs.haskell.lib.overrideCabal super.stm-conduit (oldAttrs: { + src = pkgs.fetchgit { + url = https://github.com/cgaebel/stm-conduit.git; + rev = "3f831d703c422239e56a9da0f42db8a7059238e0"; + sha256 = "0bmym2ps0yjcsbyg02r8v1q8z5hpml99n72hf2pjmd31dy8iz7v9"; + }; + })); + } -- cgit 1.4.1 From 81f12377e448c9d5a5c0f5351e6e9fadce9c9295 Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Mon, 2 May 2016 18:57:37 +0300 Subject: ghc8 | config: th-desugar -> git --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'pkgs/development') 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 71fef2ecf23be..4f25f42cf3fa3 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -131,4 +131,13 @@ self: super: { }; })); + # The essential part only in upstream git, last released upstream version 1.6.0, Jan 27 + th-desugar = doJailbreak (pkgs.haskell.lib.overrideCabal super.th-desugar (oldAttrs: { + src = pkgs.fetchgit { + url = https://github.com/goldfirere/th-desugar.git; + rev = "7496de0243a12c14be1b37b89eb41cf9ef6f5229"; + sha256 = "10awknqviq7jb738r6n9rlyra0pvkrpnk0hikz4459hny4hamn75"; + }; + })); + } -- cgit 1.4.1 From c9553d7b6d46a1c5e7a0d329b5a0869c566bad53 Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Mon, 2 May 2016 18:58:15 +0300 Subject: ghc8 | config: th-reify-many -> 0.1.4.1 --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'pkgs/development') 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 4f25f42cf3fa3..161d1647bda7c 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -140,4 +140,13 @@ self: super: { }; })); + # The essential part is released in 0.1.4.1 upstream (needs hackage import) + th-reify-many = doJailbreak (pkgs.haskell.lib.overrideCabal super.th-reify-many (oldAttrs: { + src = pkgs.fetchgit { + url = https://github.com/mgsloan/th-reify-many.git; + rev = "699eed232c2ccaf9fb109f131e80ed8d654d6f08"; + sha256 = "001fvpq039l9wj9v8id7kfjwmp4acf53zr4z6sppdvrv6npzz5yb"; + }; + })); + } -- cgit 1.4.1 From 2e7200201270ca50bef007e151d07780a71ccdec Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Mon, 2 May 2016 18:58:27 +0300 Subject: ghc8 | config: trifecta: jailbreak --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/development') 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 161d1647bda7c..345808f5aee57 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -149,4 +149,6 @@ self: super: { }; })); + trifecta = doJailbreak super.trifecta; + } -- cgit 1.4.1 From 0438192122d115244504bc489dc96c9f33b223b7 Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Mon, 2 May 2016 18:58:39 +0300 Subject: ghc8 | config: turtle: jailbreak --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'pkgs/development') 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 345808f5aee57..f5ca9626be6ba 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -151,4 +151,5 @@ self: super: { trifecta = doJailbreak super.trifecta; + turtle = doJailbreak super.turtle; } -- cgit 1.4.1 From 2c021bdbba762bb423f01a0a429152fea025871c Mon Sep 17 00:00:00 2001 From: vbgl Date: Wed, 4 May 2016 19:12:20 +0200 Subject: ocaml-oasis: 0.4.5 -> 0.4.6 (#15209) --- pkgs/development/tools/ocaml/oasis/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/ocaml/oasis/default.nix b/pkgs/development/tools/ocaml/oasis/default.nix index 70d90752aceb3..6dcf05222320d 100644 --- a/pkgs/development/tools/ocaml/oasis/default.nix +++ b/pkgs/development/tools/ocaml/oasis/default.nix @@ -2,11 +2,11 @@ ocamlmod, ocamlify, ounit, expect}: stdenv.mkDerivation { - name = "ocaml-oasis-0.4.5"; + name = "ocaml-oasis-0.4.6"; src = fetchurl { - url = http://forge.ocamlcore.org/frs/download.php/1475/oasis-0.4.5.tar.gz; - sha256 = "0i1fifzig2slhb07d1djx6i690b8ys0avsx6ssnihisw841sc8v6"; + url = http://forge.ocamlcore.org/frs/download.php/1604/oasis-0.4.6.tar.gz; + sha256 = "1yxv3ckkf87nz0cyll0yy1kd295j5pv3jqwkfrr1y65wkz5vw90k"; }; createFindlibDestdir = true; -- cgit 1.4.1 From 8e97c64ffc51771acbbe5dc3de4dcbf7a22918a9 Mon Sep 17 00:00:00 2001 From: Lane Seppala Date: Wed, 4 May 2016 16:41:44 -0600 Subject: chefdk: fix build of hitimes on OS X --- pkgs/development/ruby-modules/gem-config/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/ruby-modules/gem-config/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix index 72e483bc77d32..1349a4a53ac5f 100644 --- a/pkgs/development/ruby-modules/gem-config/default.nix +++ b/pkgs/development/ruby-modules/gem-config/default.nix @@ -57,6 +57,12 @@ in buildInputs = [ gpgme ]; }; + hitimes = attrs: { + buildInputs = + stdenv.lib.optionals stdenv.isDarwin + [ darwin.apple_sdk.frameworks.CoreServices ]; + }; + # note that you need version >= v3.16.14.8, # otherwise the gem will fail to link to the libv8 binary. # see: https://github.com/cowboyd/libv8/pull/161 -- cgit 1.4.1 From 367b2aa1e422f2ee8a0860df52e98a5d788cef6a Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 5 May 2016 05:27:17 +0300 Subject: dbus-glibc: Set --exec-prefix to fix pkgconfig file Without this notify-osd fails to find dbus-binding-tool, since the pkgconfig file would contain e.g.: ```` prefix=/nix/store/hxsbjbjn7g1j1cf60n228yi9wnzrl4yk-dbus-glib-0.104 exec_prefix=${prefix} ```` ... and notify-osd is using `exec_prefix` to locate the binaries. Set it to $dev to match the location of installed binaries (we have `outputBin = "dev";`). Issue #15074. --- pkgs/development/libraries/dbus-glib/default.nix | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/dbus-glib/default.nix b/pkgs/development/libraries/dbus-glib/default.nix index 59d227f0e8689..d06a919cadacd 100644 --- a/pkgs/development/libraries/dbus-glib/default.nix +++ b/pkgs/development/libraries/dbus-glib/default.nix @@ -17,6 +17,10 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ dbus glib ]; + preConfigure = '' + configureFlagsArray+=("--exec-prefix=$dev") + ''; + doCheck = true; passthru = { inherit dbus glib; }; -- cgit 1.4.1 From 9c979732b85f5ec0d1537ec76202534caa17b0a5 Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Thu, 5 May 2016 00:58:22 +0300 Subject: ghc8 | config: shelly: jailbreak --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkgs/development') 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 f5ca9626be6ba..43600fed77668 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -113,6 +113,9 @@ self: super: { servant-client = dontCheck (doJailbreak super.servant-client_0_7); servant-server = dontCheck (doJailbreak super.servant-server_0_7); + # packaged shelly 1.6.6 complains: time >=1.3 && <1.6 + shelly = doJailbreak super.shelly; + # The essential part is released in 2.1 upstream (needs hackage import) singletons = (pkgs.haskell.lib.overrideCabal super.singletons (oldAttrs: { src = pkgs.fetchgit { -- cgit 1.4.1 From a6a23d3a55282256544df3a574522df3d8202b59 Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Thu, 5 May 2016 13:11:26 +0300 Subject: ghc8 | config: freer: jailbreak --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkgs/development') 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 43600fed77668..c12b3a375c619 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -86,6 +86,9 @@ self: super: { force-layout = doJailbreak super.force-layout; + # packaged 0.2.2.6 is missing: base >=4.7 && <4.9 + freer = doJailbreak super.freer; + # Partial fixes released in 1.20.5 upstream, full fixes only in git linear = pkgs.haskell.lib.overrideCabal super.linear (oldAttrs: { editedCabalFile = null; -- cgit 1.4.1 From 0915df8233573ba4bed6c1dcfc736b7d6df97118 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 3 May 2016 10:52:05 +0200 Subject: hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160406-9-g3afe33e using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/f392208d723bed145a93dd003523a30928d6bf4f - LTS Haskell: https://github.com/fpco/lts-haskell/commit/4d628b7b7ec70abdaf5868f8a818e2ebdc05c2bd - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/7135a992a44257d2bd4d0288517240e3fa4d25e6 --- .../haskell-modules/configuration-lts-0.0.nix | 5 + .../haskell-modules/configuration-lts-0.1.nix | 5 + .../haskell-modules/configuration-lts-0.2.nix | 5 + .../haskell-modules/configuration-lts-0.3.nix | 5 + .../haskell-modules/configuration-lts-0.4.nix | 5 + .../haskell-modules/configuration-lts-0.5.nix | 5 + .../haskell-modules/configuration-lts-0.6.nix | 5 + .../haskell-modules/configuration-lts-0.7.nix | 5 + .../haskell-modules/configuration-lts-1.0.nix | 5 + .../haskell-modules/configuration-lts-1.1.nix | 5 + .../haskell-modules/configuration-lts-1.10.nix | 5 + .../haskell-modules/configuration-lts-1.11.nix | 5 + .../haskell-modules/configuration-lts-1.12.nix | 5 + .../haskell-modules/configuration-lts-1.13.nix | 5 + .../haskell-modules/configuration-lts-1.14.nix | 5 + .../haskell-modules/configuration-lts-1.15.nix | 5 + .../haskell-modules/configuration-lts-1.2.nix | 5 + .../haskell-modules/configuration-lts-1.4.nix | 5 + .../haskell-modules/configuration-lts-1.5.nix | 5 + .../haskell-modules/configuration-lts-1.7.nix | 5 + .../haskell-modules/configuration-lts-1.8.nix | 5 + .../haskell-modules/configuration-lts-1.9.nix | 5 + .../haskell-modules/configuration-lts-2.0.nix | 5 + .../haskell-modules/configuration-lts-2.1.nix | 5 + .../haskell-modules/configuration-lts-2.10.nix | 5 + .../haskell-modules/configuration-lts-2.11.nix | 5 + .../haskell-modules/configuration-lts-2.12.nix | 5 + .../haskell-modules/configuration-lts-2.13.nix | 5 + .../haskell-modules/configuration-lts-2.14.nix | 5 + .../haskell-modules/configuration-lts-2.15.nix | 5 + .../haskell-modules/configuration-lts-2.16.nix | 5 + .../haskell-modules/configuration-lts-2.17.nix | 5 + .../haskell-modules/configuration-lts-2.18.nix | 5 + .../haskell-modules/configuration-lts-2.19.nix | 5 + .../haskell-modules/configuration-lts-2.2.nix | 5 + .../haskell-modules/configuration-lts-2.20.nix | 5 + .../haskell-modules/configuration-lts-2.21.nix | 5 + .../haskell-modules/configuration-lts-2.22.nix | 5 + .../haskell-modules/configuration-lts-2.3.nix | 5 + .../haskell-modules/configuration-lts-2.4.nix | 5 + .../haskell-modules/configuration-lts-2.5.nix | 5 + .../haskell-modules/configuration-lts-2.6.nix | 5 + .../haskell-modules/configuration-lts-2.7.nix | 5 + .../haskell-modules/configuration-lts-2.8.nix | 5 + .../haskell-modules/configuration-lts-2.9.nix | 5 + .../haskell-modules/configuration-lts-3.0.nix | 6 + .../haskell-modules/configuration-lts-3.1.nix | 6 + .../haskell-modules/configuration-lts-3.10.nix | 6 + .../haskell-modules/configuration-lts-3.11.nix | 6 + .../haskell-modules/configuration-lts-3.12.nix | 6 + .../haskell-modules/configuration-lts-3.13.nix | 6 + .../haskell-modules/configuration-lts-3.14.nix | 6 + .../haskell-modules/configuration-lts-3.15.nix | 6 + .../haskell-modules/configuration-lts-3.16.nix | 6 + .../haskell-modules/configuration-lts-3.17.nix | 6 + .../haskell-modules/configuration-lts-3.18.nix | 7 + .../haskell-modules/configuration-lts-3.19.nix | 7 + .../haskell-modules/configuration-lts-3.2.nix | 6 + .../haskell-modules/configuration-lts-3.20.nix | 7 + .../haskell-modules/configuration-lts-3.21.nix | 7 + .../haskell-modules/configuration-lts-3.22.nix | 7 + .../haskell-modules/configuration-lts-3.3.nix | 6 + .../haskell-modules/configuration-lts-3.4.nix | 6 + .../haskell-modules/configuration-lts-3.5.nix | 6 + .../haskell-modules/configuration-lts-3.6.nix | 6 + .../haskell-modules/configuration-lts-3.7.nix | 6 + .../haskell-modules/configuration-lts-3.8.nix | 6 + .../haskell-modules/configuration-lts-3.9.nix | 6 + .../haskell-modules/configuration-lts-4.0.nix | 8 + .../haskell-modules/configuration-lts-4.1.nix | 8 + .../haskell-modules/configuration-lts-4.2.nix | 11 + .../haskell-modules/configuration-lts-5.0.nix | 11 + .../haskell-modules/configuration-lts-5.1.nix | 11 + .../haskell-modules/configuration-lts-5.10.nix | 13 + .../haskell-modules/configuration-lts-5.11.nix | 13 + .../haskell-modules/configuration-lts-5.12.nix | 13 + .../haskell-modules/configuration-lts-5.13.nix | 14 + .../haskell-modules/configuration-lts-5.14.nix | 14 + .../haskell-modules/configuration-lts-5.15.nix | 16 + .../haskell-modules/configuration-lts-5.2.nix | 11 + .../haskell-modules/configuration-lts-5.3.nix | 11 + .../haskell-modules/configuration-lts-5.4.nix | 12 + .../haskell-modules/configuration-lts-5.5.nix | 12 + .../haskell-modules/configuration-lts-5.6.nix | 12 + .../haskell-modules/configuration-lts-5.7.nix | 12 + .../haskell-modules/configuration-lts-5.8.nix | 12 + .../haskell-modules/configuration-lts-5.9.nix | 12 + .../haskell-modules/hackage-packages.nix | 952 ++++++++++++++++----- 88 files changed, 1325 insertions(+), 221 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 20e87e83c293f..e4a68377f1752 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -2673,6 +2673,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3577,6 +3578,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_2"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3982,6 +3984,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -6010,6 +6013,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7061,6 +7065,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 8142d61db1ff7..74f7ad4a4895d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -2673,6 +2673,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3577,6 +3578,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_2"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3982,6 +3984,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -6010,6 +6013,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7061,6 +7065,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 93da6c8ea2692..ae72d4f2d44bb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -2673,6 +2673,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3577,6 +3578,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_2"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3982,6 +3984,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -6010,6 +6013,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7061,6 +7065,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 139587df0ca4c..54f08ded62276 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -2673,6 +2673,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3577,6 +3578,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_2"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3982,6 +3984,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -6010,6 +6013,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7061,6 +7065,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index ebf71b233b281..0ab2ae057da80 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -2673,6 +2673,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3576,6 +3577,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_2"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3979,6 +3981,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -6007,6 +6010,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7058,6 +7062,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 98602756736a1..39ebdb342de5f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -2673,6 +2673,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3576,6 +3577,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_2"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3979,6 +3981,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -6007,6 +6010,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7058,6 +7062,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 36e7461a8cf6d..07e0797c5ee2c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -2672,6 +2672,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3575,6 +3576,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3978,6 +3980,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -6005,6 +6008,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7056,6 +7060,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 5b1578fd4c3d1..8e486e97dc37c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -2672,6 +2672,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3575,6 +3576,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3978,6 +3980,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -6005,6 +6008,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7056,6 +7060,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index ee69deb9f1b80..8db20350fe7f9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -2665,6 +2665,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3567,6 +3568,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3969,6 +3971,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5996,6 +5999,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7047,6 +7051,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 00e5a44a804a9..6430eb0b9e608 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -2663,6 +2663,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3564,6 +3565,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3966,6 +3968,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5989,6 +5992,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7040,6 +7044,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 9a04c8e8c94ce..1772ea05317d6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -2659,6 +2659,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3555,6 +3556,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3956,6 +3958,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5972,6 +5975,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7020,6 +7024,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 33d0a5b299bab..711dfce2f7b06 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -2659,6 +2659,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3554,6 +3555,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3955,6 +3957,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5968,6 +5971,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7016,6 +7020,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 3fcd44271df66..245d1cd63f2a7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -2659,6 +2659,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3554,6 +3555,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3955,6 +3957,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5967,6 +5970,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7015,6 +7019,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 1cedbc8be952c..6dbede1453a68 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -2659,6 +2659,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3554,6 +3555,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3954,6 +3956,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5966,6 +5969,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7014,6 +7018,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 3483e76ea3175..253d392a0838c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -2656,6 +2656,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3551,6 +3552,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3951,6 +3953,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5963,6 +5966,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7010,6 +7014,7 @@ self: super: { "quicklz" = dontDistribute super."quicklz"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 5cc0f9fffde77..518b8b3b1b8fd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -2653,6 +2653,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3547,6 +3548,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3947,6 +3949,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5959,6 +5962,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7003,6 +7007,7 @@ self: super: { "quicklz" = dontDistribute super."quicklz"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 7ac7464aa4529..09655c3ab95aa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -2661,6 +2661,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3561,6 +3562,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3963,6 +3965,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5986,6 +5989,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7036,6 +7040,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index b5e1d26ff190c..31380f1ea2b43 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -2660,6 +2660,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3559,6 +3560,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3961,6 +3963,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5983,6 +5986,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7032,6 +7036,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 5e5d5ff2a2f58..60bb9fd4473d5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -2659,6 +2659,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3558,6 +3559,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3960,6 +3962,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5982,6 +5985,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7031,6 +7035,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 345a0efa8f457..c6f84999de68a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -2659,6 +2659,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3558,6 +3559,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3960,6 +3962,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5977,6 +5980,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7026,6 +7030,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 4b1d4e7c9a241..c031f18467e42 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -2659,6 +2659,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3556,6 +3557,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3957,6 +3959,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5973,6 +5976,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7022,6 +7026,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 54c9bc0f5bf2f..fde9da194b017 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -2659,6 +2659,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3555,6 +3556,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_4"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3956,6 +3958,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = dontDistribute super."hackage-mirror"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5972,6 +5975,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -7021,6 +7025,7 @@ self: super: { "quickpull" = doDistribute super."quickpull_0_4_0_0"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 1e4b541f52465..be36e53631a1b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -2641,6 +2641,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3533,6 +3534,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3931,6 +3933,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5925,6 +5928,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6961,6 +6965,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 490801bae1b44..c6f3f5df49b71 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -2640,6 +2640,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3532,6 +3533,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3930,6 +3932,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5924,6 +5927,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6960,6 +6964,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index a9e84b655238c..7117655679d25 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -2627,6 +2627,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3515,6 +3516,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3911,6 +3913,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5899,6 +5902,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6932,6 +6936,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 17f0dc577668c..8bc437ba51169 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -2626,6 +2626,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3513,6 +3514,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3909,6 +3911,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5894,6 +5897,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6926,6 +6930,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 248c9d5bdb3b7..ce5accd348deb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -2626,6 +2626,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3513,6 +3514,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3909,6 +3911,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5894,6 +5897,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6926,6 +6930,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index f2b2e400ab79d..1ca0df123794e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -2626,6 +2626,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3513,6 +3514,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3908,6 +3910,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5892,6 +5895,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6924,6 +6928,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index aabae0822bf47..06608df446207 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -2626,6 +2626,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3512,6 +3513,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3907,6 +3909,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5890,6 +5893,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6922,6 +6926,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index b1f729fc28fd8..54144d1a3fdea 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -2626,6 +2626,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3511,6 +3512,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3906,6 +3908,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5888,6 +5891,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6920,6 +6924,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 723d0c93c377f..c5fb5f66fa56a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -2625,6 +2625,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3508,6 +3509,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3903,6 +3905,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5884,6 +5887,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6916,6 +6920,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index eaf1fea3dae80..061cd3029dbae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -2623,6 +2623,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3504,6 +3505,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3899,6 +3901,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5880,6 +5883,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6911,6 +6915,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 073161b05b0cf..f7c844dc6f3e6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -2622,6 +2622,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3502,6 +3503,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3897,6 +3899,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5878,6 +5881,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6908,6 +6912,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index de94de5ae3c22..b8f383f677cd6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -2622,6 +2622,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3501,6 +3502,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3896,6 +3898,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5876,6 +5879,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6906,6 +6910,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index ce113fd1467a6..cc8d31652af6b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -2637,6 +2637,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3529,6 +3530,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3927,6 +3929,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5921,6 +5924,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6957,6 +6961,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index dae40ae5b4e2a..00b678af7ade2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -2621,6 +2621,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3500,6 +3501,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3895,6 +3897,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5875,6 +5878,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6904,6 +6908,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 36373c0e79abb..e987f7c7eddda 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -2621,6 +2621,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3500,6 +3501,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3895,6 +3897,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5875,6 +5878,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6903,6 +6907,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 638c1833dc367..8b2fd373e07ca 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -2621,6 +2621,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3500,6 +3501,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3895,6 +3897,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5874,6 +5877,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6902,6 +6906,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 7bc9200c11097..68b2a4225e9ad 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -2637,6 +2637,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3528,6 +3529,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3926,6 +3928,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5919,6 +5922,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6955,6 +6959,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 17cfdfa1bccdc..e7ab14804b477 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -2636,6 +2636,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3527,6 +3528,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3925,6 +3927,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5918,6 +5921,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6953,6 +6957,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 54bdf226282f4..d94686e2de887 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -2635,6 +2635,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3526,6 +3527,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3924,6 +3926,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5917,6 +5920,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6952,6 +6956,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 53a6ba088d394..e869acb8a5199 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -2632,6 +2632,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3523,6 +3524,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3919,6 +3921,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5912,6 +5915,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6946,6 +6950,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 4bc47cb0bd844..46e293f904d19 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -2631,6 +2631,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3522,6 +3523,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3918,6 +3920,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5911,6 +5914,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6946,6 +6950,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index d9fbbb3de7222..3f320f0eb2a9a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -2630,6 +2630,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3520,6 +3521,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3916,6 +3918,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5909,6 +5912,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6944,6 +6948,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 6a5856b036bc2..656e376ac4baa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -2628,6 +2628,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3516,6 +3517,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_3_6"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3912,6 +3914,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5902,6 +5905,7 @@ self: super: { "monad-skeleton" = dontDistribute super."monad-skeleton"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-stm" = dontDistribute super."monad-stm"; @@ -6937,6 +6941,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index e69cfb6680b5d..a3250546cb670 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -2561,6 +2561,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3419,6 +3420,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3810,6 +3812,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5735,6 +5738,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5963,6 +5967,7 @@ self: super: { "network-bytestring" = dontDistribute super."network-bytestring"; "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6739,6 +6744,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 28c84d54ed93f..705840e5e1cf3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -2560,6 +2560,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3417,6 +3418,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3808,6 +3810,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5732,6 +5735,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5960,6 +5964,7 @@ self: super: { "network-bytestring" = dontDistribute super."network-bytestring"; "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6735,6 +6740,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 9263d961f7050..86dbc3d25fb0b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -2549,6 +2549,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3400,6 +3401,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3789,6 +3791,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5702,6 +5705,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5928,6 +5932,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6694,6 +6699,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 4a0c8ae04f264..bb58301757a7f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -2548,6 +2548,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3398,6 +3399,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3787,6 +3789,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5700,6 +5703,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5926,6 +5930,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6691,6 +6696,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index f87cc10c8a90b..250384b1d2819 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -2547,6 +2547,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3397,6 +3398,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3785,6 +3787,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5698,6 +5701,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5924,6 +5928,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6688,6 +6693,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 4d0b4b51f4bb2..9c89a4dde431c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -2547,6 +2547,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3397,6 +3398,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3785,6 +3787,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5696,6 +5699,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5922,6 +5926,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6685,6 +6690,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 79c0bd0d594dc..fb0f7c661927a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -2544,6 +2544,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3394,6 +3395,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3782,6 +3784,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5692,6 +5695,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5918,6 +5922,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6681,6 +6686,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 25a1f7d6102f2..703dc54935274 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -2544,6 +2544,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3394,6 +3395,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3782,6 +3784,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5689,6 +5692,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5915,6 +5919,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6678,6 +6683,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index b060ad42b00cd..01a6769d9c8e8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -2543,6 +2543,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3392,6 +3393,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3779,6 +3781,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5684,6 +5687,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5910,6 +5914,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6672,6 +6677,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 9d30a0fc1832d..87b70622d7e07 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -2542,6 +2542,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3391,6 +3392,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3777,6 +3779,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5679,6 +5682,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5905,6 +5909,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6667,6 +6672,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index ef8133df5c8ab..eefac3330c49d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -2541,6 +2541,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3390,6 +3391,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3773,6 +3775,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3956,6 +3959,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -5673,6 +5677,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5899,6 +5904,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6660,6 +6666,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 16e30cfc4250d..2ec3f78b21859 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -2537,6 +2537,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3386,6 +3387,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3769,6 +3771,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3952,6 +3955,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -5665,6 +5669,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5890,6 +5895,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6651,6 +6657,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 39f1eaddce5f2..9aa253b8ecef9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -2558,6 +2558,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3413,6 +3414,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3804,6 +3806,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5727,6 +5730,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5955,6 +5959,7 @@ self: super: { "network-bytestring" = dontDistribute super."network-bytestring"; "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6729,6 +6734,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 7fcfebf22301b..8fc5f9654c563 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -2536,6 +2536,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3385,6 +3386,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3768,6 +3770,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3951,6 +3954,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -5664,6 +5668,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5889,6 +5894,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6650,6 +6656,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index e8f29e893e541..576068260b5c1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -2535,6 +2535,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3382,6 +3383,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3765,6 +3767,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3948,6 +3951,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -5659,6 +5663,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5883,6 +5888,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6642,6 +6648,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 25e927b694c90..d48c58d6ab550 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -2535,6 +2535,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3381,6 +3382,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3764,6 +3766,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3947,6 +3950,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -5654,6 +5658,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5878,6 +5883,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6637,6 +6643,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 85f58d4dc7549..47d9668fd7ddf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -2558,6 +2558,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3412,6 +3413,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3803,6 +3805,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5725,6 +5728,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5953,6 +5957,7 @@ self: super: { "network-bytestring" = dontDistribute super."network-bytestring"; "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6727,6 +6732,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 7ac520afb6008..d5b0a6538cb04 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -2558,6 +2558,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3412,6 +3413,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3803,6 +3805,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5725,6 +5728,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5953,6 +5957,7 @@ self: super: { "network-bytestring" = dontDistribute super."network-bytestring"; "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6727,6 +6732,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index fc4a7679ff465..45dc2fcca1157 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -2557,6 +2557,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3410,6 +3411,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3801,6 +3803,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5719,6 +5722,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5946,6 +5950,7 @@ self: super: { "network-bytestring" = dontDistribute super."network-bytestring"; "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6718,6 +6723,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 791a8a909c597..ab047df5f849b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -2557,6 +2557,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3410,6 +3411,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3799,6 +3801,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5714,6 +5717,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5941,6 +5945,7 @@ self: super: { "network-bytestring" = dontDistribute super."network-bytestring"; "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6713,6 +6718,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 63a27278bc012..8337bda39cb09 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -2554,6 +2554,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3407,6 +3408,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3796,6 +3798,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5710,6 +5713,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5937,6 +5941,7 @@ self: super: { "network-bytestring" = dontDistribute super."network-bytestring"; "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6707,6 +6712,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index b04324a3e14c8..43afe3fcc25b9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -2552,6 +2552,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3404,6 +3405,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3793,6 +3795,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5706,6 +5709,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5933,6 +5937,7 @@ self: super: { "network-bytestring" = dontDistribute super."network-bytestring"; "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6702,6 +6707,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 3a41fc07bbae6..23f906f030230 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -2549,6 +2549,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "declarative" = dontDistribute super."declarative"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; @@ -3400,6 +3401,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3789,6 +3791,7 @@ self: super: { "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-mirror" = doDistribute super."hackage-mirror_0_1_0_0"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -5702,6 +5705,7 @@ self: super: { "monad-skeleton" = doDistribute super."monad-skeleton_0_1_2_1"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5929,6 +5933,7 @@ self: super: { "network-bytestring" = dontDistribute super."network-bytestring"; "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6697,6 +6702,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index f242179e73a4e..84ce04ad25f35 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -2485,6 +2485,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3309,6 +3310,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3685,6 +3687,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3858,6 +3861,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -5068,6 +5072,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5516,6 +5521,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5733,6 +5739,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6462,6 +6469,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index c9e4182196f0b..c04f602d55d16 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -2483,6 +2483,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3304,6 +3305,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3680,6 +3682,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3853,6 +3856,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -5055,6 +5059,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5503,6 +5508,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5720,6 +5726,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6448,6 +6455,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index a1ebe60a9ecaf..17f07bbbe041c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -2476,6 +2476,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3293,6 +3294,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3667,6 +3669,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3837,6 +3840,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4707,6 +4711,7 @@ self: super: { "iptadmin" = dontDistribute super."iptadmin"; "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -5032,6 +5037,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5479,6 +5485,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5694,6 +5701,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6419,6 +6427,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6664,6 +6673,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_2"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "rev-state" = doDistribute super."rev-state_0_1_1"; "revdectime" = dontDistribute super."revdectime"; @@ -7218,6 +7228,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 7c814e27ccfe9..2e7ab1dda21cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -2445,6 +2445,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3248,6 +3249,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3618,6 +3620,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3787,6 +3790,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4654,6 +4658,7 @@ self: super: { "iptadmin" = dontDistribute super."iptadmin"; "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4977,6 +4982,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5420,6 +5426,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5633,6 +5640,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6348,6 +6356,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6590,6 +6599,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_2"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "rev-state" = doDistribute super."rev-state_0_1_1"; "revdectime" = dontDistribute super."revdectime"; @@ -7138,6 +7148,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index ea20f7e7d14cd..48ce764aff4d8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -2440,6 +2440,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3243,6 +3244,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3613,6 +3615,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3782,6 +3785,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4648,6 +4652,7 @@ self: super: { "iptadmin" = dontDistribute super."iptadmin"; "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4971,6 +4976,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5413,6 +5419,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5626,6 +5633,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6341,6 +6349,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6582,6 +6591,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_2"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "rev-state" = doDistribute super."rev-state_0_1_1"; "revdectime" = dontDistribute super."revdectime"; @@ -7129,6 +7139,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index 38acdb238cfe8..3aa1204e72541 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -2408,6 +2408,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -2443,6 +2444,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_24"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -3188,6 +3190,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3555,6 +3558,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3712,6 +3716,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3721,6 +3726,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4568,6 +4574,7 @@ self: super: { "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4889,6 +4896,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5317,6 +5325,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5526,6 +5535,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6221,6 +6231,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6458,6 +6469,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6997,6 +7009,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index ae02a8e85a58e..612dbe5c9c852 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -2400,6 +2400,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -2435,6 +2436,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_24"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -3178,6 +3180,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3545,6 +3548,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3702,6 +3706,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3711,6 +3716,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4553,6 +4559,7 @@ self: super: { "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4874,6 +4881,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5301,6 +5309,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5510,6 +5519,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6204,6 +6214,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6441,6 +6452,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6980,6 +6992,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index 6b0728a07d74e..9fa65e9651299 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -2395,6 +2395,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -2430,6 +2431,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_24"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -3171,6 +3173,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3538,6 +3541,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3695,6 +3699,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3704,6 +3709,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4544,6 +4550,7 @@ self: super: { "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4864,6 +4871,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5285,6 +5293,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5494,6 +5503,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6186,6 +6196,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6423,6 +6434,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6960,6 +6972,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index c7c616b0c09a4..2bc6383a95a10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -2385,6 +2385,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -2420,6 +2421,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_24"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -3160,6 +3162,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3527,6 +3530,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3684,6 +3688,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3693,6 +3698,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4527,6 +4533,7 @@ self: super: { "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4847,6 +4854,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5267,6 +5275,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5475,6 +5484,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6163,6 +6173,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6400,6 +6411,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6937,6 +6949,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; @@ -6979,6 +6992,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index e05ecd581b36e..28f470e7dda96 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -2373,6 +2373,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -2408,6 +2409,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_24"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -3145,6 +3147,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3512,6 +3515,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3669,6 +3673,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3678,6 +3683,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4511,6 +4517,7 @@ self: super: { "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4830,6 +4837,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5248,6 +5256,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5455,6 +5464,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6140,6 +6150,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6376,6 +6387,7 @@ self: super: { "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6909,6 +6921,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; @@ -6951,6 +6964,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index c0e68130c4a74..a6d2b1237c8d7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -2369,6 +2369,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -2404,6 +2405,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_24"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -3138,6 +3140,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3505,6 +3508,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3662,6 +3666,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3671,6 +3676,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4502,6 +4508,7 @@ self: super: { "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4820,6 +4827,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5237,6 +5245,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5244,6 +5253,7 @@ self: super: { "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_2_0"; "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; @@ -5443,6 +5453,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6125,6 +6136,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6361,6 +6373,7 @@ self: super: { "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6894,6 +6907,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; @@ -6936,6 +6950,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -7156,6 +7171,7 @@ 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_2"; "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index a7e35e6c137d5..1250eb5119cb9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -2439,6 +2439,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3237,6 +3238,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3606,6 +3608,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3775,6 +3778,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4639,6 +4643,7 @@ self: super: { "iptadmin" = dontDistribute super."iptadmin"; "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4962,6 +4967,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5399,6 +5405,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5611,6 +5618,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6321,6 +6329,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6562,6 +6571,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_2"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -7108,6 +7118,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index ce377cc70cb66..f9911c0a94d98 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -2431,6 +2431,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3221,6 +3222,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3589,6 +3591,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3758,6 +3761,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4621,6 +4625,7 @@ self: super: { "iptadmin" = dontDistribute super."iptadmin"; "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4944,6 +4949,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5379,6 +5385,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5591,6 +5598,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6299,6 +6307,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6538,6 +6547,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -7081,6 +7091,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index f10586dcc5aef..790a2add670f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -2427,6 +2427,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3211,6 +3212,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3579,6 +3581,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3738,6 +3741,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3747,6 +3751,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4608,6 +4613,7 @@ self: super: { "iptadmin" = dontDistribute super."iptadmin"; "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4931,6 +4937,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5364,6 +5371,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5574,6 +5582,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6278,6 +6287,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6516,6 +6526,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -7059,6 +7070,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 7743af0949ef2..e52c401380f83 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -2424,6 +2424,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3208,6 +3209,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3576,6 +3578,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3734,6 +3737,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3743,6 +3747,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4603,6 +4608,7 @@ self: super: { "iptadmin" = dontDistribute super."iptadmin"; "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4926,6 +4932,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5359,6 +5366,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5569,6 +5577,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6273,6 +6282,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6511,6 +6521,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -7054,6 +7065,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 1299567a772f4..3393c7f35eae0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -2418,6 +2418,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3200,6 +3201,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3567,6 +3569,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3725,6 +3728,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3734,6 +3738,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4592,6 +4597,7 @@ self: super: { "iptadmin" = dontDistribute super."iptadmin"; "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4914,6 +4920,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5346,6 +5353,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5555,6 +5563,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6257,6 +6266,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6494,6 +6504,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -7037,6 +7048,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 8b3c63bdb5160..cdb0b7b2f7a25 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -2414,6 +2414,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3196,6 +3197,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3563,6 +3565,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3721,6 +3724,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3730,6 +3734,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4586,6 +4591,7 @@ self: super: { "iptadmin" = dontDistribute super."iptadmin"; "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4908,6 +4914,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5339,6 +5346,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5548,6 +5556,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6248,6 +6257,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6485,6 +6495,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -7027,6 +7038,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index 8454d0b5a632f..fdd720ddc0726 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -2414,6 +2414,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3196,6 +3197,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3563,6 +3565,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3721,6 +3724,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3730,6 +3734,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4586,6 +4591,7 @@ self: super: { "iptadmin" = dontDistribute super."iptadmin"; "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4908,6 +4914,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5339,6 +5346,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5548,6 +5556,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6248,6 +6257,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6485,6 +6495,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -7027,6 +7038,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 1ca18de21a3a7..46a86d946a1f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -2412,6 +2412,7 @@ self: super: { "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3193,6 +3194,7 @@ self: super: { "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3560,6 +3562,7 @@ self: super: { "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; "hackage-diff" = dontDistribute super."hackage-diff"; "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; "hackage-proxy" = dontDistribute super."hackage-proxy"; "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; "hackage-security" = dontDistribute super."hackage-security"; @@ -3717,6 +3720,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_1"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3726,6 +3730,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_13"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -4576,6 +4581,7 @@ self: super: { "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_2_6_0"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; "irc-dcc" = dontDistribute super."irc-dcc"; @@ -4898,6 +4904,7 @@ self: super: { "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = doDistribute super."leveldb-haskell_0_6_3"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; @@ -5329,6 +5336,7 @@ self: super: { "monad-resumption" = dontDistribute super."monad-resumption"; "monad-state" = dontDistribute super."monad-state"; "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; "monad-stlike-io" = dontDistribute super."monad-stlike-io"; "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; @@ -5538,6 +5546,7 @@ self: super: { "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; "network-conduit" = dontDistribute super."network-conduit"; + "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_0_1"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; "network-dbus" = dontDistribute super."network-dbus"; @@ -6234,6 +6243,7 @@ self: super: { "quickpull" = dontDistribute super."quickpull"; "quickset" = dontDistribute super."quickset"; "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; @@ -6471,6 +6481,7 @@ self: super: { "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_7_1"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -7010,6 +7021,7 @@ self: super: { "splaytree" = dontDistribute super."splaytree"; "spline3" = dontDistribute super."spline3"; "splines" = dontDistribute super."splines"; + "split" = doDistribute super."split_0_2_3"; "split-channel" = dontDistribute super."split-channel"; "split-record" = dontDistribute super."split-record"; "split-tchan" = dontDistribute super."split-tchan"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 8a88cce67538d..975cbaa3ece19 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -446,6 +446,7 @@ self: { homepage = "https://github.com/PseudoPower/AFSM"; description = "Arrowized functional state machines"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AGI" = callPackage @@ -10784,6 +10785,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "HaskellNet_0_5_1" = callPackage + ({ mkDerivation, array, base, base64-string, bytestring, cryptohash + , mime-mail, mtl, network, old-time, pretty, text + }: + mkDerivation { + pname = "HaskellNet"; + version = "0.5.1"; + sha256 = "3245d31ad76f9f9013a2f6e2285d73ed37376eeb073c100b9a6d19e87f0ca838"; + libraryHaskellDepends = [ + array base base64-string bytestring cryptohash mime-mail mtl + network old-time pretty text + ]; + homepage = "https://github.com/jtdaugherty/HaskellNet"; + description = "Client support for POP3, SMTP, and IMAP"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "HaskellNet-SSL_0_3_2_1" = callPackage ({ mkDerivation, base, bytestring, connection, data-default , HaskellNet, network, tls @@ -16645,7 +16664,7 @@ self: { homepage = "http://gowthamk.github.io/Quelea"; description = "Programming with Eventual Consistency over Cassandra"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuickAnnotate" = callPackage @@ -20259,18 +20278,16 @@ self: { "UTFTConverter" = callPackage ({ mkDerivation, base, bytestring, directory, filepath, hspec - , JuicyPixels, time + , image-type, JuicyPixels, time }: mkDerivation { pname = "UTFTConverter"; - version = "0.1.0.0"; - sha256 = "5679130800bbb11e3a67ab638e97e733b4824edff8b8a6b2e88b7daaf56b934e"; - revision = "10"; - editedCabalFile = "abbfdf9c3e4816c0f010740a21d3360ceb55d2591329c92d6b163015fd581e01"; + version = "0.1.0.1"; + sha256 = "c4384218099d24e3002267c5ca2d2d168d65177f6b7c839e7fddb8eca84bc58d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bytestring directory filepath JuicyPixels time + base bytestring directory filepath image-type JuicyPixels time ]; executableHaskellDepends = [ base bytestring directory filepath JuicyPixels time @@ -23834,6 +23851,7 @@ self: { homepage = "https://github.com/thsutton/aeson-diff"; description = "Extract and apply patches to JSON documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-extra_0_2_1_0" = callPackage @@ -24032,11 +24050,11 @@ self: { }: mkDerivation { pname = "aeson-flatten"; - version = "0.1.0.1"; - sha256 = "e5376ef651b659fdc38274087fdd976da077a6317ec6cd44249e63bd85934bdd"; + version = "0.1.0.2"; + sha256 = "2799b6a41aa112de21605a4407b7efef175fbd2a2fb72b37ec554f150398684d"; libraryHaskellDepends = [ aeson base text unordered-containers ]; testHaskellDepends = [ aeson base bytestring hspec ]; - homepage = "https://github.com/githubuser/aeson-flatten#readme"; + homepage = "https://github.com/j1r1k/aeson-flatten#readme"; description = "JSON flatten for Aeson"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -35205,6 +35223,7 @@ self: { homepage = "http://github.com/wereHamster/avers-api"; description = "Types describing the core and extended Avers APIs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avers-server_0_0_1" = callPackage @@ -35272,6 +35291,7 @@ self: { homepage = "http://github.com/wereHamster/avers-server"; description = "Server implementation of the Avers API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avl-static" = callPackage @@ -40428,31 +40448,32 @@ self: { }) {}; "biohazard" = callPackage - ({ mkDerivation, aeson, array, async, attoparsec, base, binary - , bytestring, bytestring-mmap, containers, deepseq, directory - , exceptions, filepath, hashable, iteratee, ListLike + ({ mkDerivation, aeson, async, attoparsec, base, binary, bytestring + , bytestring-mmap, containers, deepseq, directory, exceptions + , filepath, hashable, hmatrix, iteratee, ListLike , nonlinear-optimization, primitive, random, scientific, stm - , template-haskell, text, transformers, unix, unordered-containers - , Vec, vector, vector-algorithms, vector-th-unbox, zlib + , strict, template-haskell, text, transformers, unix + , unordered-containers, Vec, vector, vector-algorithms + , vector-th-unbox, zlib }: mkDerivation { pname = "biohazard"; - version = "0.6.3"; - sha256 = "063e812cb4c5c9c518363525cec4f309f9ebdf4c8af12e8bf88ca9f39edb47e5"; + version = "0.6.5"; + sha256 = "1510dd8d46bca9acfc8509dd6e220ab80ce771f7a87a34a49ce1c4c754d04e36"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson array async attoparsec base binary bytestring bytestring-mmap - containers directory exceptions filepath iteratee ListLike - primitive random scientific stm template-haskell text transformers - unix unordered-containers Vec vector vector-algorithms - vector-th-unbox zlib + aeson async attoparsec base binary bytestring bytestring-mmap + containers deepseq directory exceptions filepath iteratee ListLike + nonlinear-optimization primitive random scientific stm + template-haskell text transformers unix unordered-containers Vec + vector vector-algorithms vector-th-unbox zlib ]; executableHaskellDepends = [ - aeson async base binary bytestring containers deepseq directory - exceptions hashable iteratee nonlinear-optimization random text - transformers unordered-containers vector vector-algorithms - vector-th-unbox + aeson async base binary bytestring containers directory filepath + hashable hmatrix iteratee nonlinear-optimization primitive random + strict text transformers unix unordered-containers Vec vector + vector-algorithms vector-th-unbox ]; jailbreak = true; homepage = "http://github.com/udo-stenzel/biohazard"; @@ -42278,6 +42299,7 @@ self: { ]; description = "Distributed bloom filters on Redis (using the Hedis client)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloxorz" = callPackage @@ -44132,22 +44154,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "bytestring_0_10_6_0" = callPackage + "bytestring_0_10_8_0" = callPackage ({ mkDerivation, base, byteorder, deepseq, directory, dlist , ghc-prim, HUnit, integer-gmp, mtl, QuickCheck, random , test-framework, test-framework-hunit, test-framework-quickcheck2 }: mkDerivation { pname = "bytestring"; - version = "0.10.6.0"; - sha256 = "271b9a6b7b81bc259f8a947b12354951829580b0fe0bd8482e41af261b118977"; + version = "0.10.8.0"; + sha256 = "1d57175b5b0f7da1c1d43e8875fcc2a5bbcfbdadde2a19e59d975233dc751819"; + revision = "1"; + editedCabalFile = "288cc7c21a637c83679d5aae751916befefa8ed26811bf6975f076bf7b3cb01f"; libraryHaskellDepends = [ base deepseq ghc-prim integer-gmp ]; testHaskellDepends = [ base byteorder deepseq directory dlist ghc-prim HUnit mtl QuickCheck random test-framework test-framework-hunit test-framework-quickcheck2 ]; - jailbreak = true; homepage = "https://github.com/haskell/bytestring"; description = "Fast, compact, strict and lazy byte strings with a list interface"; license = stdenv.lib.licenses.bsd3; @@ -45701,6 +45724,8 @@ self: { pname = "cabal-install"; version = "1.24.0.0"; sha256 = "d840ecfd0a95a96e956b57fb2f3e9c81d9fc160e1fd0ea350b0d37d169d9e87e"; + revision = "1"; + editedCabalFile = "375b1a073b68c5531b11f70cdcf55a9add6f8337d9ff0c850c1da7e7bf7bbf39"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -48316,8 +48341,8 @@ self: { ({ mkDerivation, base, bytestring, comonad, text }: mkDerivation { pname = "category-printf"; - version = "0.1.0.0"; - sha256 = "e954c7ab4970551a334fae1fc4ef98f56c65290b366f17cfb00df85f93bd90e2"; + version = "0.1.0.2"; + sha256 = "135238d1fccf41277339c28c9479091b5ab5243674652ba4f644bcdcc2267de4"; libraryHaskellDepends = [ base bytestring comonad text ]; jailbreak = true; description = "Highbrow approach to type-safe printf format specifications"; @@ -53718,6 +53743,7 @@ self: { testSystemDepends = [ cmph ]; description = "low level interface to CMPH"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {cmph = null;}; "cmu" = callPackage @@ -54313,6 +54339,7 @@ self: { homepage = "https://bitbucket.org/functionally/color-counter"; description = "Count colors in images"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colorize-haskell" = callPackage @@ -56163,6 +56190,29 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "conduit_1_2_6_5" = callPackage + ({ mkDerivation, base, containers, exceptions, hspec, lifted-base + , mmorph, mtl, QuickCheck, resourcet, safe, transformers + , transformers-base + }: + mkDerivation { + pname = "conduit"; + version = "1.2.6.5"; + sha256 = "b7915cd0d1dea9bbbf47060c980bbc5b214717874533f88ced763a49d905b4f8"; + libraryHaskellDepends = [ + base exceptions lifted-base mmorph mtl resourcet transformers + transformers-base + ]; + testHaskellDepends = [ + base containers exceptions hspec mtl QuickCheck resourcet safe + transformers + ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Streaming data processing library"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "conduit-audio" = callPackage ({ mkDerivation, base, conduit, vector }: mkDerivation { @@ -61997,26 +62047,28 @@ self: { ]; description = "Permissively licensed D-Bus client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "d3d11binding" = callPackage ({ mkDerivation, base, c-storable-deriving, d3d11, D3DCompiler - , d3dx11, d3dxof, dxgi, dxguid, Win32 + , d3dx11, d3dxof, dxgi, dxguid, vect, Win32 }: mkDerivation { pname = "d3d11binding"; - version = "0.0.0.3"; - sha256 = "f156ed2e733df23922146d95cc438647a3685382fad7db424ebc459847668282"; + version = "0.0.0.5"; + sha256 = "036c759c06663100d0de0ce8e0bdd8e8d476bfbf02221c4678faecbaf229400f"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base c-storable-deriving Win32 ]; + libraryHaskellDepends = [ base c-storable-deriving vect Win32 ]; librarySystemDepends = [ d3d11 D3DCompiler d3dx11 d3dxof dxgi dxguid ]; - executableHaskellDepends = [ base Win32 ]; + executableHaskellDepends = [ base c-storable-deriving vect Win32 ]; homepage = "https://github.com/jwvg0425/d3d11binding"; description = "A raw binding for the directX 11"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {D3DCompiler = null; d3d11 = null; d3dx11 = null; d3dxof = null; dxgi = null; dxguid = null;}; @@ -62219,6 +62271,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text unix-compat zip-archive zlib ]; + doCheck = false; postInstall = '' mkdir -p $out/etc/bash_completion.d mv contrib/darcs_completion $out/etc/bash_completion.d/darcs @@ -62266,6 +62319,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text unix-compat zip-archive zlib ]; + doCheck = false; postInstall = '' mkdir -p $out/etc/bash_completion.d mv contrib/darcs_completion $out/etc/bash_completion.d/darcs @@ -64707,8 +64761,8 @@ self: { }: mkDerivation { pname = "ddc-build"; - version = "0.4.2.1"; - sha256 = "2704257a4e47a432e0b4873297d833910f86435e7fd1add4530089849313f8ad"; + version = "0.4.2.2"; + sha256 = "bc3c37ab56bdcc3ea08a73a5964382bcba0b9844ceab6408bf5dc7eb1b6a02e7"; libraryHaskellDepends = [ base containers ddc-base ddc-core ddc-core-babel ddc-core-flow ddc-core-llvm ddc-core-salt ddc-core-simpl ddc-core-tetra @@ -64810,8 +64864,8 @@ self: { }: mkDerivation { pname = "ddc-core-llvm"; - version = "0.4.2.1"; - sha256 = "83780f3d1ee27ee5d754ceb2e221c262280fcdf96b28691519859deb7bc7ea61"; + version = "0.4.2.2"; + sha256 = "9d17fb120cdcd96793fa82be1a715db44f1ff5e9a99afbf617b778f75d124b50"; libraryHaskellDepends = [ array base bytestring containers ddc-base ddc-core ddc-core-salt ddc-core-simpl mtl text transformers @@ -64884,8 +64938,8 @@ self: { }: mkDerivation { pname = "ddc-driver"; - version = "0.4.2.1"; - sha256 = "fe3427d7f5967f782ac67742345cad132c1bc9e576e9c369e3bba4fbc4c5d1cd"; + version = "0.4.2.2"; + sha256 = "61192fb5712e503a30a8e214b4ec0f41056a08845f6becd2b91c23a1d2538984"; libraryHaskellDepends = [ base containers ddc-base ddc-build ddc-core ddc-core-flow ddc-core-llvm ddc-core-salt ddc-core-simpl ddc-core-tetra @@ -64937,8 +64991,8 @@ self: { }: mkDerivation { pname = "ddc-tools"; - version = "0.4.2.1"; - sha256 = "cc22d2bfef1d9de385da0e2eb31362c6f61e36b2784436b23d3beb24b9fa7e67"; + version = "0.4.2.2"; + sha256 = "deb2f30547bf191cf244a604db3add63017569cdeeb7dcec5b93388d6c1ff0d6"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -65165,6 +65219,19 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "decimal-arithmetic" = callPackage + ({ mkDerivation, base, QuickCheck }: + mkDerivation { + pname = "decimal-arithmetic"; + version = "0.1.0.1"; + sha256 = "98af68f955862933cbb38d887949d491e135dbb107ac87062717c9188a6b95fe"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base QuickCheck ]; + homepage = "https://github.com/verement/decimal-arithmetic#readme"; + description = "An implementation of Mike Cowlishaw's General Decimal Arithmetic Specification"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "declarative" = callPackage ({ mkDerivation, base, hasty-hamiltonian, lens, mcmc-types , mighty-metropolis, mwc-probability, pipes, primitive @@ -66116,7 +66183,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "derive" = callPackage + "derive_2_5_24" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , haskell-src-exts, pretty, process, syb, template-haskell , transformers, uniplate @@ -66135,6 +66202,28 @@ self: { homepage = "https://github.com/ndmitchell/derive#readme"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "derive" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , haskell-src-exts, pretty, process, syb, template-haskell + , transformers, uniplate + }: + mkDerivation { + pname = "derive"; + version = "2.5.25"; + sha256 = "41a18ba70698a7be1c62e1567da0159bc11b10ba0c60b500cb1634eec0b410f1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring containers directory filepath haskell-src-exts + pretty process syb template-haskell transformers uniplate + ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/ndmitchell/derive#readme"; + description = "A program and library to derive instances for data types"; + license = stdenv.lib.licenses.bsd3; }) {}; "derive-IG" = callPackage @@ -79064,8 +79153,8 @@ self: { }: mkDerivation { pname = "fast-tagsoup"; - version = "1.0.9"; - sha256 = "20c9895e01e522215bf0b36df084dc78b53b1e9a05d4be220c4816a6d1260d9b"; + version = "1.0.10"; + sha256 = "83e90610fdd1c0f6587e293a7f188cdc5376425e002be2226c83afea2b20d046"; libraryHaskellDepends = [ base bytestring containers tagsoup text text-icu ]; @@ -84314,6 +84403,7 @@ self: { homepage = "https://github.com/salemove/freddy-hs"; description = "RabbitMQ Messaging API supporting request-response"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free_4_9" = callPackage @@ -87622,6 +87712,7 @@ self: { homepage = "https://github.com/carlohamalainen/ghc-imported-from"; description = "Find the Haddock documentation for a symbol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-make" = callPackage @@ -88494,6 +88585,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ghcjs-ajax" = callPackage + ({ mkDerivation, base, http-types, text }: + mkDerivation { + pname = "ghcjs-ajax"; + version = "0.1.0.0"; + sha256 = "c6108172d6626c120ad2f5af3e5cb9f36821ac04c3d382214149eff39f4b9643"; + libraryHaskellDepends = [ base http-types text ]; + homepage = "https://github.com/agrafix/ghcjs-ajax#readme"; + description = "Crossbrowser AJAX Bindings for GHCJS"; + license = stdenv.lib.licenses.mit; + }) {}; + "ghcjs-codemirror" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -91855,6 +91958,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Comprehensive Google Services SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-adexchange-buyer" = callPackage @@ -91867,6 +91971,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Ad Exchange Buyer SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-adexchange-seller" = callPackage @@ -91879,6 +91984,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Ad Exchange Seller SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-admin-datatransfer" = callPackage @@ -91891,6 +91997,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Admin Data Transfer SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-admin-directory" = callPackage @@ -91903,6 +92010,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Admin Directory SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-admin-emailmigration" = callPackage @@ -91915,6 +92023,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Email Migration API v2 SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-admin-reports" = callPackage @@ -91927,6 +92036,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Admin Reports SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-adsense" = callPackage @@ -91939,6 +92049,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google AdSense Management SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-adsense-host" = callPackage @@ -91951,6 +92062,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google AdSense Host SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-affiliates" = callPackage @@ -91963,6 +92075,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Affiliate Network SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-analytics" = callPackage @@ -91975,6 +92088,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Analytics SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-android-enterprise" = callPackage @@ -91987,6 +92101,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play EMM SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-android-publisher" = callPackage @@ -91999,6 +92114,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Developer SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-appengine" = callPackage @@ -92011,6 +92127,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google App Engine Admin SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-activity" = callPackage @@ -92023,6 +92140,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Apps Activity SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-calendar" = callPackage @@ -92035,6 +92153,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Calendar SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-licensing" = callPackage @@ -92047,6 +92166,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Enterprise License Manager SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-reseller" = callPackage @@ -92059,6 +92179,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Enterprise Apps Reseller SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-tasks" = callPackage @@ -92071,6 +92192,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Tasks SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-appstate" = callPackage @@ -92083,6 +92205,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google App State SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-autoscaler" = callPackage @@ -92095,6 +92218,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine Autoscaler SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-bigquery" = callPackage @@ -92107,6 +92231,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google BigQuery SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-billing" = callPackage @@ -92119,6 +92244,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Billing SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-blogger" = callPackage @@ -92131,6 +92257,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Blogger SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-books" = callPackage @@ -92143,6 +92270,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Books SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-civicinfo" = callPackage @@ -92155,6 +92283,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Civic Information SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-classroom" = callPackage @@ -92167,6 +92296,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Classroom SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-cloudtrace" = callPackage @@ -92179,6 +92309,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Trace SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-compute" = callPackage @@ -92191,6 +92322,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-container" = callPackage @@ -92203,6 +92335,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Container Engine SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-core" = callPackage @@ -92224,6 +92357,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Core data types and functionality for Gogol libraries"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-customsearch" = callPackage @@ -92236,6 +92370,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google CustomSearch SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-dataflow" = callPackage @@ -92248,6 +92383,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Dataflow SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-datastore" = callPackage @@ -92260,6 +92396,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Datastore SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-debugger" = callPackage @@ -92272,6 +92409,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Debugger SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-deploymentmanager" = callPackage @@ -92284,6 +92422,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Deployment Manager SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-dfareporting" = callPackage @@ -92296,6 +92435,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google DCM/DFA Reporting And Trafficking SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-discovery" = callPackage @@ -92308,6 +92448,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google APIs Discovery Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-dns" = callPackage @@ -92320,6 +92461,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud DNS SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-doubleclick-bids" = callPackage @@ -92332,6 +92474,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google DoubleClick Bid Manager SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-doubleclick-search" = callPackage @@ -92344,6 +92487,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google DoubleClick Search SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-drive" = callPackage @@ -92356,6 +92500,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Drive SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-fitness" = callPackage @@ -92368,6 +92513,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Fitness SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-fonts" = callPackage @@ -92380,6 +92526,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Fonts Developer SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-freebasesearch" = callPackage @@ -92392,6 +92539,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Freebase Search SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-fusiontables" = callPackage @@ -92404,6 +92552,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Fusion Tables SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-games" = callPackage @@ -92416,6 +92565,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Game Services SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-games-configuration" = callPackage @@ -92428,6 +92578,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Game Services Publishing SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-games-management" = callPackage @@ -92440,6 +92591,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Game Services Management SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-genomics" = callPackage @@ -92452,6 +92604,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Genomics SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-gmail" = callPackage @@ -92464,6 +92617,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Gmail SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-groups-migration" = callPackage @@ -92476,6 +92630,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Groups Migration SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-groups-settings" = callPackage @@ -92488,6 +92643,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Groups Settings SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-identity-toolkit" = callPackage @@ -92500,6 +92656,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Identity Toolkit SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-latencytest" = callPackage @@ -92512,6 +92669,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Network Performance Monitoring SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-logging" = callPackage @@ -92524,6 +92682,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Logging SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-maps-coordinate" = callPackage @@ -92536,6 +92695,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Maps Coordinate SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-maps-engine" = callPackage @@ -92548,6 +92708,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Maps Engine SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-mirror" = callPackage @@ -92560,6 +92721,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Mirror SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-monitoring" = callPackage @@ -92572,6 +92734,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Monitoring SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-oauth2" = callPackage @@ -92584,6 +92747,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google OAuth2 SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-pagespeed" = callPackage @@ -92596,6 +92760,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google PageSpeed Insights SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-partners" = callPackage @@ -92608,6 +92773,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Partners SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-play-moviespartner" = callPackage @@ -92620,6 +92786,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Movies Partner SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-plus" = callPackage @@ -92632,6 +92799,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google + SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-plus-domains" = callPackage @@ -92644,6 +92812,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google + Domains SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-prediction" = callPackage @@ -92656,6 +92825,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Prediction SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-proximitybeacon" = callPackage @@ -92668,6 +92838,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Proximity Beacon SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-pubsub" = callPackage @@ -92680,6 +92851,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Pub/Sub SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-qpxexpress" = callPackage @@ -92692,6 +92864,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google QPX Express SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-replicapool" = callPackage @@ -92704,6 +92877,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine Instance Group Manager SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-replicapool-updater" = callPackage @@ -92716,6 +92890,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine Instance Group Updater SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-resourcemanager" = callPackage @@ -92728,6 +92903,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Resource Manager SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-resourceviews" = callPackage @@ -92740,6 +92916,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine Instance Groups SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-shopping-content" = callPackage @@ -92752,6 +92929,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Content API for Shopping SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-siteverification" = callPackage @@ -92764,6 +92942,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Site Verification SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-spectrum" = callPackage @@ -92776,6 +92955,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Spectrum Database SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-sqladmin" = callPackage @@ -92788,6 +92968,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud SQL Administration SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-storage" = callPackage @@ -92800,6 +92981,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Storage JSON SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-storage-transfer" = callPackage @@ -92812,6 +92994,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Storage Transfer SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-tagmanager" = callPackage @@ -92824,6 +93007,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Tag Manager SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-taskqueue" = callPackage @@ -92836,6 +93020,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google TaskQueue SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-translate" = callPackage @@ -92848,6 +93033,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Translate SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-urlshortener" = callPackage @@ -92860,6 +93046,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google URL Shortener SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-useraccounts" = callPackage @@ -92872,6 +93059,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud User Accounts SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-webmaster-tools" = callPackage @@ -92884,6 +93072,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Webmaster Tools SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-youtube" = callPackage @@ -92896,6 +93085,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google YouTube Data SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-youtube-analytics" = callPackage @@ -92908,6 +93098,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google YouTube Analytics SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-youtube-reporting" = callPackage @@ -92920,6 +93111,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google YouTube Reporting SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gooey" = callPackage @@ -93071,6 +93263,7 @@ self: { jailbreak = true; description = "Google Translate API bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "googleplus" = callPackage @@ -95895,6 +96088,7 @@ self: { testHaskellDepends = [ base HUnit ]; description = "A simple wrapper around uuid"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gulcii" = callPackage @@ -97316,6 +97510,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hackage-processing" = callPackage + ({ mkDerivation, base, Cabal, containers, hackage-db }: + mkDerivation { + pname = "hackage-processing"; + version = "0.0.0.1"; + sha256 = "98de2ade50bf613a9172322b00d05c9d40a51e8f65aedfe4a876ed9c3b4f8b67"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base Cabal containers hackage-db ]; + homepage = "http://hub.darcs.net/thielema/hackage-processing"; + description = "Process 00-index.tar.gz from Hackage"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hackage-proxy" = callPackage ({ mkDerivation, base, basic-prelude, blaze-builder, bytestring , Cabal, case-insensitive, conduit, containers, filepath @@ -97617,6 +97825,7 @@ self: { ]; description = "Hackage and Portage integration tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hactor" = callPackage @@ -101813,6 +102022,7 @@ self: { homepage = "https://github.com/soundcloud/haskell-kubernetes"; description = "Haskell bindings to the Kubernetes API (via swagger-codegen)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-lexer" = callPackage @@ -102056,7 +102266,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-neo4j-client" = callPackage + "haskell-neo4j-client_0_3_2_1" = callPackage ({ mkDerivation, aeson, base, bytestring, Cabal, containers , data-default, hashable, HTTP, http-client, http-conduit , http-types, HUnit, lifted-base, mtl, network-uri, QuickCheck @@ -102086,6 +102296,40 @@ self: { homepage = "https://github.com/asilvestre/haskell-neo4j-rest-client"; description = "A Haskell neo4j client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haskell-neo4j-client" = callPackage + ({ mkDerivation, aeson, base, bytestring, Cabal, containers + , data-default, hashable, HTTP, http-client, http-client-tls + , http-conduit, http-types, HUnit, lifted-base, mtl, network-uri + , QuickCheck, resourcet, scientific, test-framework + , test-framework-hunit, test-framework-quickcheck2 + , test-framework-th, text, transformers, transformers-base + , transformers-compat, unordered-containers, vector + }: + mkDerivation { + pname = "haskell-neo4j-client"; + version = "0.3.2.2"; + sha256 = "4ed871df5e235170863d6890af6c3d241e2672b335b199b05504b635a409d9b1"; + libraryHaskellDepends = [ + aeson base bytestring containers data-default hashable HTTP + http-client http-client-tls http-conduit http-types lifted-base mtl + network-uri resourcet scientific text transformers + transformers-base transformers-compat unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring Cabal data-default hashable HTTP http-client + http-client-tls http-conduit http-types HUnit lifted-base mtl + network-uri QuickCheck resourcet scientific test-framework + test-framework-hunit test-framework-quickcheck2 test-framework-th + text transformers transformers-base transformers-compat + unordered-containers vector + ]; + doCheck = false; + homepage = "https://github.com/asilvestre/haskell-neo4j-rest-client"; + description = "A Haskell neo4j client"; + license = stdenv.lib.licenses.mit; }) {}; "haskell-openflow" = callPackage @@ -102506,7 +102750,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-src-meta" = callPackage + "haskell-src-meta_0_6_0_13" = callPackage ({ mkDerivation, base, haskell-src-exts, pretty, syb , template-haskell, th-orphans }: @@ -102519,6 +102763,22 @@ self: { ]; description = "Parse source to template-haskell abstract syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haskell-src-meta" = callPackage + ({ mkDerivation, base, haskell-src-exts, pretty, syb + , template-haskell, th-orphans + }: + mkDerivation { + pname = "haskell-src-meta"; + version = "0.6.0.14"; + sha256 = "769124392398695667c800225cd908cb455dadf54a9317870bd9384e0eeb20c9"; + libraryHaskellDepends = [ + base haskell-src-exts pretty syb template-haskell th-orphans + ]; + description = "Parse source to template-haskell abstract syntax"; + license = stdenv.lib.licenses.bsd3; }) {}; "haskell-src-meta-mwotton" = callPackage @@ -107389,6 +107649,7 @@ self: { homepage = "http://github.com/cutsea110/heredoc.git"; description = "heredocument"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herf-time" = callPackage @@ -108645,7 +108906,7 @@ self: { homepage = "https://github.com/jeremyjh/higher-leveldb"; description = "A rich monadic API for working with leveldb databases"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "higherorder" = callPackage @@ -110781,6 +111042,8 @@ self: { pname = "hledger-ui"; version = "0.27.3"; sha256 = "87dcd09479acc3e84a883d427c988a110451dee75a5e1f1c9d5ea2b34e99c4c1"; + revision = "1"; + editedCabalFile = "eac7bd60f3e8f1ff44ed1e41716080df6a8e0533779963aa2a43b18a79121ef0"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -114357,12 +114620,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hpc_0_6_0_2" = callPackage + "hpc_0_6_0_3" = callPackage ({ mkDerivation, base, containers, directory, filepath, time }: mkDerivation { pname = "hpc"; - version = "0.6.0.2"; - sha256 = "95e6f1e5ccfe9e6415eec9d7bb3eccc2c113cecf2079d1f792646269ab4c0aaf"; + version = "0.6.0.3"; + sha256 = "16dac73e55899815a32715c35fa5986da077d7e7887ce8ef1c72b4f33a73a2aa"; libraryHaskellDepends = [ base containers directory filepath time ]; @@ -115150,6 +115413,7 @@ self: { homepage = "https://github.com/tsuraan/hs-blake2"; description = "A cryptohash-inspired library for blake2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libb2;}; "hs-captcha" = callPackage @@ -121932,22 +122196,28 @@ self: { }) {}; "http-proxy" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder - , blaze-builder-conduit, bytestring, bytestring-lexing - , case-insensitive, conduit, ghc-prim, http-conduit, http-types - , lifted-base, network, resourcet, tls, transformers, wai + ({ mkDerivation, async, base, blaze-builder, bytestring + , bytestring-lexing, case-insensitive, conduit, conduit-extra + , connection, hspec, http-client, http-conduit, http-types, mtl + , network, QuickCheck, random, resourcet, text, tls, transformers + , vault, wai, wai-conduit, warp, warp-tls }: mkDerivation { pname = "http-proxy"; - version = "0.0.12"; - sha256 = "2fb6fbcd49babf663fe2d52f3ebb8bddc5b712fb5b0a1741e2c1cfdc47aed84c"; + version = "0.1.0.1"; + sha256 = "e83df2fb719079d0da38b200a1e5f1ee45f734504e59f1eecde4d81cfd499870"; libraryHaskellDepends = [ - base base64-bytestring blaze-builder blaze-builder-conduit - bytestring bytestring-lexing case-insensitive conduit ghc-prim - http-conduit http-types lifted-base network resourcet tls - transformers wai + async base blaze-builder bytestring bytestring-lexing + case-insensitive conduit conduit-extra http-client http-conduit + http-types mtl network resourcet text tls transformers wai + wai-conduit warp warp-tls + ]; + testHaskellDepends = [ + async base blaze-builder bytestring bytestring-lexing + case-insensitive conduit conduit-extra connection hspec http-client + http-conduit http-types network QuickCheck random resourcet text + vault wai wai-conduit warp warp-tls ]; - jailbreak = true; homepage = "https://github.com/erikd/http-proxy"; description = "A library for writing HTTP and HTTPS proxies"; license = stdenv.lib.licenses.bsd3; @@ -123087,8 +123357,8 @@ self: { }: mkDerivation { pname = "hw-conduit"; - version = "0.0.0.8"; - sha256 = "574c7d719bd647f03b6b8f3942c45027ac0a4e49507c38330876507ce2d8b301"; + version = "0.0.0.9"; + sha256 = "48bbf4936ee486f79f40cfac76b425dc019b82dfdfce40539c2ec495436e6293"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -127518,6 +127788,7 @@ self: { homepage = "http://github.com/tweag/inline-java#readme"; description = "Java interop via inline Java code in Haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {jvm = null;}; "inline-r" = callPackage @@ -128319,6 +128590,7 @@ self: { homepage = "https://github.com/mitchellwrosen/io-capture#readme"; description = "Capture IO actions' stdout and stderr"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "io-choice_0_0_5" = callPackage @@ -129034,7 +129306,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "irc-client" = callPackage + "irc-client_0_2_6_0" = callPackage ({ mkDerivation, base, bytestring, conduit, data-default-class , irc-conduit, irc-ctcp, old-locale, stm, stm-conduit, text, time , transformers @@ -129050,6 +129322,25 @@ self: { homepage = "https://github.com/barrucadu/irc-client"; description = "An IRC client library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "irc-client" = callPackage + ({ mkDerivation, base, bytestring, conduit, data-default-class + , irc-conduit, irc-ctcp, old-locale, stm, stm-conduit, text, time + , transformers + }: + mkDerivation { + pname = "irc-client"; + version = "0.3.0.0"; + sha256 = "ddc97ede9d741130d9ee0ff5128550ae9a5f6f4a04f4cb3b0d5c05c887314e0c"; + libraryHaskellDepends = [ + base bytestring conduit data-default-class irc-conduit irc-ctcp + old-locale stm stm-conduit text time transformers + ]; + homepage = "https://github.com/barrucadu/irc-client"; + description = "An IRC client library"; + license = stdenv.lib.licenses.mit; }) {}; "irc-colors" = callPackage @@ -131100,6 +131391,7 @@ self: { homepage = "https://github.com/nikita-volkov/json-ast-quickcheck"; description = "Compatibility layer for \"json-ast\" and \"QuickCheck\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-autotype_0_2_5_4" = callPackage @@ -138231,7 +138523,7 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; - "leveldb-haskell" = callPackage + "leveldb-haskell_0_6_3" = callPackage ({ mkDerivation, async, base, bytestring, data-default, directory , exceptions, filepath, leveldb, mtl, QuickCheck, resourcet, tasty , tasty-quickcheck, temporary, transformers @@ -138257,7 +138549,36 @@ self: { homepage = "http://github.com/kim/leveldb-haskell"; description = "Haskell bindings to LevelDB"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) leveldb;}; + + "leveldb-haskell" = callPackage + ({ mkDerivation, async, base, bytestring, data-default, directory + , exceptions, filepath, leveldb, mtl, QuickCheck, resourcet, tasty + , tasty-quickcheck, temporary, transformers + }: + mkDerivation { + pname = "leveldb-haskell"; + version = "0.6.4"; + sha256 = "25a8f9c2cdd5a32423389173a6323bd804689f69aee1082c57887ea74ead1b04"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring data-default exceptions filepath resourcet + transformers + ]; + librarySystemDepends = [ leveldb ]; + executableHaskellDepends = [ + async base bytestring data-default resourcet transformers + ]; + testHaskellDepends = [ + base bytestring data-default directory exceptions mtl QuickCheck + tasty tasty-quickcheck temporary transformers + ]; + homepage = "http://github.com/kim/leveldb-haskell"; + description = "Haskell bindings to LevelDB"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) leveldb;}; "leveldb-haskell-fork" = callPackage @@ -144918,6 +145239,31 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "mandrill_0_5_2_1" = 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.1"; + sha256 = "3b80c10d9a55dfa3e9bbe5b00e65573e29e60b5186699e30b012f911d3acfa5c"; + 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; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "mandulia" = callPackage ({ mkDerivation, array, base, bytestring, containers, directory , filepath, GLUT, hslua, time @@ -150520,6 +150866,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "monad-ste" = callPackage + ({ mkDerivation, base, exceptions, ghc-prim, hspec, HUnit + , primitive + }: + mkDerivation { + pname = "monad-ste"; + version = "0.1.0.0"; + sha256 = "86677d1b349d2ec5ab8a499c440089de21d86df181acea233fbaba4cf3e9137b"; + libraryHaskellDepends = [ base exceptions ghc-prim primitive ]; + testHaskellDepends = [ base hspec HUnit ]; + homepage = "http://github.com/cartazio/monad-ste"; + description = "ST monad with efficient explicit errors"; + license = stdenv.lib.licenses.bsd2; + }) {}; + "monad-stlike-io" = callPackage ({ mkDerivation, base, bytestring, containers, deepseq, monads-tf }: @@ -150656,7 +151017,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monad-unlift" = callPackage + "monad-unlift_0_1_2_0" = callPackage ({ mkDerivation, base, constraints, exceptions, monad-control, mtl , mutable-containers, resourcet, stm, transformers , transformers-base @@ -150672,9 +151033,10 @@ 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_0_2_0" = callPackage + "monad-unlift" = callPackage ({ mkDerivation, base, constraints, monad-control, transformers , transformers-base }: @@ -150688,7 +151050,6 @@ 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-ref" = callPackage @@ -150704,7 +151065,6 @@ self: { 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; @@ -154585,6 +154945,7 @@ self: { homepage = "https://github.com/cocreature/nanovg-hs"; description = "Haskell bindings for nanovg"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {GLEW = null; inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "nanq" = callPackage @@ -155353,6 +155714,45 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "nested-routes_7_1_0" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, composition-extra + , errors, exceptions, hashable, hashtables, hspec, hspec-wai + , http-types, mtl, poly-arity, pred-set, pred-trie, regex-compat + , semigroups, text, transformers, tries, unordered-containers + , wai-middleware-content-type, wai-middleware-verbs + , wai-transformers, warp + }: + mkDerivation { + pname = "nested-routes"; + version = "7.1.0"; + sha256 = "1fbd722b6a9e637ff1794d1a122d6f52ae6b3cf9b70ebfc0afd5bcd593a12861"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base bytestring composition-extra errors exceptions + hashable hashtables mtl poly-arity pred-set pred-trie regex-compat + semigroups text transformers tries unordered-containers + wai-middleware-content-type wai-middleware-verbs wai-transformers + ]; + executableHaskellDepends = [ + attoparsec base bytestring composition-extra errors exceptions + hashable hashtables http-types mtl poly-arity pred-set pred-trie + regex-compat semigroups text transformers tries + unordered-containers wai-middleware-content-type + wai-middleware-verbs wai-transformers warp + ]; + testHaskellDepends = [ + attoparsec base bytestring composition-extra errors exceptions + hashable hspec hspec-wai http-types mtl poly-arity pred-trie + regex-compat semigroups text transformers tries + unordered-containers wai-middleware-content-type + wai-middleware-verbs wai-transformers + ]; + description = "Declarative, compositional Wai responses"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "nested-sets" = callPackage ({ mkDerivation, base, containers, hspec }: mkDerivation { @@ -156211,7 +156611,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "network-conduit-tls" = callPackage + "network-conduit-tls_1_2_0_1" = callPackage ({ mkDerivation, base, bytestring, conduit, conduit-extra , connection, cprng-aes, data-default, HUnit, monad-control, mtl , network, streaming-commons, tls, transformers @@ -156231,6 +156631,29 @@ self: { homepage = "https://github.com/snoyberg/conduit"; description = "Create TLS-aware network code with conduits"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "network-conduit-tls" = callPackage + ({ mkDerivation, base, bytestring, conduit, conduit-extra + , connection, cprng-aes, data-default, HUnit, monad-control, mtl + , network, streaming-commons, tls, transformers + }: + mkDerivation { + pname = "network-conduit-tls"; + version = "1.2.1"; + sha256 = "3afaab3abeb6933cdd199d8d419c2fe916e07915c672a6d9eb4be038c22de787"; + libraryHaskellDepends = [ + base bytestring conduit conduit-extra connection cprng-aes + data-default monad-control network streaming-commons tls + transformers + ]; + testHaskellDepends = [ + base bytestring conduit conduit-extra connection HUnit mtl + ]; + homepage = "https://github.com/snoyberg/conduit"; + description = "Create TLS-aware network code with conduits"; + license = stdenv.lib.licenses.mit; }) {}; "network-connection" = callPackage @@ -158779,30 +159202,6 @@ self: { }) {}; "octane" = 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"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty autoexporter base binary binary-bits bytestring - containers data-binary-ieee754 deepseq newtype-generics text - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base binary bytestring containers tasty tasty-hspec - ]; - homepage = "https://github.com/tfausak/octane#readme"; - description = "Parse Rocket League replays"; - license = stdenv.lib.licenses.mit; - }) {}; - - "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 @@ -158824,7 +159223,6 @@ self: { homepage = "https://github.com/tfausak/octane#readme"; description = "Parse Rocket League replays"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "octohat" = callPackage @@ -165145,6 +165543,7 @@ self: { ]; description = "A perfect hashing library for mapping bytestrings to values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "period" = callPackage @@ -165900,6 +166299,7 @@ self: { jailbreak = true; description = "Parse DATABASE_URL into configuration types for Persistent"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-equivalence" = callPackage @@ -169398,6 +169798,7 @@ self: { ]; description = "Interfacing pipes with foldl folds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-vector" = callPackage @@ -169595,6 +169996,7 @@ self: { ]; description = "A library and a CLI tool for accessing Pivotal Tracker API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pkcs1" = callPackage @@ -173559,6 +173961,7 @@ self: { ]; description = "Streaming interface to system processes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "processing" = callPackage @@ -176923,6 +177326,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "quickterm" = callPackage + ({ mkDerivation, base, edit-distance, hashmap }: + mkDerivation { + pname = "quickterm"; + version = "0.1.0.0"; + sha256 = "389310e766ef5169819a296719827b0c4aa50c5c6a9eef2a58c3500e6bc147f9"; + libraryHaskellDepends = [ base edit-distance hashmap ]; + homepage = "https://github.com/SamuelSchlesinger/Quickterm"; + description = "An interface for describing and executing terminal applications"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "quicktest" = callPackage ({ mkDerivation, base, directory, haskell98, mtl, process }: mkDerivation { @@ -176957,6 +177372,7 @@ self: { homepage = "https://github.com/jtanguy/quickwebapp"; description = "A quick webapp generator for any file processing tool"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quiver" = callPackage @@ -178417,7 +178833,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-re2/"; description = "Bindings to the re2 regular expression library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "react-flux" = callPackage @@ -178873,6 +179289,7 @@ self: { ]; description = "Code for reading ESRI Shapefiles"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "really-simple-xml-parser" = callPackage @@ -182339,6 +182756,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "resourcet_1_1_7_4" = callPackage + ({ mkDerivation, base, containers, exceptions, hspec, lifted-base + , mmorph, monad-control, mtl, transformers, transformers-base + , transformers-compat + }: + mkDerivation { + pname = "resourcet"; + version = "1.1.7.4"; + sha256 = "a757d3a4d17373dc48a7072c2d98574934a53eb0ac98a32642952beb751e8f85"; + libraryHaskellDepends = [ + base containers exceptions lifted-base mmorph monad-control mtl + transformers transformers-base transformers-compat + ]; + testHaskellDepends = [ base hspec lifted-base transformers ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Deterministic allocation and freeing of scarce resources"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "respond" = callPackage ({ mkDerivation, aeson, base, bifunctors, bytestring, containers , data-default-class, exceptions, fast-logger, formatting, HList @@ -183961,7 +184398,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "retry" = callPackage + "retry_0_7_1" = callPackage ({ mkDerivation, base, data-default-class, exceptions, hspec, HUnit , QuickCheck, random, stm, time, transformers }: @@ -183981,6 +184418,28 @@ self: { homepage = "http://github.com/Soostone/retry"; description = "Retry combinators for monadic actions that may fail"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "retry" = callPackage + ({ mkDerivation, base, data-default-class, exceptions, ghc-prim + , hspec, HUnit, mtl, QuickCheck, random, stm, time, transformers + }: + mkDerivation { + pname = "retry"; + version = "0.7.2"; + sha256 = "26e5317e9b5110b1a2092b0316ae0588a3d00d4fd68d222324f2a2a8fec25bad"; + libraryHaskellDepends = [ + base data-default-class exceptions ghc-prim random transformers + ]; + testHaskellDepends = [ + base data-default-class exceptions ghc-prim hspec HUnit mtl + QuickCheck random stm time transformers + ]; + doCheck = false; + homepage = "http://github.com/Soostone/retry"; + description = "Retry combinators for monadic actions that may fail"; + license = stdenv.lib.licenses.bsd3; }) {}; "retryer" = callPackage @@ -184261,8 +184720,8 @@ self: { }: mkDerivation { pname = "riak"; - version = "1.0.0.1"; - sha256 = "9d8a75de0ca371cb842bafe49358ae6309ed484b976aa87e15ddf2d77e64cc87"; + version = "1.0.1.1"; + sha256 = "d35e67fdcb397eedd3cddeae13dcbfa397b3ce36e7e76bb0c49d5a74f8bfc13f"; libraryHaskellDepends = [ aeson attoparsec base binary blaze-builder bytestring containers data-default-class deepseq enclosed-exceptions exceptions hashable @@ -184280,37 +184739,6 @@ 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 @@ -186567,7 +186995,7 @@ self: { homepage = "https://github.com/jwaldmann/satchmo"; description = "SAT encoding monad"; license = "GPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-backends" = callPackage @@ -190399,6 +190827,7 @@ self: { homepage = "https://github.com/cutsea110/servant-csharp.git"; description = "Generate servant client library for C#"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-docs_0_3_1" = callPackage @@ -190778,6 +191207,7 @@ self: { homepage = "http://github.com/finlay/servant-github#readme"; description = "Bindings to GitHub API using servant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-haxl-client" = callPackage @@ -190807,6 +191237,7 @@ self: { homepage = "http://github.com/ElvishJerricco/servant-haxl-client/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-jquery_0_2_2_1" = callPackage @@ -190977,6 +191408,7 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-js" = callPackage @@ -195517,6 +195949,7 @@ self: { executableToolDepends = [ alex happy ]; description = "Simple JavaScript Profiler"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "skein_1_0_9_1" = callPackage @@ -196407,6 +196840,7 @@ self: { homepage = "https://github.com/GetShopTV/smsaero"; description = "SMSAero API and HTTP client based on servant library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smt-lib" = callPackage @@ -198036,8 +198470,8 @@ self: { }: mkDerivation { pname = "snaplet-riak"; - version = "0.2.0.0"; - sha256 = "004ab45915a7aaf5be4f238982ca0d64a4ba14df502dd3558b3d0ccac0b41560"; + version = "0.2.1.0"; + sha256 = "3c40c97eb65134f44d1418d37a43948fb8dd0b1e34252b5010578352b409c639"; libraryHaskellDepends = [ aeson base containers data-lens data-lens-template mtl riak riak-protobuf snap snap-core time transformers @@ -198768,6 +199202,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "socks_0_5_5" = callPackage + ({ mkDerivation, base, bytestring, cereal, network }: + mkDerivation { + pname = "socks"; + version = "0.5.5"; + sha256 = "2647ea93e21ad1dfd77e942c022c8707e468d25e1ff672a88be82508034fc868"; + libraryHaskellDepends = [ base bytestring cereal network ]; + homepage = "http://github.com/vincenthz/hs-socks"; + description = "Socks proxy (version 5) implementation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "sodium_0_11_0_2" = callPackage ({ mkDerivation, base, containers, mtl }: mkDerivation { @@ -199201,6 +199648,7 @@ self: { ]; description = "Distributed Apache Spark applications in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparse" = callPackage @@ -199775,7 +200223,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "split" = callPackage + "split_0_2_3" = callPackage ({ mkDerivation, base, QuickCheck }: mkDerivation { pname = "split"; @@ -199785,9 +200233,10 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Combinator library for splitting lists"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "split_0_2_3_1" = callPackage + "split" = callPackage ({ mkDerivation, base, QuickCheck }: mkDerivation { pname = "split"; @@ -199797,7 +200246,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Combinator library for splitting lists"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "split-channel" = callPackage @@ -200616,7 +201064,7 @@ self: { ]; jailbreak = true; doCheck = false; - enableSharedExecutables = false; + preCheck = "export HOME=$TMPDIR"; postInstall = '' exe=$out/bin/stack mkdir -p $out/share/bash-completion/completions @@ -200685,7 +201133,7 @@ self: { ]; jailbreak = true; doCheck = false; - enableSharedExecutables = false; + preCheck = "export HOME=$TMPDIR"; postInstall = '' exe=$out/bin/stack mkdir -p $out/share/bash-completion/completions @@ -200755,7 +201203,7 @@ self: { ]; jailbreak = true; doCheck = false; - enableSharedExecutables = false; + preCheck = "export HOME=$TMPDIR"; postInstall = '' exe=$out/bin/stack mkdir -p $out/share/bash-completion/completions @@ -200825,7 +201273,7 @@ self: { ]; jailbreak = true; doCheck = false; - enableSharedExecutables = false; + preCheck = "export HOME=$TMPDIR"; postInstall = '' exe=$out/bin/stack mkdir -p $out/share/bash-completion/completions @@ -200895,7 +201343,7 @@ self: { ]; jailbreak = true; doCheck = false; - enableSharedExecutables = false; + preCheck = "export HOME=$TMPDIR"; postInstall = '' exe=$out/bin/stack mkdir -p $out/share/bash-completion/completions @@ -200965,7 +201413,7 @@ self: { ]; jailbreak = true; doCheck = false; - enableSharedExecutables = false; + preCheck = "export HOME=$TMPDIR"; postInstall = '' exe=$out/bin/stack mkdir -p $out/share/bash-completion/completions @@ -201036,7 +201484,7 @@ self: { ]; jailbreak = true; doCheck = false; - enableSharedExecutables = false; + preCheck = "export HOME=$TMPDIR"; postInstall = '' exe=$out/bin/stack mkdir -p $out/share/bash-completion/completions @@ -201107,7 +201555,7 @@ self: { ]; jailbreak = true; doCheck = false; - enableSharedExecutables = false; + preCheck = "export HOME=$TMPDIR"; postInstall = '' exe=$out/bin/stack mkdir -p $out/share/bash-completion/completions @@ -201179,7 +201627,7 @@ self: { doHaddock = false; jailbreak = true; doCheck = false; - enableSharedExecutables = false; + preCheck = "export HOME=$TMPDIR"; postInstall = '' exe=$out/bin/stack mkdir -p $out/share/bash-completion/completions @@ -201249,8 +201697,9 @@ self: { QuickCheck resourcet retry temporary text transformers unix-compat ]; doHaddock = false; + jailbreak = true; doCheck = false; - enableSharedExecutables = false; + preCheck = "export HOME=$TMPDIR"; postInstall = '' exe=$out/bin/stack mkdir -p $out/share/bash-completion/completions @@ -201272,21 +201721,22 @@ self: { , errors, exceptions, extra, fast-logger, filelock, filepath , fsnotify, gitrev, hashable, hastache, hpack, hpc, hspec , http-client, http-client-tls, http-conduit, http-types - , lifted-base, monad-control, monad-logger, mtl - , optparse-applicative, optparse-simple, path, path-io, persistent - , persistent-sqlite, persistent-template, pretty, process - , project-template, QuickCheck, resourcet, retry, safe, semigroups - , split, stm, streaming-commons, tar, template-haskell, temporary - , text, text-binary, time, transformers, transformers-base, unix - , unix-compat, unordered-containers, uuid, vector - , vector-binary-instances, yaml, zip-archive, zlib + , lifted-base, microlens, monad-control, monad-logger, mtl + , open-browser, optparse-applicative, optparse-simple, path + , path-io, persistent, persistent-sqlite, persistent-template + , pretty, process, project-template, QuickCheck, resourcet, retry + , safe, semigroups, split, stm, streaming-commons, tar + , template-haskell, temporary, text, text-binary, time + , transformers, transformers-base, unix, unix-compat + , unordered-containers, vector, vector-binary-instances, yaml + , zip-archive, zlib }: mkDerivation { pname = "stack"; - version = "1.0.4.3"; - sha256 = "2a445ff671cfd75ccf3185c52832298598dc03dbfbede2b7be21237f63c305b2"; - revision = "4"; - editedCabalFile = "a1315a0d9d005e7e93d6c0893eec2f2d055dda364543edf7b9e172c8d54d7ae2"; + version = "1.1.0"; + sha256 = "58cce7048438bc452a81384493b4644034d5a0b456acd51bf7c19098a9cf406a"; + revision = "1"; + editedCabalFile = "6ea3e00f37c34ddbb05c71a6cf0db9c7d8cedcf48f16be66e347e02b4357b0c4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -201296,18 +201746,18 @@ self: { cryptohash-conduit deepseq directory edit-distance either enclosed-exceptions errors exceptions extra fast-logger filelock filepath fsnotify hashable hastache hpack hpc http-client - http-client-tls http-conduit http-types lifted-base monad-control - monad-logger mtl optparse-applicative path path-io persistent - persistent-sqlite persistent-template pretty process - project-template resourcet retry safe semigroups split stm - streaming-commons tar template-haskell temporary text text-binary - time transformers transformers-base unix unix-compat - unordered-containers uuid vector vector-binary-instances yaml + http-client-tls http-conduit http-types lifted-base microlens + monad-control monad-logger mtl open-browser optparse-applicative + path path-io persistent persistent-sqlite persistent-template + pretty process project-template resourcet retry safe semigroups + split stm streaming-commons tar template-haskell temporary text + text-binary time transformers transformers-base unix unix-compat + unordered-containers vector vector-binary-instances yaml zip-archive zlib ]; executableHaskellDepends = [ base bytestring Cabal containers directory filelock filepath gitrev - http-client lifted-base monad-control monad-logger mtl + http-client lifted-base microlens monad-control monad-logger mtl optparse-applicative optparse-simple path path-io text transformers ]; testHaskellDepends = [ @@ -201317,7 +201767,7 @@ self: { retry temporary text transformers unix-compat ]; doCheck = false; - enableSharedExecutables = false; + preCheck = "export HOME=$TMPDIR"; postInstall = '' exe=$out/bin/stack mkdir -p $out/share/bash-completion/completions @@ -201861,7 +202311,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stackage-curator" = callPackage + "stackage-curator_0_13_3" = callPackage ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3, async , base, base16-bytestring, binary, binary-tagged, blaze-html , byteable, bytestring, Cabal, classy-prelude-conduit, conduit @@ -201904,6 +202354,55 @@ self: { homepage = "https://github.com/fpco/stackage"; description = "Tools for curating Stackage bundles"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stackage-curator" = callPackage + ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3, async + , base, base16-bytestring, binary, binary-orphans, binary-tagged + , blaze-html, byteable, bytestring, Cabal, classy-prelude-conduit + , conduit, conduit-extra, containers, cryptohash + , cryptohash-conduit, data-default-class, directory, exceptions + , filepath, hashable, hspec, html-conduit, http-client + , http-client-tls, http-conduit, lucid, mime-types, monad-unlift + , monad-unlift-ref, mono-traversable, mtl, old-locale + , optparse-applicative, optparse-simple, process, QuickCheck + , resourcet, safe, semigroups, stackage-cli, stackage-install, stm + , streaming-commons, syb, system-fileio, system-filepath, tar + , temporary, text, time, transformers, unix-compat + , unordered-containers, utf8-string, vector, xml-conduit, xml-types + , yaml, zlib + }: + mkDerivation { + pname = "stackage-curator"; + version = "0.14.0"; + sha256 = "13ad2b94821402f533d0e5b4ac38ea1107fa015ab1a5d997f03f0ae05d38fa67"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson amazonka amazonka-core amazonka-s3 async base + base16-bytestring binary binary-orphans binary-tagged blaze-html + byteable bytestring Cabal classy-prelude-conduit conduit + conduit-extra containers cryptohash cryptohash-conduit + data-default-class directory exceptions filepath hashable + html-conduit http-client http-client-tls http-conduit lucid + mime-types monad-unlift monad-unlift-ref mono-traversable mtl + old-locale process resourcet safe semigroups stackage-install stm + streaming-commons syb system-fileio system-filepath tar temporary + text time transformers unix-compat unordered-containers utf8-string + vector xml-conduit xml-types yaml zlib + ]; + executableHaskellDepends = [ + aeson base http-client http-client-tls optparse-applicative + optparse-simple stackage-cli system-filepath text + ]; + testHaskellDepends = [ + base Cabal classy-prelude-conduit containers directory hspec + http-client http-client-tls QuickCheck text yaml + ]; + homepage = "https://github.com/fpco/stackage"; + description = "Tools for curating Stackage bundles"; + license = stdenv.lib.licenses.mit; }) {}; "stackage-install_0_1_0_3" = callPackage @@ -203527,11 +204026,10 @@ self: { ({ mkDerivation, base, clock, hspec, transformers }: mkDerivation { pname = "stopwatch"; - version = "0.1.0"; - sha256 = "17f488ef8e74a9dc4ad7e8a649abc386d010379a9b63f88d52638a078fbc16f6"; + version = "0.1.0.1"; + sha256 = "647e89db9b9b23631c751b6d73cdee124b86c1768186d3a572ba6951a57c46da"; 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; @@ -203731,6 +204229,7 @@ self: { homepage = "https://github.com/frontrowed/stratosphere#readme"; description = "EDSL for AWS CloudFormation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stratum-tool" = callPackage @@ -203769,6 +204268,7 @@ self: { homepage = "https://github.com/githubuser/stream#readme"; description = "Initial project template from stack"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stream-fusion" = callPackage @@ -204549,11 +205049,10 @@ self: { ({ mkDerivation, base, bytestring, text }: mkDerivation { pname = "string-conv"; - version = "0.1"; - sha256 = "861a5402709202a1594f5e2ee2792c1ff31be73255619c967516c756e5a4557e"; - revision = "1"; - editedCabalFile = "e6fd8d1b56031e7c1ea24129ddb8bd2c6ab26a63d24b2e90ca40300f217602a9"; + version = "0.1.1"; + sha256 = "981d8a42297e349b8ea0a53477492282bd94d42955e547601e32be5d8798d03d"; libraryHaskellDepends = [ base bytestring text ]; + homepage = "https://github.com/Soostone/string-conv"; description = "Standardized conversion between string types"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -207702,8 +208201,8 @@ self: { }: mkDerivation { pname = "table-layout"; - version = "0.5.1.1"; - sha256 = "11c47bed5d8c6dd6d003dad96f80ad9e6a5bcc0566aefd8ff97afa3889950b11"; + version = "0.5.2.0"; + sha256 = "5000afb85689a2b1e9141887bdf8d589a0cb6a9026ce600be269f856f27a88d3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -208607,7 +209106,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tar" = callPackage + "tar_0_5_0_2" = callPackage ({ mkDerivation, array, base, bytestring, bytestring-handle , containers, deepseq, directory, filepath, QuickCheck, tasty , tasty-quickcheck, time @@ -208625,6 +209124,27 @@ self: { ]; description = "Reading, writing and manipulating \".tar\" archive files."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tar" = callPackage + ({ mkDerivation, array, base, bytestring, bytestring-handle + , containers, deepseq, directory, filepath, QuickCheck, tasty + , tasty-quickcheck, time + }: + mkDerivation { + pname = "tar"; + version = "0.5.0.3"; + sha256 = "d8d9ad876365f88bdccd02073049e58715cd5ba94de06eb98e21d595244918a3"; + 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 @@ -209262,6 +209782,7 @@ self: { homepage = "https://github.com/jdnavarro/tasty-laws"; description = "Test common laws"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tasty-lens" = callPackage @@ -209721,8 +210242,8 @@ self: { }: mkDerivation { pname = "telegram-api"; - version = "0.2.1.1"; - sha256 = "fd2ca89b40cdf7128c8739e5d3ff32278c5ab30aa9de21e8ab5a4ff0a2867705"; + version = "0.3.0.0"; + sha256 = "f32039ab9d0a6090c32a0b5d3c1ed83c6ecadf784cd97de680dce33eb52b880a"; libraryHaskellDepends = [ aeson base either servant servant-client text ]; @@ -209732,6 +210253,7 @@ self: { homepage = "http://github.com/klappvisor/haskell-telegram-api#readme"; description = "Telegram Bot API bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "teleport" = callPackage @@ -210885,11 +211407,12 @@ self: { pname = "testloop"; version = "0.1.1.0"; sha256 = "ffac18cca070139638a85d7b83a5d0237726b49e9f8ceba104c683665973cfaf"; + revision = "2"; + editedCabalFile = "cbf63f33f18f023e56798ab7f354db64fff71eba3209deb411f5ae3cfb252a9e"; libraryHaskellDepends = [ base Cabal directory filepath fsnotify hint mtl system-filepath time unix ]; - jailbreak = true; homepage = "http://github.com/roman/testloop"; description = "Quick feedback loop for test suites"; license = stdenv.lib.licenses.mit; @@ -215902,6 +216425,7 @@ self: { homepage = "http://www.fpcomplete.com/user/agocorona"; description = "remote execution and map-reduce: distributed computing for transient"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "translatable-intset" = callPackage @@ -216279,7 +216803,7 @@ self: { homepage = "https://github.com/aphorisme/tripLL"; description = "A very simple triple store"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "trivia" = callPackage @@ -216717,14 +217241,20 @@ self: { }) {}; "tubes" = callPackage - ({ mkDerivation, base, comonad, free, mtl, transformers }: + ({ mkDerivation, base, comonad, contravariant, free, mtl + , profunctors, semigroups, transformers + }: mkDerivation { pname = "tubes"; - version = "1.1.0.0"; - sha256 = "c1b6623455b98cb956ec37f290a51e61c6f372aeb5ecffa12c5c182f713fb86d"; - libraryHaskellDepends = [ base comonad free mtl transformers ]; + version = "2.0.0.0"; + sha256 = "19277b8c3f86a431ee64776aa101826d12ab33df1083813d1cbf78939a7b4422"; + libraryHaskellDepends = [ + base comonad contravariant free mtl profunctors semigroups + transformers + ]; + jailbreak = true; homepage = "https://github.com/gatlin/tubes"; - description = "Effectful, iteratee-inspired stream processing based on a free monad"; + description = "Write stream processing computations with side effects in a series of tubes"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -218773,6 +219303,7 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th time tzdata unix vector ]; + preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; license = stdenv.lib.licenses.asl20; @@ -218799,6 +219330,7 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th time tzdata unix vector ]; + preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; license = stdenv.lib.licenses.asl20; @@ -218919,6 +219451,7 @@ self: { homepage = "https://github.com/byteally/webapi-uber.git"; description = "Uber client for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uberlast" = callPackage @@ -219381,7 +219914,7 @@ self: { homepage = "https://e.xtendo.org/scs/unbreak"; description = "Secure and resilient remote file storage utility"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unexceptionalio" = callPackage @@ -227129,6 +227662,7 @@ self: { homepage = "https://gitlab.com/twittner/wai-predicates/"; description = "WAI request predicates"; license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-request-spec" = callPackage @@ -227411,6 +227945,7 @@ self: { homepage = "https://gitlab.com/twittner/wai-routing/"; description = "Declarative routing for WAI"; license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-session" = callPackage @@ -231063,6 +231598,7 @@ self: { homepage = "http://github.com/bgamari/wkt"; description = "Parsec parsers and types for geographic data in well-known text (WKT) format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wl-pprint_1_1" = callPackage @@ -239673,6 +240209,7 @@ self: { homepage = "https://github.com/league/yesod-crud"; description = "Generic administrative CRUD operations as a Yesod subsite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-crud-persist" = callPackage @@ -240222,33 +240759,6 @@ self: { }) {}; "yesod-job-queue" = 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.0"; - sha256 = "42e294394434fcca8ee048a6f6cd365e1979761e24078eb0cc8f090ffcf4070c"; - 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 monad-logger persistent-sqlite resourcet - 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 @@ -240269,10 +240779,10 @@ self: { resourcet 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; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-json" = callPackage -- cgit 1.4.1 From e5536b799a85c3b7db79654110b6946adde88793 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 4 May 2016 13:09:06 +0200 Subject: haskell-split: re-enable test suite split version 0.2.3.1 ought to fix the issue we've had: https://github.com/NixOS/nixpkgs/commit/a2e1692730537ee5b8cbcabdd47dbc10ad2a7383#commitcomment-17331531 --- pkgs/development/haskell-modules/configuration-common.nix | 4 ---- 1 file changed, 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 4a9857b20dfde..1dac97178ddfa 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1009,10 +1009,6 @@ 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; - # https://github.com/NixOS/nixpkgs/issues/14967 yi = markBroken super.yi; yi-fuzzy-open = markBroken super.yi-fuzzy-open; -- cgit 1.4.1 From 17022a70f2e84efa3464cb1ab9a6a29d560b6319 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 4 May 2016 17:05:05 +0200 Subject: haskell-stack: migrate overrides into cabal2nix generator --- pkgs/development/haskell-modules/configuration-common.nix | 4 ---- 1 file changed, 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 1dac97178ddfa..f177bdb6a132e 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -704,10 +704,6 @@ self: super: { then addBuildDepend super.hmatrix pkgs.darwin.apple_sdk.frameworks.Accelerate else super.hmatrix; - # https://github.com/commercialhaskell/stack/issues/408 - # https://github.com/commercialhaskell/stack/issues/409 - stack = overrideCabal super.stack (drv: { preCheck = "export HOME=$TMPDIR"; doCheck = false; }); - # Hydra no longer allows building texlive packages. lhs2tex = dontDistribute super.lhs2tex; -- cgit 1.4.1 From f5a7f03bbe2eef63de6bdffb17e4d5f923a20d1e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 4 May 2016 17:33:24 +0200 Subject: haskell-darcs: migrate overrides into cabal2nix generator --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index f177bdb6a132e..e4f4684fb9d32 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -175,9 +175,6 @@ self: super: { wai-test = dontHaddock super.wai-test; zlib-conduit = dontHaddock super.zlib-conduit; - # The test suite won't even start. - darcs = dontCheck super.darcs; - # https://github.com/massysett/rainbox/issues/1 rainbox = dontCheck super.rainbox; -- cgit 1.4.1 From fb154cebba76386f109a25e019924537ceed04ec Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 4 May 2016 17:31:46 +0200 Subject: configuration-ghc-7.10.x.nix: trigger re-builds to mitigate broken library IDs --- pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix index ac829daa485fb..60c4146c79bff 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -203,4 +203,7 @@ self: super: { # https://github.com/fpco/stackage/issues/1112 vector-algorithms = dontCheck super.vector-algorithms; + # Trigger rebuild to mitigate broken packaes on Hydra. + amazonka-core = triggerRebuild super.amazonka-core 1; + } -- cgit 1.4.1 From ef7e1af6116e43bd9abaa62c177ae82e28415423 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 3 May 2016 10:24:49 +0200 Subject: configuration-hackage2nix.yaml: update list of broken packages --- .../haskell-modules/configuration-hackage2nix.yaml | 148 ++++++++++++++++++++- 1 file changed, 141 insertions(+), 7 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index e6be3acaf5370..be659d26ee72a 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -105,6 +105,7 @@ package-maintainers: dont-distribute-packages: # hard restrictions that really belong into meta.platforms AWin32Console: [ i686-linux, x86_64-linux, x86_64-darwin ] + d3d11binding: [ i686-linux, x86_64-linux, x86_64-darwin ] DirectSound: [ i686-linux, x86_64-linux, x86_64-darwin ] dx9base: [ i686-linux, x86_64-linux, x86_64-darwin ] dx9d3d: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -194,10 +195,12 @@ dont-distribute-packages: AERN-RnToRm-Plot: [ i686-linux, x86_64-linux, x86_64-darwin ] AERN-RnToRm: [ i686-linux, x86_64-darwin, x86_64-linux ] aeson-bson: [ i686-linux, x86_64-darwin, x86_64-linux ] + aeson-diff: [ i686-linux, x86_64-darwin, x86_64-linux ] aeson-native: [ i686-linux, x86_64-darwin, x86_64-linux ] aeson-schema: [ i686-linux, x86_64-darwin, x86_64-linux ] aeson-smart: [ i686-linux, x86_64-darwin, x86_64-linux ] AesonBson: [ i686-linux, x86_64-darwin, x86_64-linux ] + AFSM: [ i686-linux, x86_64-darwin, x86_64-linux ] afv: [ i686-linux, x86_64-darwin, x86_64-linux ] Agata: [ i686-linux, x86_64-darwin, x86_64-linux ] Agda-executable: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -316,6 +319,8 @@ dont-distribute-packages: autonix-deps: [ x86_64-darwin ] autoproc: [ i686-linux, x86_64-darwin, x86_64-linux ] avahi: [ i686-linux, x86_64-darwin, x86_64-linux ] + avers-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + avers-server: [ i686-linux, x86_64-darwin, x86_64-linux ] AvlTree: [ i686-linux, x86_64-darwin, x86_64-linux ] awesomium-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] awesomium-raw: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -476,6 +481,7 @@ dont-distribute-packages: BlogLiterately-diagrams: [ x86_64-darwin ] bloodhound-amazonka-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] bloodhound: [ i686-linux, x86_64-darwin, x86_64-linux ] + bloomfilter-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] bloxorz: [ x86_64-darwin ] blubber: [ x86_64-darwin ] Blueprint: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -666,6 +672,7 @@ dont-distribute-packages: cmdargs-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] cmdtheline: [ i686-linux, x86_64-darwin, x86_64-linux ] cmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmph: [ i686-linux, x86_64-darwin, x86_64-linux ] cnc-spec-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] cndict: [ i686-linux, x86_64-darwin, x86_64-linux ] Coadjute: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -682,6 +689,7 @@ dont-distribute-packages: collections-api: [ i686-linux, x86_64-darwin, x86_64-linux ] collections-base-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] collections: [ i686-linux, x86_64-darwin, x86_64-linux ] + color-counter: [ i686-linux, x86_64-darwin, x86_64-linux ] coltrane: [ i686-linux, x86_64-darwin, x86_64-linux ] com: [ i686-linux, x86_64-darwin, x86_64-linux ] combinat-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -814,6 +822,7 @@ dont-distribute-packages: CV: [ i686-linux, x86_64-darwin, x86_64-linux ] cyclotomic: [ i686-linux ] cypher: [ i686-linux, x86_64-darwin, x86_64-linux ] + d-bus: [ i686-linux, x86_64-darwin, x86_64-linux ] DAG-Tournament: [ i686-linux, x86_64-darwin, x86_64-linux ] Dangerous: [ i686-linux, x86_64-darwin, x86_64-linux ] Dao: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1218,6 +1227,7 @@ dont-distribute-packages: frag: [ i686-linux, x86_64-darwin, x86_64-linux ] franchise: [ i686-linux, x86_64-darwin, x86_64-linux ] Frank: [ i686-linux, x86_64-darwin, x86_64-linux ] + freddy: [ i686-linux, x86_64-darwin, x86_64-linux ] free-game: [ i686-linux, x86_64-darwin, x86_64-linux ] free-operational: [ i686-linux, x86_64-darwin, x86_64-linux ] free-theorems-counterexamples: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1305,6 +1315,7 @@ dont-distribute-packages: ghc-dup: [ i686-linux, x86_64-darwin, x86_64-linux ] ghc-events-parallel: [ i686-linux, x86_64-darwin, x86_64-linux ] ghc-exactprint: [ x86_64-darwin ] + ghc-imported-from: [ i686-linux, x86_64-darwin, x86_64-linux ] ghc-pkg-autofix: [ i686-linux, x86_64-darwin, x86_64-linux ] ghc-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] ghc-vis: [ x86_64-darwin ] @@ -1395,10 +1406,100 @@ dont-distribute-packages: goal-probability: [ x86_64-darwin ] goal-simulation: [ i686-linux, x86_64-darwin, x86_64-linux ] gofer-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-adexchange-buyer: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-adexchange-seller: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-admin-datatransfer: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-admin-directory: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-admin-emailmigration: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-admin-reports: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-adsense-host: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-adsense: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-affiliates: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-analytics: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-android-enterprise: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-android-publisher: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-appengine: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-apps-activity: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-apps-calendar: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-apps-licensing: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-apps-reseller: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-apps-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-appstate: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-autoscaler: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-bigquery: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-billing: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-blogger: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-books: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-civicinfo: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-classroom: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-cloudtrace: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-compute: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-container: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-customsearch: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-dataflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-datastore: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-deploymentmanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-dfareporting: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-discovery: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-dns: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-doubleclick-bids: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-doubleclick-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-drive: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-fitness: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-fonts: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-freebasesearch: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-fusiontables: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-games-configuration: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-games-management: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-games: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-genomics: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-gmail: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-groups-migration: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-groups-settings: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-identity-toolkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-latencytest: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-logging: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-maps-coordinate: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-maps-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-mirror: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-monitoring: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-oauth2: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-pagespeed: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-partners: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-play-moviespartner: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-plus-domains: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-prediction: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-proximitybeacon: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-pubsub: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-qpxexpress: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-replicapool-updater: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-replicapool: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-resourcemanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-resourceviews: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-shopping-content: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-siteverification: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-spectrum: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-sqladmin: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-storage-transfer: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-storage: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-tagmanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-taskqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-translate: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-urlshortener: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-useraccounts: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-webmaster-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-youtube-analytics: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-youtube-reporting: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-youtube: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol: [ i686-linux, x86_64-darwin, x86_64-linux ] gooey: [ i686-linux, x86_64-darwin, x86_64-linux ] google-html5-slide: [ i686-linux, x86_64-darwin, x86_64-linux ] google-mail-filters: [ i686-linux, x86_64-darwin, x86_64-linux ] google-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + google-translate: [ i686-linux, x86_64-darwin, x86_64-linux ] GoogleDirections: [ i686-linux, x86_64-darwin, x86_64-linux ] googleplus: [ i686-linux, x86_64-darwin, x86_64-linux ] GoogleSB: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1490,6 +1591,7 @@ dont-distribute-packages: gtksourceview3: [ x86_64-darwin ] GtkTV: [ x86_64-darwin ] guess-combinator: [ i686-linux, x86_64-darwin, x86_64-linux ] + guid: [ i686-linux, x86_64-darwin, x86_64-linux ] GuiHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] GuiTV: [ i686-linux, x86_64-darwin, x86_64-linux ] gulcii: [ x86_64-darwin ] @@ -1525,6 +1627,7 @@ dont-distribute-packages: hackage2twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] hackernews: [ i686-linux, x86_64-darwin, x86_64-linux ] HackMail: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackport: [ i686-linux, x86_64-darwin, x86_64-linux ] hactor: [ i686-linux, x86_64-darwin, x86_64-linux ] haddock-leksah: [ i686-linux, x86_64-darwin, x86_64-linux ] haggis: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1622,6 +1725,7 @@ dont-distribute-packages: haskell-ftp: [ i686-linux, x86_64-darwin, x86_64-linux ] haskell-gi-base: [ i686-linux ] haskell-gi: [ i686-linux, x86_64-darwin ] + haskell-kubernetes: [ i686-linux, x86_64-darwin, x86_64-linux ] haskell-mpfr: [ i686-linux, x86_64-darwin, x86_64-linux ] haskell-mpi: [ x86_64-darwin ] haskell-names: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1749,6 +1853,7 @@ dont-distribute-packages: her-lexer: [ i686-linux, x86_64-darwin, x86_64-linux ] HERA: [ i686-linux, x86_64-darwin, x86_64-linux ] herbalizer: [ i686-linux, x86_64-darwin, x86_64-linux ] + heredocs: [ i686-linux, x86_64-darwin, x86_64-linux ] Hermes: [ i686-linux, x86_64-darwin, x86_64-linux ] hermit-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] hermit: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1814,7 +1919,7 @@ dont-distribute-packages: hiernotify: [ i686-linux, x86_64-darwin, x86_64-linux ] Hieroglyph: [ i686-linux, x86_64-linux, x86_64-darwin ] HiggsSet: [ i686-linux, x86_64-darwin, x86_64-linux ] - higher-leveldb: [ x86_64-darwin ] + higher-leveldb: [ i686-linux, x86_64-darwin, x86_64-linux ] higherorder: [ i686-linux, x86_64-darwin, x86_64-linux ] highjson: [ i686-linux ] highWaterMark: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1961,6 +2066,7 @@ dont-distribute-packages: HROOT-math: [ i686-linux, x86_64-darwin, x86_64-linux ] HROOT: [ i686-linux, x86_64-darwin, x86_64-linux ] hruby: [ i686-linux ] + hs-blake2: [ i686-linux, x86_64-darwin, x86_64-linux ] hs-carbon-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] hs-cdb: [ i686-linux, x86_64-darwin, x86_64-linux ] hs-dotnet: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2177,6 +2283,7 @@ dont-distribute-packages: informative: [ i686-linux, x86_64-darwin, x86_64-linux ] inilist: [ i686-linux, x86_64-darwin, x86_64-linux ] inline-c-cpp: [ x86_64-darwin ] + inline-java: [ i686-linux, x86_64-darwin, x86_64-linux ] inline-r: [ i686-linux, x86_64-darwin ] instant-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] instant-zipper: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2190,6 +2297,7 @@ dont-distribute-packages: interruptible: [ i686-linux, x86_64-darwin, x86_64-linux ] intricacy: [ x86_64-darwin ] intset: [ i686-linux, x86_64-darwin, x86_64-linux ] + io-capture: [ i686-linux, x86_64-darwin, x86_64-linux ] io-reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] IOR: [ i686-linux, x86_64-darwin, x86_64-linux ] IORefCAS: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2249,6 +2357,7 @@ dont-distribute-packages: jsc: [ i686-linux, x86_64-linux, x86_64-darwin ] JsContracts: [ i686-linux, x86_64-darwin, x86_64-linux ] jsmw: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-ast-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] json-b: [ i686-linux, x86_64-darwin, x86_64-linux ] JSON-Combinator-Examples: [ i686-linux, x86_64-darwin, x86_64-linux ] JSON-Combinator: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2390,7 +2499,7 @@ dont-distribute-packages: leksah: [ x86_64-darwin ] Level0: [ x86_64-darwin ] leveldb-haskell-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] - leveldb-haskell: [ x86_64-darwin ] + leveldb-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] levmar-chart: [ i686-linux, x86_64-linux, x86_64-darwin ] levmar: [ i686-linux, x86_64-linux, x86_64-darwin ] lgtk: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2729,6 +2838,7 @@ dont-distribute-packages: nano-md5: [ i686-linux, x86_64-darwin, x86_64-linux ] nanoAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] nanocurses: [ i686-linux, x86_64-darwin, x86_64-linux ] + nanovg: [ i686-linux, x86_64-darwin, x86_64-linux ] nanq: [ i686-linux ] narc: [ i686-linux, x86_64-darwin, x86_64-linux ] nats-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2933,9 +3043,11 @@ dont-distribute-packages: peparser: [ i686-linux, x86_64-darwin, x86_64-linux ] perdure: [ i686-linux, x86_64-darwin, x86_64-linux ] PerfectHash: [ i686-linux, x86_64-darwin, x86_64-linux ] + perfecthash: [ i686-linux, x86_64-darwin, x86_64-linux ] perm: [ i686-linux, x86_64-darwin, x86_64-linux ] permute: [ i686-linux, x86_64-darwin, x86_64-linux ] PermuteEffects: [ i686-linux, x86_64-darwin, x86_64-linux ] + persistent-database-url: [ i686-linux, x86_64-darwin, x86_64-linux ] persistent-hssqlppp: [ i686-linux, x86_64-darwin, x86_64-linux ] persistent-map: [ i686-linux, x86_64-darwin, x86_64-linux ] persistent-protobuf: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2970,8 +3082,10 @@ dont-distribute-packages: pipes-key-value-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] pipes-network-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] pipes-p2p-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-transduce: [ i686-linux, x86_64-darwin, x86_64-linux ] pisigma: [ i686-linux, x86_64-darwin, x86_64-linux ] pit: [ i686-linux, x86_64-darwin, x86_64-linux ] + pivotal-tracker: [ i686-linux, x86_64-darwin, x86_64-linux ] pkggraph: [ i686-linux, x86_64-darwin, x86_64-linux ] planar-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] plat: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3057,6 +3171,7 @@ dont-distribute-packages: process-listlike: [ i686-linux, x86_64-darwin, x86_64-linux ] process-progress: [ i686-linux, x86_64-darwin, x86_64-linux ] process-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-streaming: [ i686-linux, x86_64-darwin, x86_64-linux ] processing: [ i686-linux, x86_64-darwin, x86_64-linux ] procrastinating-structure: [ i686-linux, x86_64-darwin, x86_64-linux ] procrastinating-variable: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3114,7 +3229,7 @@ dont-distribute-packages: quadratic-irrational: [ i686-linux, x86_64-darwin, x86_64-linux ] quantum-arrow: [ i686-linux, x86_64-darwin, x86_64-linux ] qudb: [ i686-linux, x86_64-darwin, x86_64-linux ] - Quelea: [ x86_64-darwin ] + Quelea: [ i686-linux, x86_64-darwin, x86_64-linux ] quenya-verb: [ i686-linux, x86_64-darwin, x86_64-linux ] querystring-pickle: [ i686-linux, x86_64-darwin, x86_64-linux ] queuelike: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3127,6 +3242,7 @@ dont-distribute-packages: quickset: [ i686-linux, x86_64-darwin, x86_64-linux ] Quickson: [ i686-linux, x86_64-darwin, x86_64-linux ] quicktest: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickwebapp: [ i686-linux, x86_64-darwin, x86_64-linux ] quoridor-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] qux: [ i686-linux, x86_64-darwin, x86_64-linux ] R-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3158,7 +3274,7 @@ dont-distribute-packages: rcu: [ i686-linux, x86_64-darwin, x86_64-linux ] rdf4h: [ i686-linux, x86_64-darwin, x86_64-linux ] rdioh: [ i686-linux, x86_64-darwin, x86_64-linux ] - re2: [ x86_64-darwin ] + re2: [ i686-linux, x86_64-darwin, x86_64-linux ] reaction-logic: [ i686-linux, x86_64-darwin, x86_64-linux ] reactive-bacon: [ i686-linux, x86_64-darwin, x86_64-linux ] reactive-balsa: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3171,6 +3287,7 @@ dont-distribute-packages: reactive-thread: [ i686-linux, x86_64-darwin, x86_64-linux ] reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] reactor: [ i686-linux, x86_64-darwin, x86_64-linux ] + readshp: [ i686-linux, x86_64-darwin, x86_64-linux ] really-simple-xml-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] reasonable-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] record-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3320,7 +3437,7 @@ dont-distribute-packages: satchmo-funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] satchmo-minisat: [ i686-linux, x86_64-darwin, x86_64-linux ] satchmo-toysat: [ i686-linux, x86_64-darwin, x86_64-linux ] - satchmo: [ x86_64-darwin ] + satchmo: [ i686-linux, x86_64-darwin, x86_64-linux ] SBench: [ i686-linux, x86_64-darwin, x86_64-linux ] sbp: [ i686-linux, x86_64-darwin, x86_64-linux ] scaleimage: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3384,8 +3501,12 @@ dont-distribute-packages: seqloc-datafiles: [ i686-linux, x86_64-darwin, x86_64-linux ] sequent-core: [ i686-linux, x86_64-darwin, x86_64-linux ] sequor: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-csharp: [ i686-linux, x86_64-darwin, x86_64-linux ] servant-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] servant-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-github: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-haxl-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-jquery: [ i686-linux, x86_64-darwin, x86_64-linux ] servant-js: [ i686-linux, x86_64-darwin, x86_64-linux ] servant-pool: [ i686-linux, x86_64-darwin, x86_64-linux ] servant-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3454,6 +3575,7 @@ dont-distribute-packages: sindre: [ i686-linux, x86_64-darwin, x86_64-linux ] sirkel: [ i686-linux, x86_64-darwin, x86_64-linux ] sized: [ i686-linux, x86_64-darwin, x86_64-linux ] + sjsp: [ i686-linux, x86_64-darwin, x86_64-linux ] skeleton: [ i686-linux, x86_64-darwin, x86_64-linux ] skulk: [ i686-linux, x86_64-darwin, x86_64-linux ] skype4hs: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3467,6 +3589,7 @@ dont-distribute-packages: smartword: [ i686-linux, x86_64-darwin, x86_64-linux ] sme: [ i686-linux, x86_64-darwin, x86_64-linux ] Smooth: [ i686-linux, x86_64-darwin, x86_64-linux ] + smsaero: [ i686-linux, x86_64-darwin, x86_64-linux ] smt-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] smtp-mail-ng: [ i686-linux, x86_64-darwin, x86_64-linux ] smtp2mta: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3525,6 +3648,7 @@ dont-distribute-packages: SpaceInvaders: [ i686-linux ] SpacePrivateers: [ i686-linux, x86_64-darwin, x86_64-linux ] spanout: [ i686-linux, x86_64-darwin, x86_64-linux ] + sparkle: [ i686-linux, x86_64-darwin, x86_64-linux ] sparse: [ i686-linux, x86_64-darwin, x86_64-linux ] sparsebit: [ i686-linux, x86_64-darwin, x86_64-linux ] sparsecheck: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3581,8 +3705,10 @@ dont-distribute-packages: storablevector-streamfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] storablevector: [ i686-linux, x86_64-darwin, x86_64-linux ] Strafunski-Sdf2Haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + stratosphere: [ i686-linux, x86_64-darwin, x86_64-linux ] stratum-tool: [ i686-linux, x86_64-darwin, x86_64-linux ] stream-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + stream: [ i686-linux, x86_64-darwin, x86_64-linux ] streamed: [ i686-linux, x86_64-linux, x86_64-darwin ] streaming-utils: [ i686-linux ] strict-concurrency: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3669,6 +3795,7 @@ dont-distribute-packages: taskpool: [ x86_64-darwin ] tasty-groundhog-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] tasty-integrate: [ i686-linux, x86_64-darwin, x86_64-linux ] + tasty-laws: [ i686-linux, x86_64-darwin, x86_64-linux ] TBC: [ i686-linux, x86_64-darwin, x86_64-linux ] TBit: [ i686-linux, x86_64-darwin, x86_64-linux ] tbox: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3677,6 +3804,7 @@ dont-distribute-packages: tdd-util: [ i686-linux, x86_64-darwin, x86_64-linux ] TeaHS: [ i686-linux, x86_64-linux, x86_64-darwin ] teams: [ i686-linux, x86_64-darwin, x86_64-linux ] + telegram-api: [ i686-linux, x86_64-darwin, x86_64-linux ] telegram: [ i686-linux, x86_64-darwin, x86_64-linux ] template-default: [ i686-linux, x86_64-darwin, x86_64-linux ] template-haskell-util: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3773,6 +3901,7 @@ dont-distribute-packages: transf: [ i686-linux, x86_64-darwin, x86_64-linux ] transformers-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] transformers-runnable: [ i686-linux, x86_64-darwin, x86_64-linux ] + transient-universe: [ i686-linux, x86_64-darwin, x86_64-linux ] transient: [ i686-linux, x86_64-darwin, x86_64-linux ] translate: [ i686-linux, x86_64-darwin, x86_64-linux ] traypoweroff: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3782,7 +3911,7 @@ dont-distribute-packages: triangulation: [ i686-linux, x86_64-darwin, x86_64-linux ] TrieMap: [ i686-linux, x86_64-darwin, x86_64-linux ] trimpolya: [ i686-linux, x86_64-darwin, x86_64-linux ] - tripLL: [ x86_64-darwin ] + tripLL: [ i686-linux, x86_64-darwin, x86_64-linux ] tropical: [ i686-linux, x86_64-darwin, x86_64-linux ] tsession-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] tsession: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3837,6 +3966,7 @@ dont-distribute-packages: typescript-docs: [ i686-linux, x86_64-darwin, x86_64-linux ] tz: [ x86_64-darwin ] uAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + uber: [ i686-linux, x86_64-darwin, x86_64-linux ] uberlast: [ i686-linux, x86_64-darwin, x86_64-linux ] uconv: [ i686-linux, x86_64-darwin, x86_64-linux ] udbus-model: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3848,7 +3978,7 @@ dont-distribute-packages: unamb-custom: [ i686-linux, x86_64-darwin, x86_64-linux ] unbounded-delays-units: [ i686-linux, x86_64-darwin, x86_64-linux ] unboxed-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] - unbreak: [ x86_64-darwin ] + unbreak: [ i686-linux, x86_64-darwin, x86_64-linux ] unicode-normalization: [ i686-linux, x86_64-darwin, x86_64-linux ] unicoder: [ i686-linux, x86_64-darwin, x86_64-linux ] uniform-io: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3954,6 +4084,8 @@ dont-distribute-packages: wai-middleware-preprocessor: [ i686-linux, x86_64-darwin, x86_64-linux ] wai-middleware-route: [ i686-linux, x86_64-darwin, x86_64-linux ] wai-middleware-static-caching: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-predicates: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-routing: [ i686-linux, x86_64-darwin, x86_64-linux ] wai-session-tokyocabinet: [ i686-linux, x86_64-darwin, x86_64-linux ] wai-static-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] wai-thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -4003,6 +4135,7 @@ dont-distribute-packages: winerror: [ i686-linux, x86_64-darwin, x86_64-linux ] winio: [ i686-linux, x86_64-darwin, x86_64-linux ] Wired: [ x86_64-darwin ] + wkt: [ i686-linux, x86_64-darwin, x86_64-linux ] WL500gPControl: [ i686-linux, x86_64-darwin, x86_64-linux ] wlc-hs: [ i686-linux, x86_64-linux, x86_64-darwin ] WMSigner: [ i686-linux ] @@ -4119,6 +4252,7 @@ dont-distribute-packages: yesod-comments: [ i686-linux, x86_64-darwin, x86_64-linux ] yesod-content-pdf: [ i686-linux, x86_64-darwin, x86_64-linux ] yesod-continuations: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-crud: [ i686-linux, x86_64-darwin, x86_64-linux ] yesod-datatables: [ i686-linux, x86_64-darwin, x86_64-linux ] yesod-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] yesod-goodies: [ i686-linux, x86_64-darwin, x86_64-linux ] -- cgit 1.4.1 From b30ffdcc01f2582c2788b8d25777fc72f6ff4e83 Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Thu, 5 May 2016 14:01:55 +0300 Subject: ghc8 | config: th-reify-many: drop the pin obviated by hackage import --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 9 --------- 1 file changed, 9 deletions(-) (limited to 'pkgs/development') 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 c12b3a375c619..c7f67fde2210f 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -146,15 +146,6 @@ self: super: { }; })); - # The essential part is released in 0.1.4.1 upstream (needs hackage import) - th-reify-many = doJailbreak (pkgs.haskell.lib.overrideCabal super.th-reify-many (oldAttrs: { - src = pkgs.fetchgit { - url = https://github.com/mgsloan/th-reify-many.git; - rev = "699eed232c2ccaf9fb109f131e80ed8d654d6f08"; - sha256 = "001fvpq039l9wj9v8id7kfjwmp4acf53zr4z6sppdvrv6npzz5yb"; - }; - })); - trifecta = doJailbreak super.trifecta; turtle = doJailbreak super.turtle; -- cgit 1.4.1 From ebba6571fe252cc7df99c78891860cf1d1dd0955 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Sun, 1 May 2016 17:57:16 +0200 Subject: i-score: init at 1.0.0-a67 Closes #15137 --- pkgs/applications/audio/i-score/default.nix | 85 ++++++++++++++++++++++ .../libraries/audio/jamomacore/default.nix | 23 ++++++ .../libraries/audio/rtaudio/default.nix | 28 +++++++ .../development/libraries/audio/rtmidi/default.nix | 28 +++++++ pkgs/top-level/all-packages.nix | 8 ++ 5 files changed, 172 insertions(+) create mode 100644 pkgs/applications/audio/i-score/default.nix create mode 100644 pkgs/development/libraries/audio/jamomacore/default.nix create mode 100644 pkgs/development/libraries/audio/rtaudio/default.nix create mode 100644 pkgs/development/libraries/audio/rtmidi/default.nix (limited to 'pkgs/development') diff --git a/pkgs/applications/audio/i-score/default.nix b/pkgs/applications/audio/i-score/default.nix new file mode 100644 index 0000000000000..8bf85ac24b02e --- /dev/null +++ b/pkgs/applications/audio/i-score/default.nix @@ -0,0 +1,85 @@ +{ + boost, + cln, + cmake, + fetchgit, + gcc5, + ginac, + jamomacore, + kde5, + libsndfile, + ninja, + portaudio, + qtbase, + qtdeclarative, + qtimageformats, + qtsvg, + qttools, + qtwebsockets, + rtaudio, + stdenv +}: + +stdenv.mkDerivation rec { + version = "1.0.0-a67"; + name = "i-score-${version}"; + + src = fetchgit { + url = "https://github.com/OSSIA/i-score.git"; + rev = "ede2453b139346ae46702b5e2643c5488f8c89fb"; + sha256 = "04li771nj0k8gym7vg6rnawjkp2f6d5m5mby26h0k6ksf7hg7h70"; + leaveDotGit = true; + deepClone = true; + }; + + buildInputs = [ + boost + cln + cmake + ginac + gcc5 + jamomacore + kde5.kdnssd + libsndfile + ninja + portaudio + qtbase + qtdeclarative + qtimageformats + qtsvg + qttools + qtwebsockets + rtaudio + ]; + + cmakeFlags = [ + "-GNinja" + "-DISCORE_CONFIGURATION=static-release" + "-DISCORE_ENABLE_LTO=OFF" + "-DISCORE_BUILD_FOR_PACKAGE_MANAGER=True" + ]; + + patchPhase = '' + sed -e '77d' -i CMake/modules/GetGitRevisionDescription.cmake + ''; + + preConfigure = '' + export CMAKE_PREFIX_PATH="$CMAKE_PREFIX_PATH:$(echo "${jamomacore}/jamoma/share/cmake/Jamoma")" + ''; + + preBuild = '' + ninja + ''; + + installPhase = '' + cmake --build . --target install + ''; + + meta = { + description = "An interactive sequencer for the intermedia arts"; + homepage = http://i-score.org/; + license = stdenv.lib.licenses.cecill20; + maintainers = [ stdenv.lib.maintainers.magnetophon ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/development/libraries/audio/jamomacore/default.nix b/pkgs/development/libraries/audio/jamomacore/default.nix new file mode 100644 index 0000000000000..a3d04fee7f64d --- /dev/null +++ b/pkgs/development/libraries/audio/jamomacore/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchFromGitHub, pkgconfig, alsaLib, portaudio, portmidi, libsndfile, cmake, libxml2, ninja }: + +stdenv.mkDerivation rec { + version = "1.0-beta.1"; + name = "JamomaCore-${version}"; + + src = fetchFromGitHub { + owner = "jamoma"; + repo = "JamomaCore"; + rev = "v${version}"; + sha256 = "1hb9b6qc18rsvzvixgllknn756m6zwcn22c79rdibbyz1bhrcnln"; + }; + + buildInputs = [ pkgconfig alsaLib portaudio portmidi libsndfile cmake libxml2 ninja ]; + + meta = { + description = "A C++ platform for building dynamic and reflexive systems with an emphasis on audio and media"; + homepage = https://jamoma.org; + license = stdenv.lib.licenses.bsd3; + maintainers = [ stdenv.lib.maintainers.magnetophon ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/development/libraries/audio/rtaudio/default.nix b/pkgs/development/libraries/audio/rtaudio/default.nix new file mode 100644 index 0000000000000..326572996b487 --- /dev/null +++ b/pkgs/development/libraries/audio/rtaudio/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub, autoconf, automake, libtool, libjack2, alsaLib, rtmidi }: + +stdenv.mkDerivation rec { + version = "4.1.2"; + name = "rtaudio-${version}"; + + src = fetchFromGitHub { + owner = "thestk"; + repo = "rtaudio"; + rev = "${version}"; + sha256 = "09j84l9l3q0g238z5k89rm8hgk0i1ir8917an7amq474nwjp80pq"; + }; + + buildInputs = [ autoconf automake libtool libjack2 alsaLib rtmidi ]; + + preConfigure = '' + ./autogen.sh --no-configure + ./configure + ''; + + meta = { + description = "A set of C++ classes that provide a cross platform API for realtime audio input/output"; + homepage = http://www.music.mcgill.ca/~gary/rtaudio/; + license = stdenv.lib.licenses.mit; + maintainers = [ stdenv.lib.maintainers.magnetophon ]; + platforms = with stdenv.lib.platforms; linux ++ darwin; + }; +} diff --git a/pkgs/development/libraries/audio/rtmidi/default.nix b/pkgs/development/libraries/audio/rtmidi/default.nix new file mode 100644 index 0000000000000..b41db495dbaea --- /dev/null +++ b/pkgs/development/libraries/audio/rtmidi/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub, autoconf, automake, libtool, libjack2, alsaLib, pkgconfig }: + +stdenv.mkDerivation rec { + version = "2.1.1"; + name = "rtmidi-${version}"; + + src = fetchFromGitHub { + owner = "thestk"; + repo = "rtmidi"; + rev = "${version}"; + sha256 = "11pl45lp8sq5xkpipwk622w508nw0qcxr03ibicqn1lsws0hva96"; + }; + + buildInputs = [ autoconf automake libtool libjack2 alsaLib pkgconfig ]; + + preConfigure = '' + ./autogen.sh --no-configure + ./configure + ''; + + meta = { + description = "A set of C++ classes that provide a cross platform API for realtime MIDI input/output"; + homepage = http://www.music.mcgill.ca/~gary/rtmidi/; + license = stdenv.lib.licenses.mit; + maintainers = [ stdenv.lib.maintainers.magnetophon ]; + platforms = with stdenv.lib.platforms; linux ++ darwin; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9da6e8b6bb703..45cb67258052c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1951,6 +1951,8 @@ in i2pd = callPackage ../tools/networking/i2pd {}; + i-score = qt5.callPackage ../applications/audio/i-score { }; + iasl = callPackage ../development/compilers/iasl { }; iannix = qt5.callPackage ../applications/audio/iannix { }; @@ -2990,6 +2992,10 @@ in remarshal = (callPackage ../development/tools/remarshal { }).bin // { outputs = [ "bin" ]; }; + rtaudio = callPackage ../development/libraries/audio/rtaudio { }; + + rtmidi = callPackage ../development/libraries/audio/rtmidi { }; + openmpi = callPackage ../development/libraries/openmpi { }; openmodelica = callPackage ../applications/science/misc/openmodelica { }; @@ -6110,6 +6116,8 @@ in jam = callPackage ../development/tools/build-managers/jam { }; + jamomacore = callPackage ../development/libraries/audio/jamomacore { }; + jikespg = callPackage ../development/tools/parsing/jikespg { }; jenkins = callPackage ../development/tools/continuous-integration/jenkins { }; -- cgit 1.4.1 From deb1c674110ecca652beed0a38eb421e10f02d17 Mon Sep 17 00:00:00 2001 From: Karn Kallio Date: Thu, 5 May 2016 14:16:01 -0400 Subject: racket: 6.4 -> 6.5 --- pkgs/development/interpreters/racket/default.nix | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/racket/default.nix b/pkgs/development/interpreters/racket/default.nix index 03d646a3b4d6a..a0d4a3d95ed2c 100644 --- a/pkgs/development/interpreters/racket/default.nix +++ b/pkgs/development/interpreters/racket/default.nix @@ -28,20 +28,15 @@ let sqlite ]; - boolPatch = fetchurl { - url = "http://copr-dist-git.fedorainfracloud.org/cgit/bthomas/racket/racket.git/plain/xform-errors-converting-fix.patch"; - sha256 = "0h5g7a7w8wwj43jb8q69xldgbyxkn0y0i1na6r9fk17dd56nsm68"; - }; - in stdenv.mkDerivation rec { name = "racket-${version}"; - version = "6.4"; + version = "6.5"; src = fetchurl { url = "http://mirror.racket-lang.org/installers/${version}/${name}-src.tgz"; - sha256 = "1qyzq91r1kzk2k0faggqd5idwmsxizkjbdgxn6ik9iwwsjycxbw6"; + sha256 = "0gvh7i5k87mg1gpqk8gaq50ja9ksbhnvdqn7qqh0n17byidd6999"; }; FONTCONFIG_FILE = fontsConf; @@ -56,10 +51,6 @@ stdenv.mkDerivation rec { cd src/build ''; - # https://github.com/racket/racket/issues/1222 - # Fixed upstream after the release of 6.4 - patches = [ boolPatch ]; - shared = if stdenv.isDarwin then "dylib" else "shared"; configureFlags = [ "--enable-${shared}" "--enable-lt=${libtool}/bin/libtool" ] ++ stdenv.lib.optional disableDocs [ "--disable-docs" ] -- cgit 1.4.1 From d87e3b2a5502af5ce0da9cea067e0ab338a1fac6 Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Thu, 5 May 2016 18:39:58 -0400 Subject: libsndfile: pass AudioToolbox framework on darwin The libsndfile build system wants this framework when building on darwin. --- pkgs/development/libraries/libsndfile/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libsndfile/default.nix b/pkgs/development/libraries/libsndfile/default.nix index 547c7647b7a8d..85d30fdd79b66 100644 --- a/pkgs/development/libraries/libsndfile/default.nix +++ b/pkgs/development/libraries/libsndfile/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, flac, libogg, libvorbis, pkgconfig -, Carbon +, Carbon, AudioToolbox }: stdenv.mkDerivation rec { @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ pkgconfig flac libogg libvorbis ] - ++ stdenv.lib.optional stdenv.isDarwin Carbon; + ++ stdenv.lib.optionals stdenv.isDarwin [ Carbon AudioToolbox ]; enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ffcbeddfb93f7..5d0aedcb966d7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7980,7 +7980,7 @@ in libsigsegv_25 = callPackage ../development/libraries/libsigsegv/2.5.nix { }; libsndfile = callPackage ../development/libraries/libsndfile { - inherit (darwin.apple_sdk.frameworks) Carbon; + inherit (darwin.apple_sdk.frameworks) Carbon AudioToolbox; }; libsodium = callPackage ../development/libraries/libsodium { }; -- cgit 1.4.1 From 8f1fb8de5b7c82552a886134b36a270835a687e6 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Fri, 6 May 2016 09:29:29 +0200 Subject: pharo-vm: add PharoV50.sources --- pkgs/development/pharo/vm/share.nix | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/pharo/vm/share.nix b/pkgs/development/pharo/vm/share.nix index 27485af6f989a..46d2533426095 100644 --- a/pkgs/development/pharo/vm/share.nix +++ b/pkgs/development/pharo/vm/share.nix @@ -26,6 +26,11 @@ stdenv.mkDerivation rec { sha256 = "1xq1721ql19hpgr8ir372h92q7g8zwd6k921b21dap4wf8djqnpd"; }; + sources50Zip = fetchurl { + url = http://files.pharo.org/sources/PharoV50.sources.zip; + sha256 = "0ykl1y0a4yy5qn8fwz0wkl8fcn4pqv9q0w0r2llhzdz3jdg1k69g"; + }; + buildInputs = [ unzip ]; installPhase = '' @@ -37,6 +42,7 @@ stdenv.mkDerivation rec { unzip ${sources20Zip} -d $prefix/lib/ unzip ${sources30Zip} -d $prefix/lib/ unzip ${sources40Zip} -d $prefix/lib/ + unzip ${sources50Zip} -d $prefix/lib/ ''; meta = { -- cgit 1.4.1 From 7e3f222e7d65719b890ff3fc7cc1de1c46502c09 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Fri, 6 May 2016 10:03:02 +0200 Subject: pharo-vm5: 2016.04.04 -> 2016.05.04 --- pkgs/development/pharo/vm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/pharo/vm/default.nix b/pkgs/development/pharo/vm/default.nix index 2dc3cbc3ff99e..0ebbb34f8ae78 100644 --- a/pkgs/development/pharo/vm/default.nix +++ b/pkgs/development/pharo/vm/default.nix @@ -16,12 +16,12 @@ rec { }; pharo-spur = pharo-vm-build rec { - version = "2016.04.04"; + version = "2016.05.04"; name = "pharo-vm-spur-i386-${version}"; binary-basename = "pharo-spur-vm"; src = fetchurl { url = "${base-url}/pharo-vm-spur-${version}.tar.bz2"; - sha256 = "1kmf782vdk9xbzi2yn1vpzksv8m04ry8n2ih16jhcihibxzcmz23"; + sha256 = "01xvpcp9mslxmfjpi43jhgf8jnx20dqngwrfyi838il61128hwq2"; }; }; } -- cgit 1.4.1 From 8ddddbfe439f65ad3766bc744abb8104bd757ea1 Mon Sep 17 00:00:00 2001 From: ft Date: Fri, 15 Apr 2016 13:37:17 -0700 Subject: added berkeley upc --- pkgs/development/compilers/bupc/default.nix | 40 +++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 42 insertions(+) create mode 100644 pkgs/development/compilers/bupc/default.nix (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/bupc/default.nix b/pkgs/development/compilers/bupc/default.nix new file mode 100644 index 0000000000000..f22549d06e63c --- /dev/null +++ b/pkgs/development/compilers/bupc/default.nix @@ -0,0 +1,40 @@ +{ stdenv, fetchurl, perl, coreutils }: + +stdenv.mkDerivation rec { + name = "berkeley_upc-2.22.0"; + + src = fetchurl { + url = "http://upc.lbl.gov/download/release/${name}.tar.gz"; + sha256 = "041l215x8z1cvjcx7kwjdgiaf9rl2d778k6kiv8q09bc68nwd44m"; + }; + + postPatch = '' + patchShebangs . + ''; + + # Used during the configure phase + ENVCMD = "${coreutils}/bin/env"; + + nativeBuildInputs = [ coreutils ]; + buildInputs = [ perl ]; + + meta = with stdenv.lib; { + description = "A compiler for the Berkely Unified Parallel C language"; + longDescription = '' + Unified Parallel C (UPC) is an extension of the C programming language + designed for high performance computing on large-scale parallel + machines.The language provides a uniform programming model for both + shared and distributed memory hardware. The programmer is presented with + a single shared, partitioned address space, where variables may be + directly read and written by any processor, but each variable is + physically associated with a single processor. UPC uses a Single Program + Multiple Data (SPMD) model of computation in which the amount of + parallelism is fixed at program startup time, typically with a single + thread of execution per processor. + ''; + homepage = http://upc.lbl.gov/; + license = licenses.mit; + platforms = with platforms; [ linux ]; + maintainers = with maintainers; [ zimbatm ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9e44ac3e0bb4c..579dec8739890 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5178,6 +5178,8 @@ in ocaml = ocaml_4_02; }; + bupc = callPackage ../development/compilers/bupc { }; + urweb = callPackage ../development/compilers/urweb { }; vala = callPackage ../development/compilers/vala/default.nix { }; -- cgit 1.4.1 From e8803166ef34515010cdf85f0b569d674a19bd84 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Fri, 6 May 2016 10:14:40 +0100 Subject: elixir: 1.2.4 -> 1.2.5 --- pkgs/development/interpreters/elixir/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/elixir/default.nix b/pkgs/development/interpreters/elixir/default.nix index b612033c8e5a6..9ae2b9838c4fd 100644 --- a/pkgs/development/interpreters/elixir/default.nix +++ b/pkgs/development/interpreters/elixir/default.nix @@ -1,13 +1,15 @@ -{ stdenv, fetchurl, erlang, rebar, makeWrapper, coreutils, curl, bash, +{ stdenv, fetchFromGitHub, erlang, rebar, makeWrapper, coreutils, curl, bash, debugInfo ? false }: stdenv.mkDerivation rec { name = "elixir-${version}"; - version = "1.2.4"; + version = "1.2.5"; - src = fetchurl { - url = "https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz"; - sha256 = "16759ff84d08b480b7e5499716e663b2fffd26e20cf2863de5613bc7bb05c817"; + src = fetchFromGitHub { + owner = "elixir-lang"; + repo = "elixir"; + rev = "v${version}"; + sha256 = "0qnmsmzmr431y1chkzk2aq501fk734mncdbn7nsiq98bnqgb6php"; }; buildInputs = [ erlang rebar makeWrapper ]; -- cgit 1.4.1 From dce7e66f5196245e85c03e1da66f89c32ba38c4c Mon Sep 17 00:00:00 2001 From: Mathias Schreck Date: Fri, 6 May 2016 12:45:21 +0200 Subject: nodejs: 6.0.0 -> 6.1.0 --- pkgs/development/web/nodejs/v6.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/web/nodejs/v6.nix b/pkgs/development/web/nodejs/v6.nix index ffb25f0ed59ca..d331686e43704 100644 --- a/pkgs/development/web/nodejs/v6.nix +++ b/pkgs/development/web/nodejs/v6.nix @@ -4,9 +4,9 @@ }@args: import ./nodejs.nix (args // rec { - version = "6.0.0"; + version = "6.1.0"; src = fetchurl { url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.gz"; - sha256 = "0cpw7ng193jgfbw2g1fd0kcglmjjkbj4xb89g00z8zz0lj0nvdbd"; + sha256 = "1hsbmr3yc6zmyhz058zfxg77dzjhk94g1k0y65p6xq8ihq5yyrwy"; }; }) -- cgit 1.4.1 From a17c90dcd1c0f559e41d019b5a732ea46091d657 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Fri, 6 May 2016 10:52:25 -0400 Subject: gradle: 2.12 -> 2.13 --- pkgs/development/tools/build-managers/gradle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index 730d42073759a..01730e0424c6a 100644 --- a/pkgs/development/tools/build-managers/gradle/default.nix +++ b/pkgs/development/tools/build-managers/gradle/default.nix @@ -51,11 +51,11 @@ rec { }; gradleLatest = gradleGen rec { - name = "gradle-2.12"; + name = "gradle-2.13"; src = fetchurl { url = "http://services.gradle.org/distributions/${name}-bin.zip"; - sha256 = "0p5b6dngza6c2lchz5j0w4cbsizpzvkf638yzxv09k8636c68w77"; + sha256 = "0r5nrgrb14fi1p4cx5q5x82nghhrzdd843dsyzx6ay56lp35wrhg"; }; }; -- cgit 1.4.1 From 5ac997b8750b2dac56b7ef280870332d761138d9 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 6 May 2016 19:03:44 +0200 Subject: appstream: 0.8.0 -> 0.9.5 --- pkgs/development/libraries/appstream/default.nix | 28 ++++++++++++------------ 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/appstream/default.nix b/pkgs/development/libraries/appstream/default.nix index 5df6ac2cace8a..302d63aa75963 100644 --- a/pkgs/development/libraries/appstream/default.nix +++ b/pkgs/development/libraries/appstream/default.nix @@ -4,7 +4,20 @@ }: stdenv.mkDerivation { - name = "appstream-0.8.0"; + name = "appstream-0.9.5"; + + src = fetchurl { + url = "https://github.com/ximion/appstream/archive/APPSTREAM_0_8_0.tar.gz"; + sha256 = "16a3b38avrwyl1pp8jdgfjv6cd5mccbmk4asni92l40y5r0xfycr"; + }; + + nativeBuildInputs = [ + cmake pkgconfig gettext intltool + xmlto docbook_xsl docbook_xml_dtd_45 + gobjectIntrospection + ]; + + buildInputs = [ glib xapian libxml2 libyaml ]; meta = with stdenv.lib; { description = "Software metadata handling library"; @@ -19,17 +32,4 @@ stdenv.mkDerivation { license = licenses.lgpl21Plus; platforms = platforms.linux; }; - - src = fetchurl { - url = "https://github.com/ximion/appstream/archive/APPSTREAM_0_8_0.tar.gz"; - sha256 = "16a3b38avrwyl1pp8jdgfjv6cd5mccbmk4asni92l40y5r0xfycr"; - }; - - nativeBuildInputs = [ - cmake pkgconfig gettext intltool - xmlto docbook_xsl docbook_xml_dtd_45 - gobjectIntrospection - ]; - - buildInputs = [ glib xapian libxml2 libyaml ]; } -- cgit 1.4.1 From b70d728ed78021b63f11b167c169188d7c8dea73 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 4 May 2016 08:23:39 -0500 Subject: cmake: use single output Fixes #15184. Install everything, including documentation, into one output, increasing package size by 10%. Otherwise, the help commands for CMake do not work. This is a good trade because CMake should be a build-only dependency. The only reason the docs should ever make it to runtime is if the user has actually installed CMake, in which case there's a pretty good chance they want the docs, too. --- pkgs/development/tools/build-managers/cmake/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/build-managers/cmake/default.nix b/pkgs/development/tools/build-managers/cmake/default.nix index e1528aa5f0099..32e16751395a8 100644 --- a/pkgs/development/tools/build-managers/cmake/default.nix +++ b/pkgs/development/tools/build-managers/cmake/default.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { optional (stdenv ? glibc) ./search-path-3.2.patch ++ optional stdenv.isCygwin ./3.2.2-cygwin.patch; - outputs = [ "out" "doc" ]; + outputs = [ "out" ]; setOutputFlags = false; setupHook = ./setup-hook.sh; @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { --subst-var-by glibc_lib ${getLib glibc} ''; configureFlags = - [ "--docdir=/share/doc/${name}" + [ "--docdir=share/doc/${name}" "--no-system-jsoncpp" ] ++ optional (!stdenv.isCygwin) "--system-libs" @@ -64,10 +64,6 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - preInstall = ''mkdir "$doc" ''; - - postInstall = ''moveToOutput "share/cmake-*/Help" "$doc" ''; - meta = with stdenv.lib; { homepage = http://www.cmake.org/; description = "Cross-Platform Makefile Generator"; -- cgit 1.4.1 From cd76b71431b4ede9dd71896e4ac0d98210694f54 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 6 May 2016 21:15:02 +0200 Subject: cegui: 0.8.4 -> 0.8.7 --- pkgs/development/libraries/cegui/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/cegui/default.nix b/pkgs/development/libraries/cegui/default.nix index c7d7aa4d67a97..7e5c768036fc9 100644 --- a/pkgs/development/libraries/cegui/default.nix +++ b/pkgs/development/libraries/cegui/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "cegui-${version}"; - version = "0.8.4"; + version = "0.8.7"; src = fetchurl { url = "mirror://sourceforge/crayzedsgui/${name}.tar.bz2"; - sha256 = "1253aywv610rbs96hwqiw2z7xrrv24l3jhfsqj95w143idabvz5m"; + sha256 = "067562s71kfsnbp2zb2bmq8zj3jk96g5a4rcc5qc3n8nfyayhldk"; }; -- cgit 1.4.1 From e965e42dc5946b8988045ac2ca8f7dfe3f4e6ce4 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Fri, 6 May 2016 22:22:59 -0400 Subject: go: fix build on Darwin The go tests get tripped up due to error messages along the lines of: ld: warning: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation, ignoring unexpected dylib file Which is due to us passing that along via $NIX_LDFLAGS in the `clang` wrapper. To keep `go` from getting confused, I create a small `clang` wrapper that filters out that warning. Also, the strip.patch is no longer necessary, and only causes problems when testing DWARF support: --- FAIL: TestDwarfAranges (0.59s) runtime-lldb_test.go:218: Missing aranges section FAIL FAIL runtime 17.123s Also, I disable the misc/cgo/errors test, as I suspect it is also due to similar problems regarding `ld`: ##### ../misc/cgo/errors misc/cgo/errors/test.bash: BUG: expected error output to contain "err1.go:11:" but saw: # command-line-arguments cannot parse gcc output $WORK/command-line-arguments/_obj//_cgo_.o as ELF, Mach-O, PE object 2016/05/07 02:07:58 Failed: exit status 1 Closes #14208 --- pkgs/development/compilers/go/1.6.nix | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/go/1.6.nix b/pkgs/development/compilers/go/1.6.nix index 4efcdb53f476b..be6f1a5402d63 100644 --- a/pkgs/development/compilers/go/1.6.nix +++ b/pkgs/development/compilers/go/1.6.nix @@ -1,7 +1,7 @@ { stdenv, lib, fetchurl, tzdata, iana_etc, go_1_4, runCommand , perl, which, pkgconfig, patch, fetchpatch , pcre -, Security, Foundation }: +, Security, Foundation, bash }: let goBootstrap = runCommand "go-bootstrap" {} '' @@ -32,6 +32,7 @@ stdenv.mkDerivation rec { # I'm not sure what go wants from its 'src', but the go installation manual # describes an installation keeping the src. preUnpack = '' + topdir=$PWD mkdir -p $out/share cd $out/share ''; @@ -92,14 +93,22 @@ stdenv.mkDerivation rec { sed -i '/TestDisasmExtld/areturn' src/cmd/objdump/objdump_test.go touch $TMPDIR/group $TMPDIR/hosts $TMPDIR/passwd + + sed -i '1 a\exit 0' misc/cgo/errors/test.bash + + mkdir $topdir/dirtyhacks + cat < $topdir/dirtyhacks/clang + #!${bash}/bin/bash + $(type -P clang) "\$@" 2> >(sed '/ld: warning:.*ignoring unexpected dylib file/ d' 1>&2) + exit $? + EOF + chmod +x $topdir/dirtyhacks/clang + PATH=$topdir/dirtyhacks:$PATH ''; patches = [ ./remove-tools-1.5.patch - ] - # -ldflags=-s is required to compile on Darwin, see - # https://github.com/golang/go/issues/11994 - ++ stdenv.lib.optional stdenv.isDarwin ./strip.patch; + ]; GOOS = if stdenv.isDarwin then "darwin" else "linux"; GOARCH = if stdenv.isDarwin then "amd64" -- cgit 1.4.1 From 9cd896367a2d78010dac9bc80bf7f66ec416c616 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sat, 7 May 2016 05:04:25 +0200 Subject: pypi2nix: new release --- pkgs/development/tools/pypi2nix/default.nix | 72 +++++++++++++++++++++++++++++ pkgs/development/tools/pypi2nix/deps.nix | 68 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/python-packages.nix | 20 -------- 4 files changed, 141 insertions(+), 21 deletions(-) create mode 100644 pkgs/development/tools/pypi2nix/default.nix create mode 100644 pkgs/development/tools/pypi2nix/deps.nix (limited to 'pkgs/development') diff --git a/pkgs/development/tools/pypi2nix/default.nix b/pkgs/development/tools/pypi2nix/default.nix new file mode 100644 index 0000000000000..74c537763da2c --- /dev/null +++ b/pkgs/development/tools/pypi2nix/default.nix @@ -0,0 +1,72 @@ +{ stdenv, fetchurl, python, zip, makeWrapper +}: + +let + deps = import ./deps.nix { inherit fetchurl; }; + version = "1.0.0"; + src = fetchurl { + url = "https://github.com/garbas/pypi2nix/archive/v${version}.tar.gz"; + sha256 = "1rbwkmsllg8wxv45xyvc3vh97na0zxxydcfqrvig496xkylvw2rn"; + + }; +in stdenv.mkDerivation rec { + name = "pypi2nix-${version}"; + srcs = with deps; [ src pip click setuptools zcbuildout zcrecipeegg ]; + buildInputs = [ python zip makeWrapper ]; + sourceRoot = "."; + + postUnpack = '' + mkdir -p $out/pkgs + + mv pip-*/pip $out/pkgs/pip + mv click-*/click $out/pkgs/click + mv setuptools-*/setuptools $out/pkgs/setuptools + mv zc.buildout-*/src/zc $out/pkgs/zc + mv zc.recipe.egg-*/src/zc/recipe $out/pkgs/zc/recipe + + if [ "$IN_NIX_SHELL" != "1" ]; then + if [ -e git-export ]; then + mv git-export/src/pypi2nix $out/pkgs/pypi2nix + else + mv pypi2nix*/src/pypi2nix $out/pkgs/pypi2nix + fi + fi + ''; + + commonPhase = '' + mkdir -p $out/bin + + echo "#!${python}/bin/python" > $out/bin/pypi2nix + echo "import pypi2nix.cli" >> $out/bin/pypi2nix + echo "pypi2nix.cli.main()" >> $out/bin/pypi2nix + + chmod +x $out/bin/pypi2nix + + export PYTHONPATH=$out/pkgs:$PYTHONPATH + ''; + + installPhase = commonPhase + '' + wrapProgram $out/bin/pypi2nix --prefix PYTHONPATH : "$PYTHONPATH" + ''; + + shellHook = '' + export home=`pwd` + export out=/tmp/`pwd | md5sum | cut -f 1 -d " "`-$name + + rm -rf $out + mkdir -p $out + + cd $out + runHook unpackPhase + runHook commonPhase + cd $home + + export PATH=$out/bin:$PATH + export PYTHONPATH=`pwd`/src:$PYTHONPATH + ''; + meta = { + homepage = https://github.com/garbas/pypi2nix; + description = "A tool that generates nix expressions for your python packages, so you don't have to."; + maintainers = with stdenv.lib.maintainers; [ garbas ]; + }; +} diff --git a/pkgs/development/tools/pypi2nix/deps.nix b/pkgs/development/tools/pypi2nix/deps.nix new file mode 100644 index 0000000000000..39fc9329d5ece --- /dev/null +++ b/pkgs/development/tools/pypi2nix/deps.nix @@ -0,0 +1,68 @@ +{ fetchurl +#, pypi_url ? "https://files.pythonhosted.org/packages" +, pypi_url ? "https://pypi.io/packages/source/packages" +}: + +rec { + + pipVersion = "8.1.1"; + pipHash = "6b86f11841e89c8241d689956ba99ed7"; + pipWhlHash = "22db7b6a517a09c29d54a76650f170eb"; + + setuptoolsVersion = "21.0.0"; + setuptoolsHash = "81964fdb89534118707742e6d1a1ddb4"; + setuptoolsWhlHash = "6027400d6870a7dad29952b7d2dfdc7b"; + + zcbuildoutVersion = "2.5.1"; + zcbuildoutHash = "c88947a3c021ee1509a331c4fa9be187"; + + zcrecipeeggVersion = "2.0.3"; + zcrecipeeggHash = "69a8ce276029390a36008150444aa0b4"; + + wheelVersion = "0.29.0"; + wheelHash = "555a67e4507cedee23a0deb9651e452f"; + + clickVersion = "6.6"; + clickHash = "d0b09582123605220ad6977175f3e51d"; + + pipWhl = fetchurl { + url = "https://pypi.python.org/packages/31/6a/0f19a7edef6c8e5065f4346137cc2a08e22e141942d66af2e1e72d851462/pip-${pipVersion}-py2.py3-none-any.whl"; + md5 = pipWhlHash; + }; + + setuptoolsWhl = fetchurl { + url = "https://pypi.python.org/packages/15/b7/a76624e5a3b18c8c1c8d33a5240b34cdabb08aef2da44b536a8b53ba1a45/setuptools-${setuptoolsVersion}-py2.py3-none-any.whl"; + md5 = setuptoolsWhlHash; + }; + + pip = fetchurl { + url = "${pypi_url}/source/p/pip/pip-${pipVersion}.tar.gz"; + md5 = pipHash; + }; + + setuptools = fetchurl { + url = "${pypi_url}/source/s/setuptools/setuptools-${setuptoolsVersion}.tar.gz"; + md5 = setuptoolsHash; + }; + + zcbuildout = fetchurl { + url = "${pypi_url}/source/z/zc.buildout/zc.buildout-${zcbuildoutVersion}.tar.gz"; + md5 = zcbuildoutHash; + }; + + zcrecipeegg = fetchurl { + url = "${pypi_url}/source/z/zc.recipe.egg/zc.recipe.egg-${zcrecipeeggVersion}.tar.gz"; + md5 = zcrecipeeggHash; + }; + + wheel = fetchurl { + url = "${pypi_url}/source/w/wheel/wheel-${wheelVersion}.tar.gz"; + md5 = wheelHash; + }; + + click = fetchurl { + url = "${pypi_url}/source/c/click/click-${clickVersion}.tar.gz"; + md5 = clickHash; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c0b784cc329c3..a318b982f2719 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5593,7 +5593,7 @@ in pythonDocs = recurseIntoAttrs (callPackage ../development/interpreters/python/docs {}); - pypi2nix = python27Packages.pypi2nix; + pypi2nix = callPackage ../development/tools/pypi2nix { python = python27; }; svg2tikz = python27Packages.svg2tikz; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 97f6111b5c7d9..f503ef02b4857 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -25060,26 +25060,6 @@ in modules // { retry_decorator pkgs.pyopenssl socksipy-branch crcmod ]; }; - pypi2nix = self.buildPythonPackage rec { - rev = "04a68d8577acbceb88bdf51b1231a9dbdead7003"; - name = "pypi2nix-1.0_${rev}"; - disabled = ! isPy27; - - src = pkgs.fetchurl { - url = "https://github.com/garbas/pypi2nix/tarball/${rev}"; - name = "${name}.tar.bz"; - sha256 = "1fv85x2bz442iyxsvka2g75zibjcq48gp2fc7szaqcfqxq42syy9"; - }; - - doCheck = false; - - meta = { - homepage = https://github.com/garbas/pypi2nix; - description = ""; - maintainers = with maintainers; [ garbas ]; - }; - }; - svg2tikz = self.buildPythonPackage { name = "svg2tikz-1.0.0"; disabled = ! isPy27; -- cgit 1.4.1 From 372d367b379a82e971d5974ff000aaec34a9734b Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Sat, 7 May 2016 09:31:40 +0200 Subject: mediastreamer: 2.11.2 -> 2.12.1 This fixes the build broken by ortp update d4d6d9d3d. http://hydra.nixos.org/build/35224682 --- pkgs/development/libraries/mediastreamer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/mediastreamer/default.nix b/pkgs/development/libraries/mediastreamer/default.nix index de976002f03c3..5830786f64486 100644 --- a/pkgs/development/libraries/mediastreamer/default.nix +++ b/pkgs/development/libraries/mediastreamer/default.nix @@ -4,11 +4,11 @@ }: stdenv.mkDerivation rec { - name = "mediastreamer-2.11.2"; + name = "mediastreamer-2.12.1"; src = fetchurl { url = "mirror://savannah/linphone/mediastreamer/${name}.tar.gz"; - sha256 = "1g6gawrlz1lixzs1kzckm3rxc401ww8pi00x7r5kb84bdijb02cc"; + sha256 = "1rzjh2ln8qd6jvfmxlnbrcx2vbajx2j9hblqq2gdn10sf97qvgqd"; }; patches = [ ./plugins_dir.patch ]; -- cgit 1.4.1 From c7193c1506ee9a7f4c6cbda7d088fe91d1486614 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 7 May 2016 11:58:17 +0300 Subject: openspades: less hacks --- pkgs/development/interpreters/python/3.5/default.nix | 5 +++++ pkgs/games/openspades/default.nix | 5 ++--- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix index 4bc39f4c2b3a7..0d844d37963f3 100644 --- a/pkgs/development/interpreters/python/3.5/default.nix +++ b/pkgs/development/interpreters/python/3.5/default.nix @@ -58,8 +58,13 @@ stdenv.mkDerivation { ''} configureFlagsArray=( --enable-shared --with-threads +<<<<<<< Updated upstream CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" +======= + CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}" +>>>>>>> Stashed changes LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/games/openspades/default.nix b/pkgs/games/openspades/default.nix index bfec5a30f9601..2203bb6337eb4 100644 --- a/pkgs/games/openspades/default.nix +++ b/pkgs/games/openspades/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { [ cmake curl glew makeWrapper mesa SDL2 SDL2_image unzip wget zlib ] ++ lib.optional withOpenal openal; - cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" "-DOPENSPADES_INSTALL_BINARY=bin" ]; + cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" "-DOPENSPADES_INSTALL_BINARY=bin" "-DOPENSPADES_RESOURCES=NO" ]; enableParallelBuilding = true; @@ -33,8 +33,7 @@ stdenv.mkDerivation rec { }; preBuild = '' - cp $devPack Resources/DevPaks27.zip - unzip -u -o Resources/DevPaks27.zip -d Resources/DevPak + unzip -u -o $devPack -d Resources/DevPak ''; NIX_CFLAGS_LINK = lib.optional withOpenal "-lopenal"; -- cgit 1.4.1 From 2d577679743b1299a960c31f5ddc54f405fab069 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 7 May 2016 12:02:22 +0300 Subject: openspades-git: drop yet another hack, fix accidential python merge --- pkgs/development/interpreters/python/3.5/default.nix | 5 ----- pkgs/games/openspades/git.nix | 1 - 2 files changed, 6 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix index 0d844d37963f3..4bc39f4c2b3a7 100644 --- a/pkgs/development/interpreters/python/3.5/default.nix +++ b/pkgs/development/interpreters/python/3.5/default.nix @@ -58,13 +58,8 @@ stdenv.mkDerivation { ''} configureFlagsArray=( --enable-shared --with-threads -<<<<<<< Updated upstream CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" -======= - CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}" ->>>>>>> Stashed changes LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/games/openspades/git.nix b/pkgs/games/openspades/git.nix index aeddbf43cdea2..8212f160cda83 100644 --- a/pkgs/games/openspades/git.nix +++ b/pkgs/games/openspades/git.nix @@ -29,7 +29,6 @@ stdenv.mkDerivation rec { }; preBuild = '' - cat > Resources/downloadpak.sh unzip -u -o $devPack -d Resources/DevPak ''; -- cgit 1.4.1 From c4cd453c071a0cd8968ea40a309d95e217fdee75 Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Sat, 7 May 2016 00:04:11 -0300 Subject: pythonPackages.mathics: 0.8 -> 0.9 --- .../mathics/disable_console_tests.patch | 21 --------------------- pkgs/top-level/python-packages.nix | 22 ++++++++++------------ 2 files changed, 10 insertions(+), 33 deletions(-) delete mode 100644 pkgs/development/python-modules/mathics/disable_console_tests.patch (limited to 'pkgs/development') diff --git a/pkgs/development/python-modules/mathics/disable_console_tests.patch b/pkgs/development/python-modules/mathics/disable_console_tests.patch deleted file mode 100644 index 6e20686fc41ab..0000000000000 --- a/pkgs/development/python-modules/mathics/disable_console_tests.patch +++ /dev/null @@ -1,21 +0,0 @@ -These tests require that Mathics already be installed to work, -which is not true when nix runs them. - ---- a/test/test_console.py 2015-09-07 21:41:08.530501979 -0700 -+++ b/test/test_console.py 2015-09-07 21:42:44.082176084 -0700 -@@ -13,6 +13,7 @@ - os.environ["TERM"] = "dumb" - self.console = pexpect.spawn('python2 mathics/main.py --color NOCOLOR') - -+ @unittest.expectedFailure - def testLaunch(self): - cons = self.console - -@@ -41,6 +42,7 @@ - 'Quit by pressing CONTROL-D\r\n' - '\r\n') - -+ @unittest.expectedFailure - def testPrompt(self): - cons = self.console - cons.expect('Quit by pressing CONTROL-D\r\n\r\n') diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7c4adbcfaaf50..577be21686581 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11800,17 +11800,15 @@ in modules // { mathics = buildPythonPackage rec { name = "mathics-${version}"; - version = "0.8"; + version = "0.9"; src = pkgs.fetchFromGitHub { owner = "mathics"; repo = "Mathics"; rev = "v${version}"; - sha256 = "1hyrxnhxw35vn00k55hp9bkg8vg4dsphrpfg1yg4cn53y78rk1im"; + sha256 = "0xzz7j8xskj5y6as178mjmm0i2xbhd4q4mwmdnvghpd2aqq3qx1c"; }; - disabled = isPy3k; - - patches = [ ../development/python-modules/mathics/disable_console_tests.patch ]; + disabled = isPy26; buildInputs = with self; [ pexpect ]; @@ -11819,17 +11817,17 @@ in modules // { ''; propagatedBuildInputs = with self; [ - argparse cython - colorama - dateutil - django_1_6 + sympy + django_1_8 + ply mpmath + dateutil + colorama + six + readline - interruptingcow - ply sqlite3 - sympy ]; meta = { -- cgit 1.4.1 From 98bef7e0bde3b7b9cc4deff282c8863fc5b504a5 Mon Sep 17 00:00:00 2001 From: Sven Keidel Date: Sun, 24 Apr 2016 20:42:53 +0200 Subject: brogue: init at 1.7.4 with fixups by joachifm: - Correct license (AGPL-3) - Removed redundant build input - Cleanup description Closes #15244 --- pkgs/development/libraries/libtcod/default.nix | 33 ++++++++++++++++++++++++ pkgs/games/brogue/default.nix | 35 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 3 files changed, 72 insertions(+) create mode 100644 pkgs/development/libraries/libtcod/default.nix create mode 100644 pkgs/games/brogue/default.nix (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libtcod/default.nix b/pkgs/development/libraries/libtcod/default.nix new file mode 100644 index 0000000000000..959c544876f31 --- /dev/null +++ b/pkgs/development/libraries/libtcod/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchFromBitbucket, cmake, SDL, mesa, upx }: + +stdenv.mkDerivation rec { + + name = "libtcod-${version}"; + version = "1.5.1"; + + src = fetchFromBitbucket { + owner = "libtcod"; + repo = "libtcod"; + rev = "1.5.1"; + sha256 = "1ibsnmnim712npxkqklc5ibnd32hgsx2yzyfzzc5fis5mhinbl63"; + }; + + prePatch = '' + sed -i CMakeLists.txt \ + -e "s,SET(ROOT_DIR.*,SET(ROOT_DIR $out),g" \ + -e "s,SET(INSTALL_DIR.*,SET(INSTALL_DIR $out),g" + echo 'INSTALL(DIRECTORY include DESTINATION .)' >> CMakeLists.txt + ''; + + cmakeFlags="-DLIBTCOD_SAMPLES=OFF"; + + buildInputs = [ cmake SDL mesa upx ]; + + meta = { + description = "API for roguelike games"; + homepage = http://roguecentral.org/doryen/libtcod/; + license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.skeidel ]; + }; +} diff --git a/pkgs/games/brogue/default.nix b/pkgs/games/brogue/default.nix new file mode 100644 index 0000000000000..134e94d1fc285 --- /dev/null +++ b/pkgs/games/brogue/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchurl, SDL, ncurses, libtcod, binutils }: + +stdenv.mkDerivation rec { + name = "brogue-${version}"; + version = "1.7.4"; + + src = fetchurl { + url = "https://sites.google.com/site/broguegame/brogue-${version}-linux-amd64.tbz2"; + sha256 = "1lygf17hm7wqlp0jppaz8dn9a9ksmxz12vw7jyfavvqpwdgz79gb"; + }; + + prePatch = '' + sed -i Makefile -e 's,LIBTCODDIR=.*,LIBTCODDIR=${libtcod},g' \ + -e 's,sdl-config,${SDL}/bin/sdl-config,g' + sed -i src/platform/tcod-platform.c -e "s,fonts/font,$out/share/brogue/fonts/font,g" + make clean + rm -rf src/libtcod* + ''; + + buildInputs = [ SDL ncurses libtcod ]; + + installPhase = '' + install -m 555 -D bin/brogue $out/bin/brogue + mkdir -p $out/share/brogue + cp -r bin/fonts $out/share/brogue/ + ''; + + meta = with stdenv.lib; { + description = "A roguelike game"; + homepage = https://sites.google.com/site/broguegame/; + license = licenses.agpl3; + maintainers = [ maintainers.skeidel ]; + platforms = [ "x86_64-linux" ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6178ef4833375..f9a81fdec5e01 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8072,6 +8072,8 @@ in libtasn1 = callPackage ../development/libraries/libtasn1 { }; + libtcod = callPackage ../development/libraries/libtcod { }; + libtheora = callPackage ../development/libraries/libtheora { }; libtiff = callPackage ../development/libraries/libtiff { }; @@ -14845,6 +14847,8 @@ in blobby = callPackage ../games/blobby { }; + brogue = callPackage ../games/brogue { }; + bsdgames = callPackage ../games/bsdgames { }; btanks = callPackage ../games/btanks { }; -- cgit 1.4.1 From 3772de4961db01bf666f33cfb0d1f3d01265a461 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 7 May 2016 21:49:16 +0200 Subject: libgcrypt: fix libcap lib output reference After 7382afac40c23841e5d6a491bd4a9412d766ecab --- pkgs/development/libraries/libgcrypt/1.5.nix | 2 +- pkgs/development/libraries/libgcrypt/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libgcrypt/1.5.nix b/pkgs/development/libraries/libgcrypt/1.5.nix index d77946e5ec37a..4287c86dbd592 100644 --- a/pkgs/development/libraries/libgcrypt/1.5.nix +++ b/pkgs/development/libraries/libgcrypt/1.5.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { postInstall = '' sed -i 's,#include ,#include "${libgpgerror.dev}/include/gpg-error.h",g' $out/include/gcrypt.h '' + stdenv.lib.optionalString enableCapabilities '' - sed -i 's,\(-lcap\),-L${libcap.out}/lib \1,' $out/lib/libgcrypt.la + sed -i 's,\(-lcap\),-L${libcap.lib}/lib \1,' $out/lib/libgcrypt.la ''; doCheck = true; diff --git a/pkgs/development/libraries/libgcrypt/default.nix b/pkgs/development/libraries/libgcrypt/default.nix index d566a0e8567be..dd57e74e15665 100644 --- a/pkgs/development/libraries/libgcrypt/default.nix +++ b/pkgs/development/libraries/libgcrypt/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { postFixup = '' sed -i 's,#include ,#include "${libgpgerror.dev}/include/gpg-error.h",g' "$dev/include/gcrypt.h" '' + stdenv.lib.optionalString enableCapabilities '' - sed -i 's,\(-lcap\),-L${libcap.out}/lib \1,' $out/lib/libgcrypt.la + sed -i 's,\(-lcap\),-L${libcap.lib}/lib \1,' $out/lib/libgcrypt.la ''; # TODO: figure out why this is even necessary and why the missing dylib only crashes -- cgit 1.4.1 From 440ea1b893e774b04d7012d6d551b3b8e81517d2 Mon Sep 17 00:00:00 2001 From: Michiel Leenaars Date: Sat, 7 May 2016 23:06:56 +0200 Subject: p11-kit: 0.23.1 -> 0.23.2 --- pkgs/development/libraries/p11-kit/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/p11-kit/default.nix b/pkgs/development/libraries/p11-kit/default.nix index f2a9bdc123097..e08e7c06815e6 100644 --- a/pkgs/development/libraries/p11-kit/default.nix +++ b/pkgs/development/libraries/p11-kit/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, libiconv, pkgconfig, libffi, libtasn1 }: stdenv.mkDerivation rec { - name = "p11-kit-0.23.1"; + name = "p11-kit-0.23.2"; src = fetchurl { url = "${meta.homepage}releases/${name}.tar.gz"; - sha256 = "1i3a1wdpagm0p3y1bwaz5x5rjhcpqbcrnhkcp10p259vkxk72wz5"; + sha256 = "1w7szm190phlkg7qx05ychlj2dbvkgkhx9gw6dx4d5rw62l6wwms"; }; outputs = [ "dev" "out" "docdev" ]; @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { installFlags = [ "exampledir=\${out}/etc/pkcs11" ]; meta = with stdenv.lib; { - homepage = http://p11-glue.freedesktop.org/; + homepage = https://p11-glue.freedesktop.org/; platforms = platforms.all; maintainers = with maintainers; [ urkud wkennington ]; license = licenses.mit; -- cgit 1.4.1 From 70a02d64bcbcec14a44e8b302ee32be4dcfd6cf4 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 7 May 2016 16:46:07 +0200 Subject: kcov: meta.{homePage -> homepage} --- pkgs/development/tools/analysis/kcov/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/analysis/kcov/default.nix b/pkgs/development/tools/analysis/kcov/default.nix index 4a33a0cd8f33d..00eb5b9afc132 100644 --- a/pkgs/development/tools/analysis/kcov/default.nix +++ b/pkgs/development/tools/analysis/kcov/default.nix @@ -14,15 +14,15 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "code coverage tester for compiled programs, Python scripts and shell scripts"; - longDescription = - '' Kcov is a code coverage tester for compiled programs, Python + longDescription = '' + Kcov is a code coverage tester for compiled programs, Python scripts and shell scripts. It allows collecting code coverage information from executables without special command-line arguments, and continuosly produces output from long-running applications. - ''; + ''; - homePage = http://simonkagstrom.github.io/kcov/index.html; + homepage = http://simonkagstrom.github.io/kcov/index.html; license = licenses.gpl2; maintainers = [ maintainers.gal_bolle ]; -- cgit 1.4.1 From e3e27ecf4e512e46ce7c9c13aa22c8d5d819bf85 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sun, 8 May 2016 03:40:43 +0000 Subject: nixpkgs: chez-scheme 9.4-20160501 -> 9.4-20160507 This allows us to remove a hack in the makefile, fixes a few bugs, and also catches another edge case in the configure scripts. Signed-off-by: Austin Seipp --- pkgs/development/compilers/chez/default.nix | 27 ++++++++++----------------- 1 file changed, 10 insertions(+), 17 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/chez/default.nix b/pkgs/development/compilers/chez/default.nix index d9e7cc5073053..65200dce71ef2 100644 --- a/pkgs/development/compilers/chez/default.nix +++ b/pkgs/development/compilers/chez/default.nix @@ -3,39 +3,32 @@ stdenv.mkDerivation rec { name = "chez-scheme-${version}"; version = "9.4-${dver}"; - dver = "20160501"; + dver = "20160507"; src = fetchgit { url = "https://github.com/cisco/chezscheme.git"; - rev = "8343b7172532a00d2d19914206fcf83c93798c80"; - sha256 = "1jq55sdk468lckccfnqh0iv868bhw6yb9ba9bakqg2pfydb8r4qf"; + rev = "65df1d1f7c37f5b5a93cd7e5b475dda9dbafe03c"; + sha256 = "024x79xcdqp665xjyccpn02w6dmdvnhw0h0vdc42g9s5wv5ry92m"; 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. + /* We patch out a very annoying 'feature' in ./configure, which + ** tries to use 'git' to update submodules. ** - ** 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. + ** 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 \ - --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" + --replace "/bin/ln" "${coreutils}/bin/ln" \ + --replace "/bin/cp" "${coreutils}/bin/cp" substituteInPlace ./makefiles/installsh \ --replace "/usr/bin/true" "${coreutils}/bin/true" -- cgit 1.4.1 From f0c503593fd9d968407a94e26f9ef24279bf8012 Mon Sep 17 00:00:00 2001 From: Lluís Batlle i Rossell Date: Sun, 8 May 2016 16:21:46 +0200 Subject: Fixing stunt-rally 2.6 (adding newer bullet) --- pkgs/development/libraries/bullet/bullet283.nix | 28 ++++++++++++++++++++ pkgs/games/stuntrally/default.nix | 34 +++++++++++++------------ pkgs/top-level/all-packages.nix | 8 +++++- 3 files changed, 53 insertions(+), 17 deletions(-) create mode 100644 pkgs/development/libraries/bullet/bullet283.nix (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/bullet/bullet283.nix b/pkgs/development/libraries/bullet/bullet283.nix new file mode 100644 index 0000000000000..ea792b98a3284 --- /dev/null +++ b/pkgs/development/libraries/bullet/bullet283.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, cmake, mesa, freeglut }: + +stdenv.mkDerivation rec { + name = "bullet-2.83.7"; # vdrift 2012-07-22 doesn't build with 2.81 + src = fetchurl { + url = "https://github.com/bulletphysics/bullet3/archive/2.83.7.tar.gz"; + sha256 = "0hqjnmlb2p29yiasrm7kvgv0nklz5zkwhfk4f78zz1gf0vrdil80"; + }; + + buildInputs = [ cmake mesa freeglut ]; + configurePhase = '' + cmake -DBUILD_SHARED_LIBS=ON -DINSTALL_EXTRA_LIBS=TRUE \ + -DCMAKE_INSTALL_PREFIX=$out . + ''; + + enableParallelBuilding = true; + + meta = { + description = "A professional free 3D Game Multiphysics Library"; + longDescription = '' + Bullet 3D Game Multiphysics Library provides state of the art collision + detection, soft body and rigid body dynamics. + ''; + homepage = https://github.com/bulletphysics/bullet3; + license = stdenv.lib.licenses.zlib; + maintainers = with stdenv.lib.maintainers; [ aforemny ]; + }; +} diff --git a/pkgs/games/stuntrally/default.nix b/pkgs/games/stuntrally/default.nix index 436ac958f3443..24e54c7b13a29 100644 --- a/pkgs/games/stuntrally/default.nix +++ b/pkgs/games/stuntrally/default.nix @@ -1,40 +1,42 @@ -{ fetchgit, stdenv, cmake, boost, ogre, mygui, ois, SDL2, libvorbis, pkgconfig -, makeWrapper, enet, libXcursor }: +{ fetchurl, stdenv, cmake, boost, ogre, mygui, ois, SDL2, libvorbis, pkgconfig +, makeWrapper, enet, libXcursor, bullet, openal }: stdenv.mkDerivation rec { name = "stunt-rally-${version}"; version = "2.6"; - src = fetchgit { - url = git://github.com/stuntrally/stuntrally.git; - rev = "refs/tags/${version}"; - sha256 = "0rrfmldl6m7igni1n4rv2i0s2q5j1ik8dh05ydkaqrpcky96bdr8"; + src = fetchurl { + url = "https://github.com/stuntrally/stuntrally/archive/${version}.tar.gz"; + sha256 = "1jmsxd2isq9q5paz43c3xw11vr5md1ym8h34b768vxr6gp90khwc"; }; - tracks = fetchgit { - url = git://github.com/stuntrally/tracks.git; - rev = "refs/tags/${version}"; - sha256 = "186qqyr1nrabfzsgy7b4sjgm38mgd875f4c7qwkm8k2bl7zjkrm2"; + tracks = fetchurl { + url = "https://github.com/stuntrally/tracks/archive/${version}.tar.gz"; + sha256 = "0yv88l9s03kp1xkkwnigh0jj593vi3r7vgyg0jn7i8d22q2p1kjb"; }; + # include/OGRE/OgreException.h:265:126: error: invalid conversion from + # 'int' to 'Ogre::Exception::ExceptionCodes' [-fpermissive] + NIX_CFLAGS_COMPILE="-fpermissive"; + preConfigure = '' - cp -R ${tracks} data/tracks - chmod u+rwX -R data + pushd data + tar xf ${tracks} + mv tracks-2.6 tracks + popd ''; buildInputs = [ cmake boost ogre mygui ois SDL2 libvorbis pkgconfig - makeWrapper enet libXcursor + makeWrapper enet libXcursor bullet openal ]; enableParallelBuilding = true; meta = with stdenv.lib; { description = "Stunt Rally game with Track Editor, based on VDrift and OGRE"; - homepage = http://code.google.com/p/vdrift-ogre/; + homepage = http://stuntrally.tuxfamily.org/; license = licenses.gpl3Plus; maintainers = with maintainers; [ pSub ]; platforms = platforms.linux; - # Build failure - broken = true; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 479c5f941daa7..9652a97673f38 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15199,7 +15199,12 @@ in stepmania = callPackage ../games/stepmania { }; - stuntrally = callPackage ../games/stuntrally { }; + stuntrally = callPackage ../games/stuntrally { + bullet = bullet283; + mygui = mygui.override { + withOgre = true; + }; + }; superTux = callPackage ../games/super-tux { }; @@ -16787,6 +16792,7 @@ in misc = callPackage ../misc/misc.nix { }; bullet = callPackage ../development/libraries/bullet {}; + bullet283 = callPackage ../development/libraries/bullet/bullet283.nix {}; spdlog = callPackage ../development/libraries/spdlog { }; -- cgit 1.4.1 From 9f64457f10b642cd4e616a99191ce726324de2c6 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 8 May 2016 17:43:30 +0200 Subject: yodl: 3.08.00 -> 3.08.01 --- pkgs/development/tools/misc/yodl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/misc/yodl/default.nix b/pkgs/development/tools/misc/yodl/default.nix index 69270f8a51813..9ff9b05b5ed10 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.08.00"; + version = "3.08.01"; buildInputs = [ perl icmake ]; src = fetchFromGitHub { - sha256 = "107jhywx0xdyp7yll1c5zwngzjl3yvg1b4yan8wl2acnbrv6hwa4"; + sha256 = "0sks4phdy8qf6lmbjardrk0gl4v7crr4vjdgwpkkc8d5lzvcx7j5"; rev = version; repo = "yodl"; owner = "fbb-git"; -- cgit 1.4.1 From 6ff886e539fb2b2017ad3866f068db9368a038d5 Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Sun, 8 May 2016 00:14:39 -0400 Subject: arduino: 1.0.6 -> 1.6.6 --- pkgs/development/arduino/arduino-core/default.nix | 28 ++++++++++++++--------- 1 file changed, 17 insertions(+), 11 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/arduino/arduino-core/default.nix b/pkgs/development/arduino/arduino-core/default.nix index 37947c804b8b8..8059879dc479d 100644 --- a/pkgs/development/arduino/arduino-core/default.nix +++ b/pkgs/development/arduino/arduino-core/default.nix @@ -1,45 +1,51 @@ { stdenv, fetchFromGitHub, jdk, jre, ant, coreutils, gnugrep, file, libusb -, withGui ? false, gtk2 ? null -}: +, unzip, zlib, readline, ncurses, withGui ? false, gtk2 ? null }: assert withGui -> gtk2 != null; stdenv.mkDerivation rec { - version = "1.0.6"; + version = "1.6.6"; name = "arduino${stdenv.lib.optionalString (withGui == false) "-core"}-${version}"; src = fetchFromGitHub { owner = "arduino"; repo = "Arduino"; rev = "${version}"; - sha256 = "0nr5b719qi03rcmx6swbhccv6kihxz3b8b6y46bc2j348rja5332"; + sha256 = "1gm3sjjs149r2d82ynx25qlg31bbird1zr4x01qi4ybk3gp0268v"; }; - buildInputs = [ jdk ant file ]; + buildInputs = [ jdk ant file unzip ]; buildPhase = '' - cd ./core && ant + cd ./arduino-core && ant cd ../build && ant cd .. ''; + libPath = stdenv.lib.makeLibraryPath (builtins.filter (l: l != null) [ + gtk2 stdenv.cc.cc zlib readline libusb ncurses]) + ":$out/lib"; + installPhase = '' mkdir -p $out/share/arduino cp -r ./build/linux/work/* "$out/share/arduino/" echo ${version} > $out/share/arduino/lib/version.txt + # Hack around lack of libtinfo in NixOS + mkdir -p $out/lib + ln -s ${ncurses.out}/lib/libncursesw.so.5 $out/lib/libtinfo.so.5 + ${stdenv.lib.optionalString withGui '' mkdir -p "$out/bin" - sed -i -e "s|^java|${jdk}/bin/java|" "$out/share/arduino/arduino" - sed -i -e "s|^LD_LIBRARY_PATH=|LD_LIBRARY_PATH=${gtk2}/lib:|" "$out/share/arduino/arduino" + sed -i -e "s|^JAVA=.*|JAVA=${jdk}/bin/java|" "$out/share/arduino/arduino" + sed -i -e "s|^LD_LIBRARY_PATH=|LD_LIBRARY_PATH=${libPath}:|" "$out/share/arduino/arduino" ln -sr "$out/share/arduino/arduino" "$out/bin/arduino" ''} # Fixup "/lib64/ld-linux-x86-64.so.2" like references in ELF executables. echo "running patchelf on prebuilt binaries:" find "$out" | while read filepath; do - if file "$filepath" | grep -q "ELF.*executable"; then + if file "$filepath" | grep -q "ELF.*executable.*dynamic"; then # skip target firmware files if echo "$filepath" | grep -q "\.elf$"; then continue @@ -50,8 +56,8 @@ stdenv.mkDerivation rec { fi done - patchelf --set-rpath ${stdenv.lib.makeLibraryPath [ libusb ]} \ - "$out/share/arduino/hardware/tools/avrdude" + patchelf --set-rpath ${libPath} \ + "$out/share/arduino/hardware/tools/avr/bin/avrdude_bin" ''; meta = with stdenv.lib; { -- cgit 1.4.1 From 303e9762451cb347e125197759bd7604a8e319a3 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 26 Apr 2016 17:57:13 +0200 Subject: Python: allow installing wheels By passing `format="wheel"` it is now possible to install a wheel. It's not recommended, but it can be useful. --- doc/languages-frameworks/python.md | 1 + .../development/python-modules/generic/default.nix | 77 ++++++++++++++-------- 2 files changed, 51 insertions(+), 27 deletions(-) (limited to 'pkgs/development') diff --git a/doc/languages-frameworks/python.md b/doc/languages-frameworks/python.md index 81da5c7043954..a04ca75a2fbb1 100644 --- a/doc/languages-frameworks/python.md +++ b/doc/languages-frameworks/python.md @@ -534,6 +534,7 @@ All parameters from `mkDerivation` function are still supported. * `postShellHook`: Hook to execute commands after `shellHook`. * `makeWrapperArgs`: A list of strings. Arguments to be passed to `makeWrapper`, which wraps generated binaries. By default, the arguments to `makeWrapper` set `PATH` and `PYTHONPATH` environment variables before calling the binary. Additional arguments here can allow a developer to set environment variables which will be available when the binary is run. For example, `makeWrapperArgs = ["--set FOO BAR" "--set BAZ QUX"]`. * `installFlags`: A list of strings. Arguments to be passed to `pip install`. To pass options to `python setup.py install`, use `--install-option`. E.g., `installFlags=["--install-option='--cpp_implementation'"]. +* `format`: Format of the source. Options are `setup` for when the source has a `setup.py` and `setuptools` is used to build a wheel, and `wheel` in case the source is already a binary wheel. The default value is `setup`. #### `buildPythonApplication` function diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix index 1fdbd4ffc0bd4..b8e1e8cad71b7 100644 --- a/pkgs/development/python-modules/generic/default.nix +++ b/pkgs/development/python-modules/generic/default.nix @@ -21,9 +21,6 @@ # https://github.com/pypa/pip/issues/881 , setupPyBuildFlags ? [] -# enable tests by default -, doCheck ? true - # DEPRECATED: use propagatedBuildInputs , pythonPath ? [] @@ -45,6 +42,8 @@ # Additional flags to pass to "pip install". , installFlags ? [] +, format ? "setup" + , ... } @ attrs: @@ -57,8 +56,51 @@ let # use setuptools shim (so that setuptools is imported before distutils) # pip does the same thing: https://github.com/pypa/pip/pull/3265 setuppy = ./run_setup.py; - # For backwards compatibility, let's use an alias - doInstallCheck = doCheck; + + formatspecific = + if format == "wheel" then + { + unpackPhase = '' + mkdir dist + cp $src dist/"''${src#*-}" + ''; + + # Wheels are pre-compiled + buildPhase = attrs.buildPhase or ":"; + installCheckPhase = attrs.checkPhase or ":"; + + # Wheels don't have any checks to run + doInstallCheck = attrs.doCheck or false; + } + else if format == "setup" then + { + # propagate python/setuptools to active setup-hook in nix-shell + propagatedBuildInputs = + propagatedBuildInputs ++ [ python setuptools ]; + + # we copy nix_run_setup.py over so it's executed relative to the root of the source + # many project make that assumption + buildPhase = attrs.buildPhase or '' + runHook preBuild + cp ${setuppy} nix_run_setup.py + ${python.interpreter} nix_run_setup.py ${lib.optionalString (setupPyBuildFlags != []) ("build_ext " + (lib.concatStringsSep " " setupPyBuildFlags))} bdist_wheel + runHook postBuild + ''; + + installCheckPhase = attrs.checkPhase or '' + runHook preCheck + ${python.interpreter} nix_run_setup.py test + runHook postCheck + ''; + + # We run all tests after software has been installed since that is + # a common idiom in Python + # + # For backwards compatibility, let's use an alias + doInstallCheck = attrs.doCheck or false; + } + else + throw "Unsupported format ${format}"; in python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // { name = namePrefix + name; @@ -67,9 +109,6 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // ++ [ (ensureNewerSourcesHook { year = "1980"; }) ] ++ (lib.optional (lib.hasSuffix "zip" attrs.src.name or "") unzip); - # propagate python/setuptools to active setup-hook in nix-shell - propagatedBuildInputs = propagatedBuildInputs ++ [ python setuptools ]; - pythonPath = pythonPath; configurePhase = attrs.configurePhase or '' @@ -82,14 +121,8 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // runHook postConfigure ''; - # we copy nix_run_setup.py over so it's executed relative to the root of the source - # many project make that assumption - buildPhase = attrs.buildPhase or '' - runHook preBuild - cp ${setuppy} nix_run_setup.py - ${python.interpreter} nix_run_setup.py ${lib.optionalString (setupPyBuildFlags != []) ("build_ext " + (lib.concatStringsSep " " setupPyBuildFlags))} bdist_wheel - runHook postBuild - ''; + # Python packages don't have a checkPhase, only a installCheckPhase + doCheck = false; installPhase = attrs.installPhase or '' runHook preInstall @@ -104,16 +137,6 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // runHook postInstall ''; - # We run all tests after software has been installed since that is - # a common idiom in Python - doInstallCheck = doInstallCheck; - - installCheckPhase = attrs.checkPhase or '' - runHook preCheck - ${python.interpreter} nix_run_setup.py test - runHook postCheck - ''; - postFixup = attrs.postFixup or '' wrapPythonPrograms @@ -143,4 +166,4 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // # a marker for release utilities to discover python packages isBuildPythonPackage = python.meta.platforms; }; -}) +} // formatspecific) -- cgit 1.4.1 From 99b1af9dc0d1cb76781903348a679204084669aa Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 8 May 2016 21:37:23 +0100 Subject: libu2f-host: fix udev rules It was shipping two competing rules. Only use the modern-one. --- pkgs/development/libraries/libu2f-host/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libu2f-host/default.nix b/pkgs/development/libraries/libu2f-host/default.nix index 98dbe517591f3..48d55f17c5794 100644 --- a/pkgs/development/libraries/libu2f-host/default.nix +++ b/pkgs/development/libraries/libu2f-host/default.nix @@ -11,9 +11,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ json_c hidapi ]; + doCheck = true; + postInstall = '' - mkdir -p $out/lib/udev/rules.d/ - cp -v *.rules $out/lib/udev/rules.d/ + install -D -t $out/lib/udev/rules.d 70-u2f.rules ''; meta = with stdenv.lib; { -- cgit 1.4.1 From 099c59ea4e4f6944bdff6b12fefd2b441340a288 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 4 May 2016 05:58:02 -0500 Subject: qt55.qmakeHook: fix error when package builds no libraries --- pkgs/development/libraries/qt-5/5.5/qmake-hook.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh index aa20779f4ec05..425048a593575 100644 --- a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh +++ b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh @@ -57,11 +57,13 @@ _qtMultioutModuleDevs() { # Move libtool archives and qmake project files to $dev/lib if [ "z${!outputLib}" != "z${!outputDev}" ]; then pushd "${!outputLib}" - find lib -name '*.a' -o -name '*.la' -o -name '*.prl' -print0 | \ - while read -r -d $'\0' file; do - mkdir -p "${!outputDev}/$(dirname "$file")" - mv "${!outputLib}/$file" "${!outputDev}/$file" - done + if [ -d "lib" ]; then + find lib -name '*.a' -o -name '*.la' -o -name '*.prl' -print0 | \ + while read -r -d $'\0' file; do + mkdir -p "${!outputDev}/$(dirname "$file")" + mv "${!outputLib}/$file" "${!outputDev}/$file" + done + fi popd fi } -- cgit 1.4.1 From ea90e3e6caa3173bc894cfb6052904517ebcb02c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 2 May 2016 18:50:19 -0500 Subject: qt56: init at 5.6.0 --- pkgs/development/libraries/qt-5/5.6/default.nix | 121 +++++++++ pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh | 47 ++++ .../qt-5/5.6/fix-qt-module-cmake-config.sh | 5 + .../libraries/qt-5/5.6/make-qt-wrapper.sh | 38 +++ pkgs/development/libraries/qt-5/5.6/qmake-hook.sh | 114 +++++++++ .../qt-5/5.6/qtbase/compose-search-path.patch | 16 ++ .../qt-5/5.6/qtbase/decrypt-ssl-traffic.patch | 13 + .../libraries/qt-5/5.6/qtbase/default.nix | 284 +++++++++++++++++++++ .../libraries/qt-5/5.6/qtbase/dlopen-dbus.patch | 13 + .../libraries/qt-5/5.6/qtbase/dlopen-gl.patch | 17 ++ .../qt-5/5.6/qtbase/dlopen-gtkstyle.patch | 50 ++++ .../qt-5/5.6/qtbase/dlopen-libXcursor.patch | 17 ++ .../libraries/qt-5/5.6/qtbase/dlopen-openssl.patch | 26 ++ .../libraries/qt-5/5.6/qtbase/dlopen-resolv.patch | 26 ++ .../libraries/qt-5/5.6/qtbase/libressl.patch | 33 +++ .../libraries/qt-5/5.6/qtbase/mkspecs-libgl.patch | 15 ++ .../5.6/qtbase/nix-profiles-library-paths.patch | 22 ++ pkgs/development/libraries/qt-5/5.6/qtbase/series | 9 + .../libraries/qt-5/5.6/qtbase/setup-hook.sh | 52 ++++ .../libraries/qt-5/5.6/qtbase/tzdir.patch | 40 +++ .../qt-5/5.6/qtbase/xdg-config-dirs.patch | 42 +++ .../libraries/qt-5/5.6/qtconnectivity.nix | 10 + .../libraries/qt-5/5.6/qtdeclarative/default.nix | 14 + .../qtdeclarative/nix-profiles-import-paths.patch | 20 ++ .../libraries/qt-5/5.6/qtdeclarative/series | 1 + pkgs/development/libraries/qt-5/5.6/qtdoc.nix | 6 + pkgs/development/libraries/qt-5/5.6/qtenginio.nix | 9 + .../libraries/qt-5/5.6/qtgraphicaleffects.nix | 6 + .../libraries/qt-5/5.6/qtimageformats.nix | 6 + pkgs/development/libraries/qt-5/5.6/qtlocation.nix | 10 + .../libraries/qt-5/5.6/qtmultimedia.nix | 16 ++ .../libraries/qt-5/5.6/qtquickcontrols.nix | 6 + .../qt-5/5.6/qtscript/0001-glib-2.32.patch | 25 ++ .../libraries/qt-5/5.6/qtscript/default.nix | 10 + pkgs/development/libraries/qt-5/5.6/qtsensors.nix | 9 + .../qtserialport/0001-dlopen-serialport-udev.patch | 28 ++ .../libraries/qt-5/5.6/qtserialport/default.nix | 15 ++ pkgs/development/libraries/qt-5/5.6/qtsvg.nix | 9 + pkgs/development/libraries/qt-5/5.6/qttools.nix | 16 ++ .../libraries/qt-5/5.6/qttranslations.nix | 6 + .../libraries/qt-5/5.6/qtwebsockets.nix | 9 + .../development/libraries/qt-5/5.6/qtx11extras.nix | 9 + .../libraries/qt-5/5.6/qtxmlpatterns.nix | 9 + pkgs/development/libraries/qt-5/5.6/srcs.nix | 261 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 + 45 files changed, 1514 insertions(+) create mode 100644 pkgs/development/libraries/qt-5/5.6/default.nix create mode 100755 pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh create mode 100644 pkgs/development/libraries/qt-5/5.6/fix-qt-module-cmake-config.sh create mode 100644 pkgs/development/libraries/qt-5/5.6/make-qt-wrapper.sh create mode 100644 pkgs/development/libraries/qt-5/5.6/qmake-hook.sh create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/compose-search-path.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/decrypt-ssl-traffic.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-dbus.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gl.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gtkstyle.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-libXcursor.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-openssl.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-resolv.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/libressl.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/mkspecs-libgl.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/nix-profiles-library-paths.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/series create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/setup-hook.sh create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/tzdir.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/xdg-config-dirs.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtconnectivity.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtdeclarative/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtdeclarative/nix-profiles-import-paths.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtdeclarative/series create mode 100644 pkgs/development/libraries/qt-5/5.6/qtdoc.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtenginio.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtgraphicaleffects.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtimageformats.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtlocation.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtmultimedia.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtquickcontrols.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtscript/0001-glib-2.32.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtscript/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtsensors.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtserialport/0001-dlopen-serialport-udev.patch create mode 100644 pkgs/development/libraries/qt-5/5.6/qtserialport/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtsvg.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qttools.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qttranslations.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtwebsockets.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtx11extras.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/qtxmlpatterns.nix create mode 100644 pkgs/development/libraries/qt-5/5.6/srcs.nix (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/qt-5/5.6/default.nix b/pkgs/development/libraries/qt-5/5.6/default.nix new file mode 100644 index 0000000000000..b74b2debf0e2b --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/default.nix @@ -0,0 +1,121 @@ +/* + +# Minor Updates + +1. Edit ./fetchsrcs.sh to point to the updated URL. +2. Run ./fetchsrcs.sh. +3. Build and enjoy. + +# Major Updates + +1. Make a copy of this directory. (We like to keep the old version around + for a short time after major updates.) +2. Delete the tmp/ subdirectory of the copy. +3. Follow the minor update instructions above. +4. Package any new Qt modules, if necessary. + +*/ + +{ pkgs + +# options +, developerBuild ? false +, decryptSslTraffic ? false +}: + +let inherit (pkgs) makeSetupHook makeWrapper stdenv; in + +with stdenv.lib; + +let + + mirror = "http://download.qt.io"; + srcs = import ./srcs.nix { inherit mirror; inherit (pkgs) fetchurl; }; + + qtSubmodule = args: + let + inherit (args) name; + version = args.version or srcs."${name}".version; + src = args.src or srcs."${name}".src; + inherit (pkgs.stdenv) mkDerivation; + in mkDerivation (args // { + name = "${name}-${version}"; + inherit src; + + propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []); + nativeBuildInputs = + (args.nativeBuildInputs or []) + ++ [ pkgs.perl self.fixQtModuleCMakeConfig self.qmakeHook ]; + + NIX_QT_SUBMODULE = args.NIX_QT_SUBMODULE or true; + + outputs = args.outputs or [ "dev" "out" ]; + setOutputFlags = args.setOutputFlags or false; + + enableParallelBuilding = args.enableParallelBuilding or true; + + meta = self.qtbase.meta // (args.meta or {}); + }); + + addPackages = self: with self; + let + callPackage = self.newScope { inherit qtSubmodule srcs; }; + in { + + qtbase = callPackage ./qtbase { + mesa = pkgs.mesa_noglu; + harfbuzz = pkgs.harfbuzz-icu; + cups = if stdenv.isLinux then pkgs.cups else null; + # GNOME dependencies are not used unless gtkStyle == true + inherit (pkgs.gnome) libgnomeui GConf gnome_vfs; + bison = pkgs.bison2; # error: too few arguments to function 'int yylex(... + inherit developerBuild decryptSslTraffic; + }; + + /* qt3d = not packaged */ + /* qtactiveqt = not packaged */ + /* qtandroidextras = not packaged */ + /* qtcanvas3d = not packaged */ + qtconnectivity = callPackage ./qtconnectivity.nix {}; + qtdeclarative = callPackage ./qtdeclarative {}; + qtdoc = callPackage ./qtdoc.nix {}; + qtenginio = callPackage ./qtenginio.nix {}; + qtgraphicaleffects = callPackage ./qtgraphicaleffects.nix {}; + qtimageformats = callPackage ./qtimageformats.nix {}; + qtlocation = callPackage ./qtlocation.nix {}; + /* qtmacextras = not packaged */ + qtmultimedia = callPackage ./qtmultimedia.nix { + inherit (pkgs.gst_all_1) gstreamer gst-plugins-base; + }; + qtquickcontrols = callPackage ./qtquickcontrols.nix {}; + qtscript = callPackage ./qtscript {}; + qtsensors = callPackage ./qtsensors.nix {}; + qtserialport = callPackage ./qtserialport {}; + qtsvg = callPackage ./qtsvg.nix {}; + qttools = callPackage ./qttools.nix {}; + qttranslations = callPackage ./qttranslations.nix {}; + /* qtwayland = not packaged */ + /* qtwebchannel = not packaged */ + /* qtwebengine = not packaged */ + qtwebsockets = callPackage ./qtwebsockets.nix {}; + /* qtwinextras = not packaged */ + qtx11extras = callPackage ./qtx11extras.nix {}; + qtxmlpatterns = callPackage ./qtxmlpatterns.nix {}; + + env = callPackage ../qt-env.nix {}; + full = env "qt-${qtbase.version}" [ + qtconnectivity qtdeclarative qtdoc qtenginio qtgraphicaleffects + qtimageformats qtlocation qtmultimedia qtquickcontrols qtscript + qtsensors qtserialport qtsvg qttools qttranslations qtwebsockets + qtx11extras qtxmlpatterns + ]; + + makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh; + fixQtModuleCMakeConfig = makeSetupHook { } ./fix-qt-module-cmake-config.sh; + qmakeHook = makeSetupHook { substitutions = { qt_dev = qtbase.dev; lndir = pkgs.xorg.lndir; }; } ./qmake-hook.sh; + + }; + + self = makeScope pkgs.newScope addPackages; + +in self diff --git a/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh b/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh new file mode 100755 index 0000000000000..c499c70ea2ca0 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh @@ -0,0 +1,47 @@ +#! /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.qt.io/official_releases/qt/5.6/5.6.0/submodules/" +EXTRA_WGET_ARGS='-A *.tar.xz' + +mkdir tmp; cd tmp + +wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS + +cat >../srcs.nix <>../srcs.nix <>../srcs.nix + +cd .. diff --git a/pkgs/development/libraries/qt-5/5.6/fix-qt-module-cmake-config.sh b/pkgs/development/libraries/qt-5/5.6/fix-qt-module-cmake-config.sh new file mode 100644 index 0000000000000..7ca3e33b613c2 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/fix-qt-module-cmake-config.sh @@ -0,0 +1,5 @@ +fixQtModuleCMakeConfig() { + local module="$1" + sed -e "/set(imported_location/ s@\\\${_qt5${module}_install_prefix}@${!outputLib}@" \ + -i "${!outputDev}/lib/cmake/Qt5${module}/Qt5${module}Config.cmake" +} diff --git a/pkgs/development/libraries/qt-5/5.6/make-qt-wrapper.sh b/pkgs/development/libraries/qt-5/5.6/make-qt-wrapper.sh new file mode 100644 index 0000000000000..3b537430371a8 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/make-qt-wrapper.sh @@ -0,0 +1,38 @@ +wrapQtProgram() { + local prog="$1" + shift + wrapProgram "$prog" \ + --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ + --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ + --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ + --prefix XDG_CONFIG_DIRS : "$NIX_WRAP_XDG_CONFIG_DIRS" \ + --prefix XDG_DATA_DIRS : "$NIX_WRAP_XDG_DATA_DIRS" \ + "$@" +} + +makeQtWrapper() { + local old="$1" + local new="$2" + shift + shift + makeWrapper "$old" "$new" \ + --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ + --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ + --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ + --prefix XDG_CONFIG_DIRS : "$NIX_WRAP_XDG_CONFIG_DIRS" \ + --prefix XDG_DATA_DIRS : "$NIX_WRAP_XDG_DATA_DIRS" \ + "$@" +} + +_makeQtWrapperSetup() { + # cannot use addToSearchPath because these directories may not exist yet + export QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}${!outputLib}/lib/qt5/plugins" + export QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}${!outputLib}/lib/qt5/imports" + export QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}${!outputLib}/lib/qt5/qml" + export XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS${XDG_CONFIG_DIRS:+:}${!outputLib}/etc/xdg" + export XDG_DATA_DIRS="$XDG_DATA_DIRS${XDG_DATA_DIRS:+:}${!outputLib}/share" + export NIX_WRAP_XDG_CONFIG_DIRS="$NIX_WRAP_XDG_CONFIG_DIRS${NIX_WRAP_XDG_CONFIG_DIRS:+:}${!outputLib}/etc/xdg" + export NIX_WRAP_XDG_DATA_DIRS="$NIX_WRAP_XDG_DATA_DIRS${NIX_WRAP_XDG_DATA_DIRS:+:}${!outputLib}/share" +} + +prePhases+=(_makeQtWrapperSetup) diff --git a/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh new file mode 100644 index 0000000000000..425048a593575 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh @@ -0,0 +1,114 @@ +if [[ -z "$QMAKE" ]]; then + +_qtLinkDependencyDir() { + @lndir@/bin/lndir -silent "$1/$2" "$qtOut/$2" + if [ -n "$NIX_QT_SUBMODULE" ]; then + find "$1/$2" -printf "$2/%P\n" >> "$out/nix-support/qt-inputs" + fi +} + +_qtLinkModule() { + if [ -d "$1/mkspecs" ]; then + # $1 is a Qt module + _qtLinkDependencyDir "$1" mkspecs + + for dir in bin include lib share; do + if [ -d "$1/$dir" ]; then + _qtLinkDependencyDir "$1" "$dir" + fi + done + fi +} + +_qtRmModules() { + cat "$out/nix-support/qt-inputs" | while read file; do + if [ -h "$out/$file" ]; then + rm "$out/$file" + fi + done + + cat "$out/nix-support/qt-inputs" | while read file; do + if [ -d "$out/$file" ]; then + rmdir --ignore-fail-on-non-empty -p "$out/$file" + fi + done + + rm "$out/nix-support/qt-inputs" +} + +_qtRmQmake() { + rm "$qtOut/bin/qmake" "$qtOut/bin/qt.conf" +} + +_qtSetQmakePath() { + export PATH="$qtOut/bin${PATH:+:}$PATH" +} + +_qtMultioutModuleDevs() { + # We cannot simply set these paths in configureFlags because libQtCore retains + # references to the paths it was built with. + moveToOutput "bin" "${!outputDev}" + moveToOutput "include" "${!outputDev}" + + # The destination directory must exist or moveToOutput will do nothing + mkdir -p "${!outputDev}/share" + moveToOutput "share/doc" "${!outputDev}" + + # Move libtool archives and qmake project files to $dev/lib + if [ "z${!outputLib}" != "z${!outputDev}" ]; then + pushd "${!outputLib}" + if [ -d "lib" ]; then + find lib -name '*.a' -o -name '*.la' -o -name '*.prl' -print0 | \ + while read -r -d $'\0' file; do + mkdir -p "${!outputDev}/$(dirname "$file")" + mv "${!outputLib}/$file" "${!outputDev}/$file" + done + fi + popd + fi +} + +qmakeConfigurePhase() { + runHook preConfigure + + qmake PREFIX=$out $qmakeFlags + + runHook postConfigure +} + +qtOut="" +if [[ -z "$NIX_QT_SUBMODULE" ]]; then + qtOut=`mktemp -d` +else + qtOut=$out +fi + +mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share" + +cp "@qt_dev@/bin/qmake" "$qtOut/bin" +cat >"$qtOut/bin/qt.conf" <.gitmodules + ''; + + prefixKey = "-prefix "; + + # -no-eglfs, -no-directfb, -no-linuxfb and -no-kms because of the current minimalist mesa + # TODO Remove obsolete and useless flags once the build will be totally mastered + configureFlags = '' + -verbose + -confirm-license + -opensource + + -release + -shared + -c++11 + ${lib.optionalString developerBuild "-developer-build"} + -largefile + -accessibility + -rpath + -optimized-qmake + -strip + -reduce-relocations + -system-proxies + -pkg-config + + -gui + -widgets + -opengl desktop + -qml-debug + -nis + -iconv + -icu + -pch + -glib + -xcb + -qpa xcb + -${lib.optionalString (cups == null) "no-"}cups + -${lib.optionalString (!gtkStyle) "no-"}gtkstyle + + -no-eglfs + -no-directfb + -no-linuxfb + -no-kms + + ${lib.optionalString (!system-x86_64) "-no-sse2"} + -no-sse3 + -no-ssse3 + -no-sse4.1 + -no-sse4.2 + -no-avx + -no-avx2 + -no-mips_dsp + -no-mips_dspr2 + + -system-zlib + -system-libpng + -system-libjpeg + -system-harfbuzz + -system-xcb + -system-xkbcommon + -system-pcre + -openssl-linked + -dbus-linked + + -system-sqlite + -${if mysql != null then "plugin" else "no"}-sql-mysql + -${if postgresql != null then "plugin" else "no"}-sql-psql + + -make libs + -make tools + -${lib.optionalString (buildExamples == false) "no"}make examples + -${lib.optionalString (buildTests == false) "no"}make tests + ''; + + # PostgreSQL autodetection fails sporadically because Qt omits the "-lpq" flag + # if dependency paths contain the string "pq", which can occur in the hash. + # To prevent these failures, we need to override PostgreSQL detection. + PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql.lib}/lib -lpq"; + + propagatedBuildInputs = [ + dbus glib libxml2 libxslt openssl pcre16 sqlite udev zlib + + # Image formats + libjpeg libpng libtiff + + # Text rendering + fontconfig freetype harfbuzz icu + + # X11 libs + xlibs.libXcomposite libX11 libxcb libXext libXrender libXi + xcbutil xcbutilimage xcbutilkeysyms xcbutilwm libxkbcommon + ] + ++ lib.optional mesaSupported mesa; + + buildInputs = + [ bison flex gperf ruby ] + ++ lib.optional developerBuild gdb + ++ lib.optional (cups != null) cups + ++ lib.optional (mysql != null) mysql.lib + ++ lib.optional (postgresql != null) postgresql + ++ lib.optionals gtkStyle [gnome_vfs.out libgnomeui.out gtk GConf]; + + nativeBuildInputs = [ fixQtModuleCMakeConfig lndir patchelf perl pkgconfig python ]; + + # freetype-2.5.4 changed signedness of some struct fields + NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; + + preFixup = '' + # We cannot simply set these paths in configureFlags because libQtCore retains + # references to the paths it was built with. + moveToOutput "bin" "$dev" + moveToOutput "include" "$dev" + moveToOutput "mkspecs" "$dev" + + # The destination directory must exist or moveToOutput will do nothing + mkdir -p "$dev/share" + moveToOutput "share/doc" "$dev" + + # Move libtool archives and qmake projects + if [ "z''${!outputLib}" != "z''${!outputDev}" ]; then + pushd "''${!outputLib}" + find lib -name '*.a' -o -name '*.la' -o -name '*.prl' | \ + while read -r file; do + mkdir -p "''${!outputDev}/$(dirname "$file")" + mv "''${!outputLib}/$file" "''${!outputDev}/$file" + done + popd + fi + + # Move the QGtkStyle plugin to the gtk output + mkdir -p "$gtk/lib/qt5/plugins/platformthemes" + mv "$out/lib/qt5/plugins/platformthemes/libqgtk2.so" "$gtk/lib/qt5/plugins/platformthemes" + rm "$out/lib/cmake/Qt5Gui/Qt5Gui_QGtk2ThemePlugin.cmake" + + # Set RPATH for QGtkStyle plugin + qgtk2="$gtk/lib/qt5/plugins/platformthemes/libqgtk2.so" + qgtk2_RPATH="$(patchelf --print-rpath "$qgtk2")" + qgtk2_RPATH="$qgtk2_RPATH''${qgtk2_RPATH:+:}${gtkLibPath}" + patchelf "$qgtk2" \ + --add-needed libgtk-x11-2.0.so \ + --add-needed libgnomeui-2.so \ + --add-needed libgnomevfs-2.so \ + --add-needed libgconf-2.so \ + --set-rpath "$qgtk2_RPATH" + ''; + + postFixup = + '' + # Don't retain build-time dependencies like gdb and ruby. + sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $dev/mkspecs/qconfig.pri + + fixQtModuleCMakeConfig "Concurrent" + fixQtModuleCMakeConfig "Core" + fixQtModuleCMakeConfig "DBus" + fixQtModuleCMakeConfig "Gui" + fixQtModuleCMakeConfig "Network" + fixQtModuleCMakeConfig "OpenGL" + fixQtModuleCMakeConfig "OpenGLExtensions" + fixQtModuleCMakeConfig "PrintSupport" + fixQtModuleCMakeConfig "Sql" + fixQtModuleCMakeConfig "Test" + fixQtModuleCMakeConfig "Widgets" + fixQtModuleCMakeConfig "Xml" + ''; + + setupHook = ./setup-hook.sh; + + enableParallelBuilding = true; + + meta = with lib; { + homepage = http://www.qt.io; + description = "A cross-platform application framework for C++"; + license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ]; + maintainers = with maintainers; [ bbenoist qknight ttuegel ]; + platforms = platforms.linux; + }; + +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-dbus.patch new file mode 100644 index 0000000000000..401cfd5c295eb --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-dbus.patch @@ -0,0 +1,13 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/dbus/qdbus_symbols.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/dbus/qdbus_symbols.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/dbus/qdbus_symbols.cpp +@@ -89,7 +89,7 @@ bool qdbus_loadLibDBus() + #ifdef Q_OS_WIN + QLatin1String("dbus-1"), + #endif +- QLatin1String("libdbus-1") ++ QLatin1String("@dbus_libs@/lib/libdbus-1") + }; + + lib->unload(); diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gl.patch new file mode 100644 index 0000000000000..59f510ac54dab --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gl.patch @@ -0,0 +1,17 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp +@@ -563,7 +563,12 @@ void (*QGLXContext::getProcAddress(const + { + extern const QString qt_gl_library_name(); + // QLibrary lib(qt_gl_library_name()); ++ // Check system library paths first + QLibrary lib(QLatin1String("GL")); ++ if (!lib.load()) { ++ // Fallback to Mesa driver ++ lib.setFileName(QLatin1String("@mesa_lib@/lib/libGL")); ++ } + glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); + } + } diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gtkstyle.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gtkstyle.patch new file mode 100644 index 0000000000000..ad1719c46e298 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gtkstyle.patch @@ -0,0 +1,50 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtk2painter.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/widgets/styles/qgtk2painter.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtk2painter.cpp +@@ -96,7 +96,7 @@ static void initGtk() + static bool initialized = false; + if (!initialized) { + // enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0 +- QLibrary libgtk(QLS("gtk-x11-2.0"), 0, 0); ++ QLibrary libgtk(QLS("@gtk@/lib/libgtk-x11-2.0"), 0, 0); + + QGtk2PainterPrivate::gdk_pixmap_new = (Ptr_gdk_pixmap_new)libgtk.resolve("gdk_pixmap_new"); + QGtk2PainterPrivate::gdk_pixbuf_get_from_drawable = (Ptr_gdk_pixbuf_get_from_drawable)libgtk.resolve("gdk_pixbuf_get_from_drawable"); +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtkstyle_p.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/widgets/styles/qgtkstyle_p.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtkstyle_p.cpp +@@ -327,7 +327,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus + void QGtkStylePrivate::resolveGtk() const + { + // enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0 +- QLibrary libgtk(QLS("gtk-x11-2.0"), 0, 0); ++ QLibrary libgtk(QLS("@gtk@/lib/libgtk-x11-2.0"), 0, 0); + + gtk_init = (Ptr_gtk_init)libgtk.resolve("gtk_init"); + gtk_window_new = (Ptr_gtk_window_new)libgtk.resolve("gtk_window_new"); +@@ -425,8 +425,8 @@ void QGtkStylePrivate::resolveGtk() cons + pango_font_description_get_family = (Ptr_pango_font_description_get_family)libgtk.resolve("pango_font_description_get_family"); + pango_font_description_get_style = (Ptr_pango_font_description_get_style)libgtk.resolve("pango_font_description_get_style"); + +- gnome_icon_lookup_sync = (Ptr_gnome_icon_lookup_sync)QLibrary::resolve(QLS("gnomeui-2"), 0, "gnome_icon_lookup_sync"); +- gnome_vfs_init= (Ptr_gnome_vfs_init)QLibrary::resolve(QLS("gnomevfs-2"), 0, "gnome_vfs_init"); ++ gnome_icon_lookup_sync = (Ptr_gnome_icon_lookup_sync)QLibrary::resolve(QLS("@libgnomeui@/lib/libgnomeui-2"), 0, "gnome_icon_lookup_sync"); ++ gnome_vfs_init= (Ptr_gnome_vfs_init)QLibrary::resolve(QLS("@gnome_vfs@/lib/libgnomevfs-2"), 0, "gnome_vfs_init"); + } + + /* \internal +@@ -594,9 +594,9 @@ void QGtkStylePrivate::cleanupGtkWidgets + static bool resolveGConf() + { + if (!QGtkStylePrivate::gconf_client_get_default) { +- QGtkStylePrivate::gconf_client_get_default = (Ptr_gconf_client_get_default)QLibrary::resolve(QLS("gconf-2"), 4, "gconf_client_get_default"); +- QGtkStylePrivate::gconf_client_get_string = (Ptr_gconf_client_get_string)QLibrary::resolve(QLS("gconf-2"), 4, "gconf_client_get_string"); +- QGtkStylePrivate::gconf_client_get_bool = (Ptr_gconf_client_get_bool)QLibrary::resolve(QLS("gconf-2"), 4, "gconf_client_get_bool"); ++ QGtkStylePrivate::gconf_client_get_default = (Ptr_gconf_client_get_default)QLibrary::resolve(QLS("@gconf@/lib/libgconf-2"), 4, "gconf_client_get_default"); ++ QGtkStylePrivate::gconf_client_get_string = (Ptr_gconf_client_get_string)QLibrary::resolve(QLS("@gconf@/lib/libgconf-2"), 4, "gconf_client_get_string"); ++ QGtkStylePrivate::gconf_client_get_bool = (Ptr_gconf_client_get_bool)QLibrary::resolve(QLS("@gconf@/lib/libgconf-2"), 4, "gconf_client_get_bool"); + } + return (QGtkStylePrivate::gconf_client_get_default !=0); + } diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-libXcursor.patch new file mode 100644 index 0000000000000..d3b5b631be766 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-libXcursor.patch @@ -0,0 +1,17 @@ +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp +@@ -303,10 +303,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *c + #if defined(XCB_USE_XLIB) && !defined(QT_NO_LIBRARY) + static bool function_ptrs_not_initialized = true; + if (function_ptrs_not_initialized) { +- QLibrary xcursorLib(QLatin1String("Xcursor"), 1); ++ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1); + bool xcursorFound = xcursorLib.load(); + if (!xcursorFound) { // try without the version number +- xcursorLib.setFileName(QLatin1String("Xcursor")); ++ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor")); + xcursorFound = xcursorLib.load(); + } + if (xcursorFound) { diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-openssl.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-openssl.patch new file mode 100644 index 0000000000000..f51fa44faaf55 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-openssl.patch @@ -0,0 +1,26 @@ +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp +@@ -652,8 +652,8 @@ static QPair loadO + #endif + #if defined(SHLIB_VERSION_NUMBER) && !defined(Q_OS_QNX) // on QNX, the libs are always libssl.so and libcrypto.so + // first attempt: the canonical name is libssl.so. +- libssl->setFileNameAndVersion(QLatin1String("ssl"), QLatin1String(SHLIB_VERSION_NUMBER)); +- libcrypto->setFileNameAndVersion(QLatin1String("crypto"), QLatin1String(SHLIB_VERSION_NUMBER)); ++ libssl->setFileNameAndVersion(QLatin1String("@openssl@/lib/libssl"), QLatin1String(SHLIB_VERSION_NUMBER)); ++ libcrypto->setFileNameAndVersion(QLatin1String("@openssl@/lib/libcrypto"), QLatin1String(SHLIB_VERSION_NUMBER)); + if (libcrypto->load() && libssl->load()) { + // libssl.so. and libcrypto.so. found + return pair; +@@ -670,8 +670,8 @@ static QPair loadO + // OS X's /usr/lib/libssl.dylib, /usr/lib/libcrypto.dylib will be picked up in the third + // attempt, _after_ /Contents/Frameworks has been searched. + // iOS does not ship a system libssl.dylib, libcrypto.dylib in the first place. +- libssl->setFileNameAndVersion(QLatin1String("ssl"), -1); +- libcrypto->setFileNameAndVersion(QLatin1String("crypto"), -1); ++ libssl->setFileNameAndVersion(QLatin1String("@openssl@/lib/libssl"), -1); ++ libcrypto->setFileNameAndVersion(QLatin1String("@openssl@/lib/libcrypto"), -1); + if (libcrypto->load() && libssl->load()) { + // libssl.so.0 and libcrypto.so.0 found + return pair; diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-resolv.patch new file mode 100644 index 0000000000000..3e9b9ca2b08a2 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-resolv.patch @@ -0,0 +1,26 @@ +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/network/kernel/qdnslookup_unix.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/network/kernel/qdnslookup_unix.cpp ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/network/kernel/qdnslookup_unix.cpp +@@ -79,7 +79,7 @@ static void resolveLibrary() + if (!lib.load()) + #endif + { +- lib.setFileName(QLatin1String("resolv")); ++ lib.setFileName(QLatin1String("@glibc@/lib/resolv")); + if (!lib.load()) + return; + } +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/network/kernel/qhostinfo_unix.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/network/kernel/qhostinfo_unix.cpp ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/network/kernel/qhostinfo_unix.cpp +@@ -95,7 +95,7 @@ static void resolveLibrary() + if (!lib.load()) + #endif + { +- lib.setFileName(QLatin1String("resolv")); ++ lib.setFileName(QLatin1String("@glibc@/lib/libresolv")); + if (!lib.load()) + return; + } diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/libressl.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/libressl.patch new file mode 100644 index 0000000000000..a05d55c8640ad --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/libressl.patch @@ -0,0 +1,33 @@ +From 81494e67eccba04fc3fe554d76a9ca6fe7f2250e Mon Sep 17 00:00:00 2001 +From: hasufell +Date: Sat, 10 Oct 2015 01:15:01 +0200 +Subject: [PATCH] Fix compilation with libressl + +By additionally checking for defined(SSL_CTRL_SET_CURVES), which +is defined in openssl, but not in libressl. +--- + src/network/ssl/qsslcontext_openssl.cpp | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/network/ssl/qsslcontext_openssl.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/network/ssl/qsslcontext_openssl.cpp ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/network/ssl/qsslcontext_openssl.cpp +@@ -340,7 +340,7 @@ init_context: + + const QVector qcurves = sslContext->sslConfiguration.ellipticCurves(); + if (!qcurves.isEmpty()) { +-#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(OPENSSL_NO_EC) ++#if OPENSSL_VERSION_NUMBER >= 0x10002000L && defined(SSL_CTRL_SET_CURVES) && !defined(OPENSSL_NO_EC) + // Set the curves to be used + if (q_SSLeay() >= 0x10002000L) { + // SSL_CTX_ctrl wants a non-const pointer as last argument, +@@ -354,7 +354,7 @@ init_context: + return sslContext; + } + } else +-#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(OPENSSL_NO_EC) ++#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L && defined(SSL_CTRL_SET_CURVES) && !defined(OPENSSL_NO_EC) + { + // specific curves requested, but not possible to set -> error + sslContext->errorStr = msgErrorSettingEllipticCurves(QSslSocket::tr("OpenSSL version too old, need at least v1.0.2")); diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/mkspecs-libgl.patch new file mode 100644 index 0000000000000..56ee0a411d4d8 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/mkspecs-libgl.patch @@ -0,0 +1,15 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/mkspecs/common/linux.conf ++++ qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf +@@ -12,8 +12,8 @@ QMAKE_INCDIR = + QMAKE_LIBDIR = + QMAKE_INCDIR_X11 = + QMAKE_LIBDIR_X11 = +-QMAKE_INCDIR_OPENGL = +-QMAKE_LIBDIR_OPENGL = ++QMAKE_INCDIR_OPENGL = @mesa_inc@/include ++QMAKE_LIBDIR_OPENGL = @mesa_lib@/lib + QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL + QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL + QMAKE_INCDIR_EGL = diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/nix-profiles-library-paths.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/nix-profiles-library-paths.patch new file mode 100644 index 0000000000000..b2aad140ad0f2 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/nix-profiles-library-paths.patch @@ -0,0 +1,22 @@ +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/kernel/qcoreapplication.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/corelib/kernel/qcoreapplication.cpp ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/kernel/qcoreapplication.cpp +@@ -2533,7 +2533,17 @@ QStringList QCoreApplication::libraryPat + QStringList *app_libpaths = new QStringList; + coreappdata()->app_libpaths.reset(app_libpaths); + ++ // Add library paths derived from NIX_PROFILES. ++ const QByteArrayList profiles = qgetenv("NIX_PROFILES").split(' '); ++ const QString plugindir = QString::fromLatin1("/lib/qt5/plugins"); ++ Q_FOREACH (const QByteArray &profile, profiles) { ++ if (!profile.isEmpty()) { ++ app_libpaths->append(QFile::decodeName(profile) + plugindir); ++ } ++ } ++ + const QByteArray libPathEnv = qgetenv("QT_PLUGIN_PATH"); ++ qunsetenv("QT_PLUGIN_PATH"); // do not propagate to child processes + if (!libPathEnv.isEmpty()) { + QStringList paths = QFile::decodeName(libPathEnv).split(QDir::listSeparator(), QString::SkipEmptyParts); + for (QStringList::const_iterator it = paths.constBegin(); it != paths.constEnd(); ++it) { diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/series b/pkgs/development/libraries/qt-5/5.6/qtbase/series new file mode 100644 index 0000000000000..2196d83837527 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/series @@ -0,0 +1,9 @@ +dlopen-resolv.patch +tzdir.patch +dlopen-libXcursor.patch +dlopen-openssl.patch +dlopen-dbus.patch +xdg-config-dirs.patch +nix-profiles-library-paths.patch +compose-search-path.patch +libressl.patch diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/setup-hook.sh b/pkgs/development/libraries/qt-5/5.6/qtbase/setup-hook.sh new file mode 100644 index 0000000000000..a9c4fbc855f77 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/setup-hook.sh @@ -0,0 +1,52 @@ +addToSearchPathOnceWithCustomDelimiter() { + local delim="$1" + local search="$2" + local target="$3" + local dirs + local exported + IFS="$delim" read -a dirs <<< "${!search}" + local canonical + if canonical=$(readlink -e "$target"); then + for dir in ${dirs[@]}; do + if [ "z$dir" == "z$canonical" ]; then exported=1; fi + done + if [ -z $exported ]; then + eval "export ${search}=\"${!search}${!search:+$delim}$canonical\"" + fi + fi +} + +addToSearchPathOnce() { + addToSearchPathOnceWithCustomDelimiter ':' "$@" +} + +propagateOnce() { + addToSearchPathOnceWithCustomDelimiter ' ' "$@" +} + +_qtPropagateRuntimeDependencies() { + for dir in "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports"; do + if [ -d "$1/$dir" ]; then + propagateOnce propagatedBuildInputs "$1" + propagateOnce propagatedUserEnvPkgs "$1" + break + fi + done + addToSearchPathOnce QT_PLUGIN_PATH "$1/lib/qt5/plugins" + addToSearchPathOnce QML_IMPORT_PATH "$1/lib/qt5/imports" + addToSearchPathOnce QML2_IMPORT_PATH "$1/lib/qt5/qml" +} + +envHooks+=(_qtPropagateRuntimeDependencies) + +_qtMultioutDevs() { + # This is necessary whether the package is a Qt module or not + moveToOutput "mkspecs" "${!outputDev}" +} + +preFixupHooks+=(_qtMultioutDevs) + +if [[ -z "$NIX_QT_PIC" ]]; then + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE${NIX_CFLAGS_COMPILE:+ }-fPIC" + export NIX_QT_PIC=1 +fi diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/tzdir.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/tzdir.patch new file mode 100644 index 0000000000000..1c0541bdc2ad6 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/tzdir.patch @@ -0,0 +1,40 @@ +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp +@@ -62,7 +62,10 @@ typedef QHash Q + // Parse zone.tab table, assume lists all installed zones, if not will need to read directories + static QTzTimeZoneHash loadTzTimeZones() + { +- QString path = QStringLiteral("/usr/share/zoneinfo/zone.tab"); ++ QString path = qgetenv("TZDIR"); ++ path += "/zone.tab"; ++ if (!QFile::exists(path)) ++ path = QStringLiteral("/usr/share/zoneinfo/zone.tab"); + if (!QFile::exists(path)) + path = QStringLiteral("/usr/lib/zoneinfo/zone.tab"); + +@@ -560,12 +563,18 @@ void QTzTimeZonePrivate::init(const QByt + if (!tzif.open(QIODevice::ReadOnly)) + return; + } else { +- // Open named tz, try modern path first, if fails try legacy path +- tzif.setFileName(QLatin1String("/usr/share/zoneinfo/") + QString::fromLocal8Bit(ianaId)); ++ // Try TZDIR first ++ QString zoneinfoDir = qgetenv("TZDIR"); ++ zoneinfoDir += "/" + QString::fromLocal8Bit(ianaId); ++ tzif.setFileName(zoneinfoDir); + if (!tzif.open(QIODevice::ReadOnly)) { +- tzif.setFileName(QLatin1String("/usr/lib/zoneinfo/") + QString::fromLocal8Bit(ianaId)); +- if (!tzif.open(QIODevice::ReadOnly)) +- return; ++ // Open named tz, try modern path first, if fails try legacy path ++ tzif.setFileName(QLatin1String("/usr/share/zoneinfo/") + QString::fromLocal8Bit(ianaId)); ++ if (!tzif.open(QIODevice::ReadOnly)) { ++ tzif.setFileName(QLatin1String("/usr/lib/zoneinfo/") + QString::fromLocal8Bit(ianaId)); ++ if (!tzif.open(QIODevice::ReadOnly)) ++ return; ++ } + } + } + diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/xdg-config-dirs.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/xdg-config-dirs.patch new file mode 100644 index 0000000000000..ff4ad82ea8f8d --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/xdg-config-dirs.patch @@ -0,0 +1,42 @@ +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/io/qsettings.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/corelib/io/qsettings.cpp ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/io/qsettings.cpp +@@ -1155,6 +1155,24 @@ QConfFileSettingsPrivate::QConfFileSetti + if (!application.isEmpty()) + confFiles[F_System | F_Application].reset(QConfFile::fromName(systemPath + appFile, false)); + confFiles[F_System | F_Organization].reset(QConfFile::fromName(systemPath + orgFile, false)); ++ ++#if !defined(Q_OS_WIN) ++ // Add directories specified in $XDG_CONFIG_DIRS ++ const QString pathEnv = QString::fromLocal8Bit(getenv("XDG_CONFIG_DIRS")); ++ if (!pathEnv.isEmpty()) { ++ const QStringList pathEntries = pathEnv.split(QLatin1Char(':'), QString::SkipEmptyParts); ++ if (!pathEntries.isEmpty()) { ++ int j = 4; // This is the number of confFiles set above -- we need to start adding $XDG_CONFIG_DIRS after those. ++ for (int k = 0; k < pathEntries.size() && j < NumConfFiles - 1; ++k) { ++ const QString& path = pathEntries.at(k); ++ if (!application.isEmpty()) ++ confFiles[j++].reset(QConfFile::fromName(path + QDir::separator() + appFile, false)); ++ confFiles[j++].reset(QConfFile::fromName(path + QDir::separator() + orgFile, false)); ++ } ++ } ++ } ++#endif ++ + #else + QString confName = getPath(format, QSettings::UserScope) + org; + if (!application.isEmpty()) +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/io/qsettings_p.h +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/corelib/io/qsettings_p.h ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/io/qsettings_p.h +@@ -241,7 +241,7 @@ public: + F_Organization = 0x1, + F_User = 0x0, + F_System = 0x2, +- NumConfFiles = 4 ++ NumConfFiles = 40 // HACK: increase NumConfFiles from 4 to 40 in order to accommodate more paths in $XDG_CONFIG_DIRS -- ellis + #else + SandboxConfFile = 0, + NumConfFiles = 1 diff --git a/pkgs/development/libraries/qt-5/5.6/qtconnectivity.nix b/pkgs/development/libraries/qt-5/5.6/qtconnectivity.nix new file mode 100644 index 0000000000000..35538c7261f1d --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtconnectivity.nix @@ -0,0 +1,10 @@ +{ qtSubmodule, qtbase, qtdeclarative }: + +qtSubmodule { + name = "qtconnectivity"; + qtInputs = [ qtbase qtdeclarative ]; + postFixup = '' + fixQtModuleCMakeConfig "Bluetooth" + fixQtModuleCMakeConfig "Nfc" + ''; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtdeclarative/default.nix b/pkgs/development/libraries/qt-5/5.6/qtdeclarative/default.nix new file mode 100644 index 0000000000000..407513f784989 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtdeclarative/default.nix @@ -0,0 +1,14 @@ +{ qtSubmodule, lib, copyPathsToStore, python, qtbase, qtsvg, qtxmlpatterns }: + +qtSubmodule { + name = "qtdeclarative"; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + qtInputs = [ qtbase qtsvg qtxmlpatterns ]; + nativeBuildInputs = [ python ]; + postFixup = '' + fixQtModuleCMakeConfig "Qml" + fixQtModuleCMakeConfig "Quick" + fixQtModuleCMakeConfig "QuickTest" + fixQtModuleCMakeConfig "QuickWidgets" + ''; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtdeclarative/nix-profiles-import-paths.patch b/pkgs/development/libraries/qt-5/5.6/qtdeclarative/nix-profiles-import-paths.patch new file mode 100644 index 0000000000000..06b244b974ffe --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtdeclarative/nix-profiles-import-paths.patch @@ -0,0 +1,20 @@ +Index: qtdeclarative-opensource-src-5.5.1/src/qml/qml/qqmlimport.cpp +=================================================================== +--- qtdeclarative-opensource-src-5.5.1.orig/src/qml/qml/qqmlimport.cpp ++++ qtdeclarative-opensource-src-5.5.1/src/qml/qml/qqmlimport.cpp +@@ -1549,6 +1549,15 @@ QQmlImportDatabase::QQmlImportDatabase(Q + QString installImportsPath = QLibraryInfo::location(QLibraryInfo::Qml2ImportsPath); + addImportPath(installImportsPath); + ++ // Add library paths derived from NIX_PROFILES. ++ const QByteArrayList profiles = qgetenv("NIX_PROFILES").split(' '); ++ const QString qmldir = QString::fromLatin1("/lib/qt5/qml"); ++ Q_FOREACH (const QByteArray &profile, profiles) { ++ if (!profile.isEmpty()) { ++ addImportPath(QFile::decodeName(profile) + qmldir); ++ } ++ } ++ + // env import paths + QByteArray envImportPath = qgetenv("QML2_IMPORT_PATH"); + if (!envImportPath.isEmpty()) { diff --git a/pkgs/development/libraries/qt-5/5.6/qtdeclarative/series b/pkgs/development/libraries/qt-5/5.6/qtdeclarative/series new file mode 100644 index 0000000000000..7dbe197c56e01 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtdeclarative/series @@ -0,0 +1 @@ +nix-profiles-import-paths.patch diff --git a/pkgs/development/libraries/qt-5/5.6/qtdoc.nix b/pkgs/development/libraries/qt-5/5.6/qtdoc.nix new file mode 100644 index 0000000000000..578ea6ba0b226 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtdoc.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtdeclarative }: + +qtSubmodule { + name = "qtdoc"; + qtInputs = [ qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtenginio.nix b/pkgs/development/libraries/qt-5/5.6/qtenginio.nix new file mode 100644 index 0000000000000..503a0f7ce4f55 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtenginio.nix @@ -0,0 +1,9 @@ +{ qtSubmodule, qtdeclarative }: + +qtSubmodule { + name = "qtenginio"; + qtInputs = [ qtdeclarative ]; + postFixup = '' + fixQtModuleCMakeConfig "Enginio" + ''; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtgraphicaleffects.nix b/pkgs/development/libraries/qt-5/5.6/qtgraphicaleffects.nix new file mode 100644 index 0000000000000..3273f12eb8302 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtgraphicaleffects.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtdeclarative }: + +qtSubmodule { + name = "qtgraphicaleffects"; + qtInputs = [ qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtimageformats.nix b/pkgs/development/libraries/qt-5/5.6/qtimageformats.nix new file mode 100644 index 0000000000000..03d0fffbe80e1 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtimageformats.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtimageformats"; + qtInputs = [ qtbase ]; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtlocation.nix b/pkgs/development/libraries/qt-5/5.6/qtlocation.nix new file mode 100644 index 0000000000000..0e2ad8bafb30d --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtlocation.nix @@ -0,0 +1,10 @@ +{ qtSubmodule, qtbase, qtmultimedia }: + +qtSubmodule { + name = "qtlocation"; + qtInputs = [ qtbase qtmultimedia ]; + postFixup = '' + fixQtModuleCMakeConfig "Location" + fixQtModuleCMakeConfig "Positioning" + ''; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtmultimedia.nix b/pkgs/development/libraries/qt-5/5.6/qtmultimedia.nix new file mode 100644 index 0000000000000..9eb68ba6b5ba2 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtmultimedia.nix @@ -0,0 +1,16 @@ +{ qtSubmodule, qtbase, qtdeclarative, pkgconfig +, alsaLib, gstreamer, gst-plugins-base, libpulseaudio +}: + +qtSubmodule { + name = "qtmultimedia"; + qtInputs = [ qtbase qtdeclarative ]; + buildInputs = [ + pkgconfig alsaLib gstreamer gst-plugins-base libpulseaudio + ]; + qmakeFlags = [ "GST_VERSION=1.0" ]; + postFixup = '' + fixQtModuleCMakeConfig "Multimedia" + fixQtModuleCMakeConfig "MultimediaWidgets" + ''; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtquickcontrols.nix b/pkgs/development/libraries/qt-5/5.6/qtquickcontrols.nix new file mode 100644 index 0000000000000..93a864621b824 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtquickcontrols.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtdeclarative }: + +qtSubmodule { + name = "qtquickcontrols"; + qtInputs = [ qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtscript/0001-glib-2.32.patch b/pkgs/development/libraries/qt-5/5.6/qtscript/0001-glib-2.32.patch new file mode 100644 index 0000000000000..887e107b6c1b2 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtscript/0001-glib-2.32.patch @@ -0,0 +1,25 @@ +From abd80356449bb36c8adcc5c9ca1df6b47715d265 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sun, 23 Aug 2015 09:13:34 -0500 +Subject: [PATCH] glib-2.32 + +--- + src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h +index 1f6d25e..087c3fb 100644 +--- a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h ++++ b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h +@@ -81,7 +81,7 @@ + #include + #elif PLATFORM(GTK) + #include +-typedef struct _GMutex GMutex; ++typedef union _GMutex GMutex; + typedef struct _GCond GCond; + #endif + +-- +2.5.0 + diff --git a/pkgs/development/libraries/qt-5/5.6/qtscript/default.nix b/pkgs/development/libraries/qt-5/5.6/qtscript/default.nix new file mode 100644 index 0000000000000..b81a43aeadb04 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtscript/default.nix @@ -0,0 +1,10 @@ +{ qtSubmodule, qtbase, qttools }: + +qtSubmodule { + name = "qtscript"; + qtInputs = [ qtbase qttools ]; + patches = [ ./0001-glib-2.32.patch ]; + postFixup = '' + fixQtModuleCMakeConfig "Script" + ''; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtsensors.nix b/pkgs/development/libraries/qt-5/5.6/qtsensors.nix new file mode 100644 index 0000000000000..5776f45a70689 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtsensors.nix @@ -0,0 +1,9 @@ +{ qtSubmodule, qtbase, qtdeclarative }: + +qtSubmodule { + name = "qtsensors"; + qtInputs = [ qtbase qtdeclarative ]; + postFixup = '' + fixQtModuleCMakeConfig "Sensors" + ''; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtserialport/0001-dlopen-serialport-udev.patch b/pkgs/development/libraries/qt-5/5.6/qtserialport/0001-dlopen-serialport-udev.patch new file mode 100644 index 0000000000000..3a813dc800745 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtserialport/0001-dlopen-serialport-udev.patch @@ -0,0 +1,28 @@ +From d81c2c870b9bea8fb8e6b85baefb06542f568338 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sun, 23 Aug 2015 09:16:02 -0500 +Subject: [PATCH] dlopen serialport udev + +--- + src/serialport/qtudev_p.h | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/serialport/qtudev_p.h b/src/serialport/qtudev_p.h +index 6f2cabd..81b9849 100644 +--- a/src/serialport/qtudev_p.h ++++ b/src/serialport/qtudev_p.h +@@ -105,9 +105,9 @@ inline QFunctionPointer resolveSymbol(QLibrary *udevLibrary, const char *symbolN + inline bool resolveSymbols(QLibrary *udevLibrary) + { + if (!udevLibrary->isLoaded()) { +- udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 1); ++ udevLibrary->setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 1); + if (!udevLibrary->load()) { +- udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 0); ++ udevLibrary->setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 0); + if (!udevLibrary->load()) { + qWarning("Failed to load the library: %s, supported version(s): %i and %i", qPrintable(udevLibrary->fileName()), 1, 0); + return false; +-- +2.5.0 + diff --git a/pkgs/development/libraries/qt-5/5.6/qtserialport/default.nix b/pkgs/development/libraries/qt-5/5.6/qtserialport/default.nix new file mode 100644 index 0000000000000..3f409f9c0e084 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtserialport/default.nix @@ -0,0 +1,15 @@ +{ qtSubmodule, qtbase, substituteAll, libudev }: + +qtSubmodule { + name = "qtserialport"; + qtInputs = [ qtbase ]; + patches = [ + (substituteAll { + src = ./0001-dlopen-serialport-udev.patch; + libudev = libudev.out; + }) + ]; + postFixup = '' + fixQtModuleCMakeConfig "SerialPort" + ''; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtsvg.nix b/pkgs/development/libraries/qt-5/5.6/qtsvg.nix new file mode 100644 index 0000000000000..a460d6da4c2ad --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtsvg.nix @@ -0,0 +1,9 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtsvg"; + qtInputs = [ qtbase ]; + postFixup = '' + fixQtModuleCMakeConfig "Svg" + ''; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qttools.nix b/pkgs/development/libraries/qt-5/5.6/qttools.nix new file mode 100644 index 0000000000000..1472691c52547 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qttools.nix @@ -0,0 +1,16 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qttools"; + qtInputs = [ qtbase ]; + postFixup = '' + moveToOutput "bin/qdbus" "$out" + moveToOutput "bin/qtpaths" "$out" + + fixQtModuleCMakeConfig "Designer" + fixQtModuleCMakeConfig "Help" + fixQtModuleCMakeConfig "LinguistTools" + fixQtModuleCMakeConfig "UiPlugin" + fixQtModuleCMakeConfig "UiTools" + ''; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qttranslations.nix b/pkgs/development/libraries/qt-5/5.6/qttranslations.nix new file mode 100644 index 0000000000000..50fc8cf6826a0 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qttranslations.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qttools }: + +qtSubmodule { + name = "qttranslations"; + qtInputs = [ qttools ]; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtwebsockets.nix b/pkgs/development/libraries/qt-5/5.6/qtwebsockets.nix new file mode 100644 index 0000000000000..c0d0f9e7d714e --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtwebsockets.nix @@ -0,0 +1,9 @@ +{ qtSubmodule, qtbase, qtdeclarative }: + +qtSubmodule { + name = "qtwebsockets"; + qtInputs = [ qtbase qtdeclarative ]; + postFixup = '' + fixQtModuleCMakeConfig "WebSockets" + ''; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtx11extras.nix b/pkgs/development/libraries/qt-5/5.6/qtx11extras.nix new file mode 100644 index 0000000000000..db92f1353627d --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtx11extras.nix @@ -0,0 +1,9 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtx11extras"; + qtInputs = [ qtbase ]; + postFixup = '' + fixQtModuleCMakeConfig "X11Extras" + ''; +} diff --git a/pkgs/development/libraries/qt-5/5.6/qtxmlpatterns.nix b/pkgs/development/libraries/qt-5/5.6/qtxmlpatterns.nix new file mode 100644 index 0000000000000..3b22132e4c38e --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtxmlpatterns.nix @@ -0,0 +1,9 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtxmlpatterns"; + qtInputs = [ qtbase ]; + postFixup = '' + fixQtModuleCMakeConfig "XmlPatterns" + ''; +} diff --git a/pkgs/development/libraries/qt-5/5.6/srcs.nix b/pkgs/development/libraries/qt-5/5.6/srcs.nix new file mode 100644 index 0000000000000..9ddbbbde078f0 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/srcs.nix @@ -0,0 +1,261 @@ +# DO NOT EDIT! This file is generated automatically by manifest.sh +{ fetchurl, mirror }: + +{ + qttools = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qttools-opensource-src-5.6.0.tar.xz"; + sha256 = "1791c9a1vxv0q2ywr00ya5rxaggidsq81s8h8fwmql75pdhlq90d"; + name = "qttools-opensource-src-5.6.0.tar.xz"; + }; + }; + qtwebengine = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebengine-opensource-src-5.6.0.tar.xz"; + sha256 = "00vaqx3mypqlnjkfwhx54r6ygfs07amkwc4rma0sg64zdjnvb8la"; + name = "qtwebengine-opensource-src-5.6.0.tar.xz"; + }; + }; + qtserialbus = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtserialbus-opensource-src-5.6.0.tar.xz"; + sha256 = "13hbmj9pilh5gkbbngfbp225qvc650pnzvpzawpnf69zwl757jlc"; + name = "qtserialbus-opensource-src-5.6.0.tar.xz"; + }; + }; + qtwayland = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwayland-opensource-src-5.6.0.tar.xz"; + sha256 = "1k5zsgz54wlkxm3ici55lbbz286bk2791vri02bjgja5y9102pdm"; + name = "qtwayland-opensource-src-5.6.0.tar.xz"; + }; + }; + qt5 = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qt5-opensource-src-5.6.0.tar.xz"; + sha256 = "195dl9pk9slbiy6mgwwpc70vaw62sdhxc3lxmlnyddk99widqa3k"; + name = "qt5-opensource-src-5.6.0.tar.xz"; + }; + }; + qtimageformats = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtimageformats-opensource-src-5.6.0.tar.xz"; + sha256 = "1nmsh682idxl0642q7376r9qfxkx0736q9pl4jx179c9lrsl519c"; + name = "qtimageformats-opensource-src-5.6.0.tar.xz"; + }; + }; + qtactiveqt = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtactiveqt-opensource-src-5.6.0.tar.xz"; + sha256 = "0xrjr9jwkxxcv46a8vj77px3v1p36nm6rpvyxma0wb4xhpippp3a"; + name = "qtactiveqt-opensource-src-5.6.0.tar.xz"; + }; + }; + qtdoc = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtdoc-opensource-src-5.6.0.tar.xz"; + sha256 = "1z69yl8nkvp21arjhzl34gr8gvxm5b03d58lwnddl4mkaxbi4vap"; + name = "qtdoc-opensource-src-5.6.0.tar.xz"; + }; + }; + qtsensors = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtsensors-opensource-src-5.6.0.tar.xz"; + sha256 = "0blwqmkh0hn1716d5fvy0vnh56y9iikl34ayz6ksl0ayxhpkk3si"; + name = "qtsensors-opensource-src-5.6.0.tar.xz"; + }; + }; + qtwebchannel = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebchannel-opensource-src-5.6.0.tar.xz"; + sha256 = "0ky1njksczyfb7y7p5kfgzbx9vgajzy51g2y3vrpfvl6bs9j8m62"; + name = "qtwebchannel-opensource-src-5.6.0.tar.xz"; + }; + }; + qtmacextras = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtmacextras-opensource-src-5.6.0.tar.xz"; + sha256 = "1jkmwppapvymdr1kwdrbjlxhcafcn4jb23ssnhrvvgcq3lnl5lhj"; + name = "qtmacextras-opensource-src-5.6.0.tar.xz"; + }; + }; + qtwebsockets = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebsockets-opensource-src-5.6.0.tar.xz"; + sha256 = "17vi3n27gx3f3c2lii3b70pzz6mpblam3236v6mj439xzrlvi2i6"; + name = "qtwebsockets-opensource-src-5.6.0.tar.xz"; + }; + }; + qtconnectivity = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtconnectivity-opensource-src-5.6.0.tar.xz"; + sha256 = "1ss0ibabiv7n5hakkxmkc4msrwgqcvfffdjajnv5jrq0030v0p0c"; + name = "qtconnectivity-opensource-src-5.6.0.tar.xz"; + }; + }; + qtscript = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtscript-opensource-src-5.6.0.tar.xz"; + sha256 = "0hjhkh4lia1i0iir1i8dr57gizi74h73j0phhir3q3wsglcpax5c"; + name = "qtscript-opensource-src-5.6.0.tar.xz"; + }; + }; + qttranslations = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qttranslations-opensource-src-5.6.0.tar.xz"; + sha256 = "0jfdfj2z0nvf1xblmdxaphn0psjycrb5g3jxxcddkci214gka2cq"; + name = "qttranslations-opensource-src-5.6.0.tar.xz"; + }; + }; + qtlocation = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtlocation-opensource-src-5.6.0.tar.xz"; + sha256 = "1jakjrwic01b5vyij6hfzdfpipandpkj9li3d7wf9bzws0cia3in"; + name = "qtlocation-opensource-src-5.6.0.tar.xz"; + }; + }; + qtserialport = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtserialport-opensource-src-5.6.0.tar.xz"; + sha256 = "07rwhmh9y7b3ycvx4d4d1j32nahf8nhsb9qj99kxz5xrdfv7zvhn"; + name = "qtserialport-opensource-src-5.6.0.tar.xz"; + }; + }; + qtsvg = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtsvg-opensource-src-5.6.0.tar.xz"; + sha256 = "07v4bzxd31dhkhp52y4g2ii0sslmk48cqkkz32v41frqj4qrk1vr"; + name = "qtsvg-opensource-src-5.6.0.tar.xz"; + }; + }; + qtwebview = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebview-opensource-src-5.6.0.tar.xz"; + sha256 = "0mqbh125bq37xybwslhri4pl861r26cnraiz9ivh4881kqzab3x4"; + name = "qtwebview-opensource-src-5.6.0.tar.xz"; + }; + }; + qtcanvas3d = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtcanvas3d-opensource-src-5.6.0.tar.xz"; + sha256 = "1kwykm1ffgpjgb3ggd4h2d2x3yhp9jsc0gnwlks620bahagdbbb6"; + name = "qtcanvas3d-opensource-src-5.6.0.tar.xz"; + }; + }; + qtwinextras = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwinextras-opensource-src-5.6.0.tar.xz"; + sha256 = "14xvm081wjyild2wi7pcilqxdkhc8b0lf9yn7yf7zp576i9ir5aq"; + name = "qtwinextras-opensource-src-5.6.0.tar.xz"; + }; + }; + qtgraphicaleffects = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtgraphicaleffects-opensource-src-5.6.0.tar.xz"; + sha256 = "1s0n8hrmrfs53cmm7i45p8zavvmsl0aisd5sgj93p8c5rzyi3s81"; + name = "qtgraphicaleffects-opensource-src-5.6.0.tar.xz"; + }; + }; + qtxmlpatterns = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtxmlpatterns-opensource-src-5.6.0.tar.xz"; + sha256 = "1m0rr0m9zg2d6rdban2p5qyx8rdnjnjsfk3bm72bh47hscxipvds"; + name = "qtxmlpatterns-opensource-src-5.6.0.tar.xz"; + }; + }; + qtquickcontrols2 = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtquickcontrols2-opensource-src-5.6.0.tar.xz"; + sha256 = "1q7yp7l32jd3p28587ldxzkj58z1aad9gcs80w6vqc9952i6xv2r"; + name = "qtquickcontrols2-opensource-src-5.6.0.tar.xz"; + }; + }; + qtbase = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtbase-opensource-src-5.6.0.tar.xz"; + sha256 = "0ynnvcs5idivzldsq5ciqg9myg82b3l3906l4vjv54lyamf8mykf"; + name = "qtbase-opensource-src-5.6.0.tar.xz"; + }; + }; + qt3d = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qt3d-opensource-src-5.6.0.tar.xz"; + sha256 = "17a37xhav5mxspx2c9wsgvcilv7ys40q6minmlqd1gnfmsfphqdr"; + name = "qt3d-opensource-src-5.6.0.tar.xz"; + }; + }; + qtenginio = { + version = "1.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtenginio-opensource-src-1.6.0.tar.xz"; + sha256 = "033z2jncci64s7s9ml5rsfsnrkdmhx1g5dfvr61imv63pzxxqzb2"; + name = "qtenginio-opensource-src-1.6.0.tar.xz"; + }; + }; + qtx11extras = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtx11extras-opensource-src-5.6.0.tar.xz"; + sha256 = "099lc7kxcxgp5s01ddnd6n955fc8866caark43xfs2dw0a6pdva7"; + name = "qtx11extras-opensource-src-5.6.0.tar.xz"; + }; + }; + qtdeclarative = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtdeclarative-opensource-src-5.6.0.tar.xz"; + sha256 = "0k70zlyx1nh35caiav4s3jvg5l029pvilm6sarxmfj73y19z0mcc"; + name = "qtdeclarative-opensource-src-5.6.0.tar.xz"; + }; + }; + qtmultimedia = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtmultimedia-opensource-src-5.6.0.tar.xz"; + sha256 = "11h66xcr3y3w8hhvx801r66yirvf1kppasjlhm25qvr6rpb9jgqh"; + name = "qtmultimedia-opensource-src-5.6.0.tar.xz"; + }; + }; + qtquickcontrols = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtquickcontrols-opensource-src-5.6.0.tar.xz"; + sha256 = "12vqkxpz5y2bbh083lpsxcianykl8x7am49pmc4x221a5xwrc27c"; + name = "qtquickcontrols-opensource-src-5.6.0.tar.xz"; + }; + }; + qtandroidextras = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtandroidextras-opensource-src-5.6.0.tar.xz"; + sha256 = "1qhrn8vhfn0z73bc2ls1b4zfvr7r5gn7b5xdmjp26hi338j55vp0"; + name = "qtandroidextras-opensource-src-5.6.0.tar.xz"; + }; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e9fc634bf2014..027fc21857f21 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8702,6 +8702,10 @@ in let imported = import ../development/libraries/qt-5/5.5 { inherit pkgs; }; in recurseIntoAttrs (imported.override (super: qt5LibsFun)); + qt56 = + let imported = import ../development/libraries/qt-5/5.6 { inherit pkgs; }; + in recurseIntoAttrs (imported.override (super: qt5LibsFun)); + qt5 = self.qt54; qt5LibsFun = self: with self; { -- cgit 1.4.1 From 7c77230224e8bc27482eb6ecaf6f7bc048d1571f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 4 May 2016 07:44:10 -0500 Subject: Remove Qt 5.4.2 --- pkgs/development/libraries/qt-5/5.4/default.nix | 116 ---------- pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh | 47 ---- .../qt-5/5.4/fix-qt-module-cmake-config.sh | 5 - .../libraries/qt-5/5.4/make-qt-wrapper.sh | 42 ---- pkgs/development/libraries/qt-5/5.4/qmake-hook.sh | 101 -------- .../qt-5/5.4/qtbase/compose-search-path.patch | 16 -- .../qt-5/5.4/qtbase/decrypt-ssl-traffic.patch | 13 -- .../libraries/qt-5/5.4/qtbase/default.nix | 254 --------------------- .../libraries/qt-5/5.4/qtbase/dlopen-dbus.patch | 13 -- .../libraries/qt-5/5.4/qtbase/dlopen-gl.patch | 17 -- .../qt-5/5.4/qtbase/dlopen-gtkstyle.patch | 50 ---- .../qt-5/5.4/qtbase/dlopen-libXcursor.patch | 17 -- .../libraries/qt-5/5.4/qtbase/dlopen-openssl.patch | 26 --- .../libraries/qt-5/5.4/qtbase/dlopen-resolv.patch | 26 --- .../libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch | 15 -- .../5.4/qtbase/nix-profiles-library-paths.patch | 26 --- pkgs/development/libraries/qt-5/5.4/qtbase/series | 8 - .../libraries/qt-5/5.4/qtbase/setup-hook.sh | 52 ----- .../libraries/qt-5/5.4/qtbase/tzdir.patch | 40 ---- .../qt-5/5.4/qtbase/xdg-config-dirs.patch | 42 ---- .../libraries/qt-5/5.4/qtconnectivity.nix | 10 - .../0001-nix-profiles-import-paths.patch | 37 --- .../libraries/qt-5/5.4/qtdeclarative/default.nix | 14 -- pkgs/development/libraries/qt-5/5.4/qtdoc.nix | 6 - pkgs/development/libraries/qt-5/5.4/qtenginio.nix | 9 - .../libraries/qt-5/5.4/qtgraphicaleffects.nix | 6 - .../libraries/qt-5/5.4/qtimageformats.nix | 6 - pkgs/development/libraries/qt-5/5.4/qtlocation.nix | 10 - .../libraries/qt-5/5.4/qtmultimedia.nix | 16 -- .../qtquick1/0001-nix-profiles-import-paths.patch | 37 --- .../libraries/qt-5/5.4/qtquick1/default.nix | 10 - .../libraries/qt-5/5.4/qtquickcontrols.nix | 6 - .../qt-5/5.4/qtscript/0001-glib-2.32.patch | 25 -- .../libraries/qt-5/5.4/qtscript/default.nix | 10 - pkgs/development/libraries/qt-5/5.4/qtsensors.nix | 9 - .../qtserialport/0001-dlopen-serialport-udev.patch | 28 --- .../libraries/qt-5/5.4/qtserialport/default.nix | 16 -- pkgs/development/libraries/qt-5/5.4/qtsvg.nix | 9 - pkgs/development/libraries/qt-5/5.4/qttools.nix | 15 -- .../libraries/qt-5/5.4/qttranslations.nix | 6 - .../libraries/qt-5/5.4/qtwebkit-examples.nix | 6 - .../5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch | 53 ----- .../qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch | 25 -- .../5.4/qtwebkit/0003-dlopen-webkit-udev.patch | 31 --- .../libraries/qt-5/5.4/qtwebkit/default.nix | 38 --- .../libraries/qt-5/5.4/qtwebsockets.nix | 9 - .../development/libraries/qt-5/5.4/qtx11extras.nix | 9 - .../libraries/qt-5/5.4/qtxmlpatterns.nix | 9 - pkgs/development/libraries/qt-5/5.4/srcs.nix | 245 -------------------- pkgs/top-level/all-packages.nix | 4 - 50 files changed, 1640 deletions(-) delete mode 100644 pkgs/development/libraries/qt-5/5.4/default.nix delete mode 100755 pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh delete mode 100644 pkgs/development/libraries/qt-5/5.4/fix-qt-module-cmake-config.sh delete mode 100644 pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh delete mode 100644 pkgs/development/libraries/qt-5/5.4/qmake-hook.sh delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/compose-search-path.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/decrypt-ssl-traffic.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/default.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-dbus.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gtkstyle.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-openssl.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/series delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/tzdir.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/xdg-config-dirs.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtdoc.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtenginio.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtimageformats.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtlocation.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtscript/default.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtsensors.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtserialport/0001-dlopen-serialport-udev.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtsvg.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qttools.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qttranslations.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtx11extras.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/srcs.nix (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/qt-5/5.4/default.nix b/pkgs/development/libraries/qt-5/5.4/default.nix deleted file mode 100644 index 950129ba54132..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/default.nix +++ /dev/null @@ -1,116 +0,0 @@ -# Maintainer's Notes: -# -# Minor updates: -# 1. Edit ./fetchsrcs.sh to point to the updated URL. -# 2. Run ./fetchsrcs.sh. -# 3. Build and enjoy. -# -# Major updates: -# We prefer not to immediately overwrite older versions with major updates, so -# make a copy of this directory first. After copying, be sure to delete ./tmp -# if it exists. Then follow the minor update instructions. Be sure to check if -# any new components have been added and package them as necessary. - -{ pkgs - -# options -, developerBuild ? false -, decryptSslTraffic ? false -}: - -let inherit (pkgs) makeSetupHook makeWrapper stdenv; in - -with stdenv.lib; - -let - - mirror = "http://download.qt.io"; - srcs = import ./srcs.nix { inherit mirror; inherit (pkgs) fetchurl; }; - - qtSubmodule = args: - let - inherit (args) name; - inherit (srcs."${args.name}") version src; - inherit (pkgs.stdenv) mkDerivation; - in mkDerivation (args // { - name = "${name}-${version}"; - inherit src; - - propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []); - nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ self.fixQtModuleCMakeConfig self.qmakeHook ]; - - NIX_QT_SUBMODULE = args.NIX_QT_SUBMODULE or true; - dontFixLibtool = args.dontFixLibtool or true; - - outputs = args.outputs or [ "dev" "out" ]; - setOutputFlags = false; - - enableParallelBuilding = args.enableParallelBuilding or true; - - meta = self.qtbase.meta // (args.meta or {}); - }); - - addPackages = self: with self; - let - callPackage = self.newScope { inherit qtSubmodule srcs; }; - in { - - qtbase = callPackage ./qtbase { - mesa = pkgs.mesa_noglu; - cups = if stdenv.isLinux then pkgs.cups else null; - # GNOME dependencies are not used unless gtkStyle == true - inherit (pkgs.gnome) libgnomeui GConf gnome_vfs; - bison = pkgs.bison2; # error: too few arguments to function 'int yylex(... - inherit developerBuild decryptSslTraffic; - }; - - /* qt3d = not packaged */ - /* qtactiveqt = not packaged */ - /* qtandroidextras = not packaged */ - /* qtcanvas3d = not packaged */ - qtconnectivity = callPackage ./qtconnectivity.nix {}; - qtdeclarative = callPackage ./qtdeclarative {}; - qtdoc = callPackage ./qtdoc.nix {}; - qtenginio = callPackage ./qtenginio.nix {}; - qtgraphicaleffects = callPackage ./qtgraphicaleffects.nix {}; - qtimageformats = callPackage ./qtimageformats.nix {}; - qtlocation = callPackage ./qtlocation.nix {}; - /* qtmacextras = not packaged */ - qtmultimedia = callPackage ./qtmultimedia.nix { - inherit (pkgs.gst_all_1) gstreamer gst-plugins-base; - }; - qtquick1 = callPackage ./qtquick1 {}; - qtquickcontrols = callPackage ./qtquickcontrols.nix {}; - qtscript = callPackage ./qtscript {}; - qtsensors = callPackage ./qtsensors.nix {}; - qtserialport = callPackage ./qtserialport {}; - qtsvg = callPackage ./qtsvg.nix {}; - qttools = callPackage ./qttools.nix {}; - qttranslations = callPackage ./qttranslations.nix {}; - /* qtwayland = not packaged */ - /* qtwebchannel = not packaged */ - /* qtwebengine = not packaged */ - qtwebkit = callPackage ./qtwebkit {}; - qtwebkit-examples = callPackage ./qtwebkit-examples.nix {}; - qtwebsockets = callPackage ./qtwebsockets.nix {}; - /* qtwinextras = not packaged */ - qtx11extras = callPackage ./qtx11extras.nix {}; - qtxmlpatterns = callPackage ./qtxmlpatterns.nix {}; - - env = callPackage ../qt-env.nix {}; - full = env "qt-${qtbase.version}" [ - qtconnectivity qtdeclarative qtdoc qtenginio qtgraphicaleffects qtimageformats - qtlocation qtmultimedia qtquick1 qtquickcontrols qtscript qtsensors qtserialport - qtsvg qttools qttranslations qtwebkit qtwebkit-examples qtwebsockets qtx11extras - qtxmlpatterns - ]; - - makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh; - fixQtModuleCMakeConfig = makeSetupHook { } ./fix-qt-module-cmake-config.sh; - qmakeHook = makeSetupHook { substitutions = { qt_dev = qtbase.dev; lndir = pkgs.xorg.lndir; }; } ./qmake-hook.sh; - - }; - - self = makeScope pkgs.newScope addPackages; - -in self diff --git a/pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh b/pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh deleted file mode 100755 index 0fd5bb8d5fee8..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh +++ /dev/null @@ -1,47 +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.qt.io/official_releases/qt/5.4/5.4.2/submodules/" -EXTRA_WGET_ARGS='-A *.tar.xz' - -mkdir tmp; cd tmp - -wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS - -cat >../srcs.nix <>../srcs.nix <>../srcs.nix - -cd .. diff --git a/pkgs/development/libraries/qt-5/5.4/fix-qt-module-cmake-config.sh b/pkgs/development/libraries/qt-5/5.4/fix-qt-module-cmake-config.sh deleted file mode 100644 index 7ca3e33b613c2..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/fix-qt-module-cmake-config.sh +++ /dev/null @@ -1,5 +0,0 @@ -fixQtModuleCMakeConfig() { - local module="$1" - sed -e "/set(imported_location/ s@\\\${_qt5${module}_install_prefix}@${!outputLib}@" \ - -i "${!outputDev}/lib/cmake/Qt5${module}/Qt5${module}Config.cmake" -} diff --git a/pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh b/pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh deleted file mode 100644 index d61665455bf45..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh +++ /dev/null @@ -1,42 +0,0 @@ -addQtDependency() { - addToSearchPath QT_PLUGIN_PATH "$1/lib/qt5/plugins" - addToSearchPath QML_IMPORT_PATH "$1/lib/qt5/imports" - addToSearchPath QML2_IMPORT_PATH "$1/lib/qt5/qml" - addToSearchPath XDG_CONFIG_DIRS "$1/etc/xdg" - addToSearchPath XDG_DATA_DIRS "$1/share" -} - -wrapQtProgram() { - local prog="$1" - shift - wrapProgram "$prog" \ - --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ - --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ - --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ - --prefix XDG_CONFIG_DIRS : "$XDG_CONFIG_DIRS" \ - --prefix XDG_DATA_DIRS : "$XDG_DATA_DIRS" \ - "$@" -} - -makeQtWrapper() { - local old="$1" - local new="$2" - shift - shift - makeWrapper "$old" "$new" \ - --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ - --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ - --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ - --prefix XDG_CONFIG_DIRS : "$XDG_CONFIG_DIRS" \ - --prefix XDG_DATA_DIRS : "$XDG_DATA_DIRS" \ - "$@" -} - -# cannot use addToSearchPath because these directories may not exist yet -export QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}$out/lib/qt5/plugins" -export QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}$out/lib/qt5/imports" -export QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}$out/lib/qt5/qml" -export XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS${XDG_CONFIG_DIRS:+:}$out/etc/xdg" -export XDG_DATA_DIRS="$XDG_DATA_DIRS${XDG_DATA_DIRS:+:}$out/share" - -envHooks+=(addQtDependency) diff --git a/pkgs/development/libraries/qt-5/5.4/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.4/qmake-hook.sh deleted file mode 100644 index a38f9f578e383..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qmake-hook.sh +++ /dev/null @@ -1,101 +0,0 @@ -if [[ -z "$QMAKE" ]]; then - -_qtLinkDependencyDir() { - @lndir@/bin/lndir -silent "$1/$2" "$qtOut/$2" - if [ -n "$NIX_QT_SUBMODULE" ]; then - find "$1/$2" -printf "$2/%P\n" >> "$out/nix-support/qt-inputs" - fi -} - -_qtLinkModule() { - if [ -d "$1/mkspecs" ]; then - # $1 is a Qt module - _qtLinkDependencyDir "$1" mkspecs - - for dir in bin include lib share; do - if [ -d "$1/$dir" ]; then - _qtLinkDependencyDir "$1" "$dir" - fi - done - fi -} - -_qtRmModules() { - cat "$out/nix-support/qt-inputs" | while read file; do - if [ -h "$out/$file" ]; then - rm "$out/$file" - fi - done - - cat "$out/nix-support/qt-inputs" | while read file; do - if [ -d "$out/$file" ]; then - rmdir --ignore-fail-on-non-empty -p "$out/$file" - fi - done - - rm "$out/nix-support/qt-inputs" -} - -_qtRmQmake() { - rm "$qtOut/bin/qmake" "$qtOut/bin/qt.conf" -} - -_qtSetQmakePath() { - export PATH="$qtOut/bin${PATH:+:}$PATH" -} - -_qtMultioutModuleDevs() { - # We cannot simply set these paths in configureFlags because libQtCore retains - # references to the paths it was built with. - moveToOutput "bin" "${!outputDev}" - moveToOutput "include" "${!outputDev}" - - # The destination directory must exist or moveToOutput will do nothing - mkdir -p "${!outputDev}/share" - moveToOutput "share/doc" "${!outputDev}" -} - -qmakeConfigurePhase() { - runHook preConfigure - - qmake PREFIX=$out $qmakeFlags - - runHook postConfigure -} - -qtOut="" -if [[ -z "$NIX_QT_SUBMODULE" ]]; then - qtOut=`mktemp -d` -else - qtOut=$out -fi - -mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share" - -cp "@qt_dev@/bin/qmake" "$qtOut/bin" -cat >"$qtOut/bin/qt.conf" <unload(); diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch deleted file mode 100644 index d5c4c2b97cb60..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch +++ /dev/null @@ -1,17 +0,0 @@ -Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp -=================================================================== ---- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp -+++ qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp -@@ -560,7 +560,12 @@ void (*QGLXContext::getProcAddress(const - { - extern const QString qt_gl_library_name(); - // QLibrary lib(qt_gl_library_name()); -+ // Check system library paths first - QLibrary lib(QLatin1String("GL")); -+ if (!lib.load()) { -+ // Fallback to Mesa driver -+ lib.setFileName(QLatin1String("@mesa_lib@/lib/libGL")); -+ } - glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); - } - } diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gtkstyle.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gtkstyle.patch deleted file mode 100644 index c2be737794979..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gtkstyle.patch +++ /dev/null @@ -1,50 +0,0 @@ -Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtk2painter.cpp -=================================================================== ---- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/widgets/styles/qgtk2painter.cpp -+++ qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtk2painter.cpp -@@ -96,7 +96,7 @@ static void initGtk() - static bool initialized = false; - if (!initialized) { - // enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0 -- QLibrary libgtk(QLS("gtk-x11-2.0"), 0, 0); -+ QLibrary libgtk(QLS("@gtk@/lib/libgtk-x11-2.0"), 0, 0); - - QGtk2PainterPrivate::gdk_pixmap_new = (Ptr_gdk_pixmap_new)libgtk.resolve("gdk_pixmap_new"); - QGtk2PainterPrivate::gdk_pixbuf_get_from_drawable = (Ptr_gdk_pixbuf_get_from_drawable)libgtk.resolve("gdk_pixbuf_get_from_drawable"); -Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtkstyle_p.cpp -=================================================================== ---- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/widgets/styles/qgtkstyle_p.cpp -+++ qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtkstyle_p.cpp -@@ -326,7 +326,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus - void QGtkStylePrivate::resolveGtk() const - { - // enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0 -- QLibrary libgtk(QLS("gtk-x11-2.0"), 0, 0); -+ QLibrary libgtk(QLS("@gtk@/lib/libgtk-x11-2.0"), 0, 0); - - gtk_init = (Ptr_gtk_init)libgtk.resolve("gtk_init"); - gtk_window_new = (Ptr_gtk_window_new)libgtk.resolve("gtk_window_new"); -@@ -424,8 +424,8 @@ void QGtkStylePrivate::resolveGtk() cons - pango_font_description_get_family = (Ptr_pango_font_description_get_family)libgtk.resolve("pango_font_description_get_family"); - pango_font_description_get_style = (Ptr_pango_font_description_get_style)libgtk.resolve("pango_font_description_get_style"); - -- gnome_icon_lookup_sync = (Ptr_gnome_icon_lookup_sync)QLibrary::resolve(QLS("gnomeui-2"), 0, "gnome_icon_lookup_sync"); -- gnome_vfs_init= (Ptr_gnome_vfs_init)QLibrary::resolve(QLS("gnomevfs-2"), 0, "gnome_vfs_init"); -+ gnome_icon_lookup_sync = (Ptr_gnome_icon_lookup_sync)QLibrary::resolve(QLS("@libgnomeui@/lib/libgnomeui-2"), 0, "gnome_icon_lookup_sync"); -+ gnome_vfs_init= (Ptr_gnome_vfs_init)QLibrary::resolve(QLS("@gnome_vfs@/lib/libgnomevfs-2"), 0, "gnome_vfs_init"); - } - - /* \internal -@@ -593,9 +593,9 @@ void QGtkStylePrivate::cleanupGtkWidgets - static bool resolveGConf() - { - if (!QGtkStylePrivate::gconf_client_get_default) { -- QGtkStylePrivate::gconf_client_get_default = (Ptr_gconf_client_get_default)QLibrary::resolve(QLS("gconf-2"), 4, "gconf_client_get_default"); -- QGtkStylePrivate::gconf_client_get_string = (Ptr_gconf_client_get_string)QLibrary::resolve(QLS("gconf-2"), 4, "gconf_client_get_string"); -- QGtkStylePrivate::gconf_client_get_bool = (Ptr_gconf_client_get_bool)QLibrary::resolve(QLS("gconf-2"), 4, "gconf_client_get_bool"); -+ QGtkStylePrivate::gconf_client_get_default = (Ptr_gconf_client_get_default)QLibrary::resolve(QLS("@gconf@/lib/libgconf-2"), 4, "gconf_client_get_default"); -+ QGtkStylePrivate::gconf_client_get_string = (Ptr_gconf_client_get_string)QLibrary::resolve(QLS("@gconf@/lib/libgconf-2"), 4, "gconf_client_get_string"); -+ QGtkStylePrivate::gconf_client_get_bool = (Ptr_gconf_client_get_bool)QLibrary::resolve(QLS("@gconf@/lib/libgconf-2"), 4, "gconf_client_get_bool"); - } - return (QGtkStylePrivate::gconf_client_get_default !=0); - } diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch deleted file mode 100644 index 608c68b6d5b46..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch +++ /dev/null @@ -1,17 +0,0 @@ -Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -=================================================================== ---- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -+++ qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -@@ -297,10 +297,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *c - #ifdef XCB_USE_XLIB - static bool function_ptrs_not_initialized = true; - if (function_ptrs_not_initialized) { -- QLibrary xcursorLib(QLatin1String("Xcursor"), 1); -+ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1); - bool xcursorFound = xcursorLib.load(); - if (!xcursorFound) { // try without the version number -- xcursorLib.setFileName(QLatin1String("Xcursor")); -+ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor")); - xcursorFound = xcursorLib.load(); - } - if (xcursorFound) { diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-openssl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-openssl.patch deleted file mode 100644 index b648a58b57018..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-openssl.patch +++ /dev/null @@ -1,26 +0,0 @@ -Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -=================================================================== ---- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -+++ qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -@@ -611,8 +611,8 @@ static QPair loadO - #endif - #if defined(SHLIB_VERSION_NUMBER) && !defined(Q_OS_QNX) // on QNX, the libs are always libssl.so and libcrypto.so - // first attempt: the canonical name is libssl.so. -- libssl->setFileNameAndVersion(QLatin1String("ssl"), QLatin1String(SHLIB_VERSION_NUMBER)); -- libcrypto->setFileNameAndVersion(QLatin1String("crypto"), QLatin1String(SHLIB_VERSION_NUMBER)); -+ libssl->setFileNameAndVersion(QLatin1String("@openssl@/lib/libssl"), QLatin1String(SHLIB_VERSION_NUMBER)); -+ libcrypto->setFileNameAndVersion(QLatin1String("@openssl@/lib/libcrypto"), QLatin1String(SHLIB_VERSION_NUMBER)); - if (libcrypto->load() && libssl->load()) { - // libssl.so. and libcrypto.so. found - return pair; -@@ -629,8 +629,8 @@ static QPair loadO - // OS X's /usr/lib/libssl.dylib, /usr/lib/libcrypto.dylib will be picked up in the third - // attempt, _after_ /Contents/Frameworks has been searched. - // iOS does not ship a system libssl.dylib, libcrypto.dylib in the first place. -- libssl->setFileNameAndVersion(QLatin1String("ssl"), -1); -- libcrypto->setFileNameAndVersion(QLatin1String("crypto"), -1); -+ libssl->setFileNameAndVersion(QLatin1String("@openssl@/lib/libssl"), -1); -+ libcrypto->setFileNameAndVersion(QLatin1String("@openssl@/lib/libcrypto"), -1); - if (libcrypto->load() && libssl->load()) { - // libssl.so.0 and libcrypto.so.0 found - return pair; diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch deleted file mode 100644 index 20e56bf3149ea..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch +++ /dev/null @@ -1,26 +0,0 @@ -Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp -=================================================================== ---- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qdnslookup_unix.cpp -+++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp -@@ -79,7 +79,7 @@ static void resolveLibrary() - if (!lib.load()) - #endif - { -- lib.setFileName(QLatin1String("resolv")); -+ lib.setFileName(QLatin1String("@glibc@/lib/resolv")); - if (!lib.load()) - return; - } -Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp -=================================================================== ---- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qhostinfo_unix.cpp -+++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp -@@ -95,7 +95,7 @@ static void resolveLibrary() - if (!lib.load()) - #endif - { -- lib.setFileName(QLatin1String("resolv")); -+ lib.setFileName(QLatin1String("@glibc@/lib/libresolv")); - if (!lib.load()) - return; - } diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch deleted file mode 100644 index 56ee0a411d4d8..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch +++ /dev/null @@ -1,15 +0,0 @@ -Index: qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf -=================================================================== ---- qt-everywhere-opensource-src-5.5.1.orig/qtbase/mkspecs/common/linux.conf -+++ qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf -@@ -12,8 +12,8 @@ QMAKE_INCDIR = - QMAKE_LIBDIR = - QMAKE_INCDIR_X11 = - QMAKE_LIBDIR_X11 = --QMAKE_INCDIR_OPENGL = --QMAKE_LIBDIR_OPENGL = -+QMAKE_INCDIR_OPENGL = @mesa_inc@/include -+QMAKE_LIBDIR_OPENGL = @mesa_lib@/lib - QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL - QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL - QMAKE_INCDIR_EGL = diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch deleted file mode 100644 index 824d2ea0817f8..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch +++ /dev/null @@ -1,26 +0,0 @@ -Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/kernel/qcoreapplication.cpp -=================================================================== ---- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/kernel/qcoreapplication.cpp -+++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/kernel/qcoreapplication.cpp -@@ -2442,6 +2442,21 @@ QStringList QCoreApplication::libraryPat - } - } - } -+ -+ // Add library paths derived from NIX_PROFILES. -+ const QByteArray nixProfilesEnv = qgetenv("NIX_PROFILES"); -+ if (!nixProfilesEnv.isEmpty()) { -+ QLatin1Char pathSep(' '); -+ QStringList paths = QFile::decodeName(nixProfilesEnv).split(pathSep, QString::SkipEmptyParts); -+ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { -+ it->append("/lib/qt5/plugins"); -+ QString canonicalPath = QDir(*it).canonicalPath(); -+ if (!canonicalPath.isEmpty() -+ && !app_libpaths->contains(canonicalPath)) { -+ app_libpaths->append(canonicalPath); -+ } -+ } -+ } - } - return *(coreappdata()->app_libpaths); - } diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/series b/pkgs/development/libraries/qt-5/5.4/qtbase/series deleted file mode 100644 index 3cfa50e85b70f..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/series +++ /dev/null @@ -1,8 +0,0 @@ -dlopen-resolv.patch -tzdir.patch -dlopen-libXcursor.patch -dlopen-openssl.patch -dlopen-dbus.patch -xdg-config-dirs.patch -nix-profiles-library-paths.patch -compose-search-path.patch diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh b/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh deleted file mode 100644 index a9c4fbc855f77..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh +++ /dev/null @@ -1,52 +0,0 @@ -addToSearchPathOnceWithCustomDelimiter() { - local delim="$1" - local search="$2" - local target="$3" - local dirs - local exported - IFS="$delim" read -a dirs <<< "${!search}" - local canonical - if canonical=$(readlink -e "$target"); then - for dir in ${dirs[@]}; do - if [ "z$dir" == "z$canonical" ]; then exported=1; fi - done - if [ -z $exported ]; then - eval "export ${search}=\"${!search}${!search:+$delim}$canonical\"" - fi - fi -} - -addToSearchPathOnce() { - addToSearchPathOnceWithCustomDelimiter ':' "$@" -} - -propagateOnce() { - addToSearchPathOnceWithCustomDelimiter ' ' "$@" -} - -_qtPropagateRuntimeDependencies() { - for dir in "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports"; do - if [ -d "$1/$dir" ]; then - propagateOnce propagatedBuildInputs "$1" - propagateOnce propagatedUserEnvPkgs "$1" - break - fi - done - addToSearchPathOnce QT_PLUGIN_PATH "$1/lib/qt5/plugins" - addToSearchPathOnce QML_IMPORT_PATH "$1/lib/qt5/imports" - addToSearchPathOnce QML2_IMPORT_PATH "$1/lib/qt5/qml" -} - -envHooks+=(_qtPropagateRuntimeDependencies) - -_qtMultioutDevs() { - # This is necessary whether the package is a Qt module or not - moveToOutput "mkspecs" "${!outputDev}" -} - -preFixupHooks+=(_qtMultioutDevs) - -if [[ -z "$NIX_QT_PIC" ]]; then - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE${NIX_CFLAGS_COMPILE:+ }-fPIC" - export NIX_QT_PIC=1 -fi diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/tzdir.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/tzdir.patch deleted file mode 100644 index f62b25ef44571..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/tzdir.patch +++ /dev/null @@ -1,40 +0,0 @@ -Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -=================================================================== ---- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -+++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -@@ -61,7 +61,10 @@ typedef QHash Q - // Parse zone.tab table, assume lists all installed zones, if not will need to read directories - static QTzTimeZoneHash loadTzTimeZones() - { -- QString path = QStringLiteral("/usr/share/zoneinfo/zone.tab"); -+ QString path = qgetenv("TZDIR"); -+ path += "/zone.tab"; -+ if (!QFile::exists(path)) -+ path = QStringLiteral("/usr/share/zoneinfo/zone.tab"); - if (!QFile::exists(path)) - path = QStringLiteral("/usr/lib/zoneinfo/zone.tab"); - -@@ -552,12 +555,18 @@ void QTzTimeZonePrivate::init(const QByt - if (!tzif.open(QIODevice::ReadOnly)) - return; - } else { -- // Open named tz, try modern path first, if fails try legacy path -- tzif.setFileName(QLatin1String("/usr/share/zoneinfo/") + QString::fromLocal8Bit(ianaId)); -+ // Try TZDIR first -+ QString zoneinfoDir = qgetenv("TZDIR"); -+ zoneinfoDir += "/" + QString::fromLocal8Bit(ianaId); -+ tzif.setFileName(zoneinfoDir); - if (!tzif.open(QIODevice::ReadOnly)) { -- tzif.setFileName(QLatin1String("/usr/lib/zoneinfo/") + QString::fromLocal8Bit(ianaId)); -- if (!tzif.open(QIODevice::ReadOnly)) -- return; -+ // Open named tz, try modern path first, if fails try legacy path -+ tzif.setFileName(QLatin1String("/usr/share/zoneinfo/") + QString::fromLocal8Bit(ianaId)); -+ if (!tzif.open(QIODevice::ReadOnly)) { -+ tzif.setFileName(QLatin1String("/usr/lib/zoneinfo/") + QString::fromLocal8Bit(ianaId)); -+ if (!tzif.open(QIODevice::ReadOnly)) -+ return; -+ } - } - } - diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/xdg-config-dirs.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/xdg-config-dirs.patch deleted file mode 100644 index dbf5eac52e6b6..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/xdg-config-dirs.patch +++ /dev/null @@ -1,42 +0,0 @@ -Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings.cpp -=================================================================== ---- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/io/qsettings.cpp -+++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings.cpp -@@ -1128,6 +1128,24 @@ QConfFileSettingsPrivate::QConfFileSetti - if (!application.isEmpty()) - confFiles[F_System | F_Application].reset(QConfFile::fromName(systemPath + appFile, false)); - confFiles[F_System | F_Organization].reset(QConfFile::fromName(systemPath + orgFile, false)); -+ -+#if !defined(Q_OS_WIN) -+ // Add directories specified in $XDG_CONFIG_DIRS -+ const QString pathEnv = QString::fromLocal8Bit(getenv("XDG_CONFIG_DIRS")); -+ if (!pathEnv.isEmpty()) { -+ const QStringList pathEntries = pathEnv.split(QLatin1Char(':'), QString::SkipEmptyParts); -+ if (!pathEntries.isEmpty()) { -+ int j = 4; // This is the number of confFiles set above -- we need to start adding $XDG_CONFIG_DIRS after those. -+ for (int k = 0; k < pathEntries.size() && j < NumConfFiles - 1; ++k) { -+ const QString& path = pathEntries.at(k); -+ if (!application.isEmpty()) -+ confFiles[j++].reset(QConfFile::fromName(path + QDir::separator() + appFile, false)); -+ confFiles[j++].reset(QConfFile::fromName(path + QDir::separator() + orgFile, false)); -+ } -+ } -+ } -+#endif -+ - #else - QString confName = getPath(format, QSettings::UserScope) + org; - if (!application.isEmpty()) -Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings_p.h -=================================================================== ---- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/io/qsettings_p.h -+++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings_p.h -@@ -240,7 +240,7 @@ public: - F_Organization = 0x1, - F_User = 0x0, - F_System = 0x2, -- NumConfFiles = 4 -+ NumConfFiles = 40 // HACK: increase NumConfFiles from 4 to 40 in order to accommodate more paths in $XDG_CONFIG_DIRS -- ellis - #else - SandboxConfFile = 0, - NumConfFiles = 1 diff --git a/pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix b/pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix deleted file mode 100644 index 35538c7261f1d..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ qtSubmodule, qtbase, qtdeclarative }: - -qtSubmodule { - name = "qtconnectivity"; - qtInputs = [ qtbase qtdeclarative ]; - postFixup = '' - fixQtModuleCMakeConfig "Bluetooth" - fixQtModuleCMakeConfig "Nfc" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch deleted file mode 100644 index 8e86f97a94772..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 3f6fa74067aacd0e595e45b4ef7ce754514cb205 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sat, 17 Oct 2015 09:28:18 -0500 -Subject: [PATCH] nix profiles import paths - ---- - src/qml/qml/qqmlimport.cpp | 14 ++++++++++++++ - 1 file changed, 14 insertions(+) - -diff --git a/src/qml/qml/qqmlimport.cpp b/src/qml/qml/qqmlimport.cpp -index 5a54609..f33c2f9 100644 ---- a/src/qml/qml/qqmlimport.cpp -+++ b/src/qml/qml/qqmlimport.cpp -@@ -1549,6 +1549,20 @@ QQmlImportDatabase::QQmlImportDatabase(QQmlEngine *e) - QString installImportsPath = QLibraryInfo::location(QLibraryInfo::Qml2ImportsPath); - addImportPath(installImportsPath); - -+ // Add import paths derived from NIX_PROFILES. -+ const QByteArray nixProfilesEnv = qgetenv("NIX_PROFILES"); -+ if (!nixProfilesEnv.isEmpty()) { -+ QLatin1Char pathSep(' '); -+ QStringList paths = QFile::decodeName(nixProfilesEnv).split(pathSep, QString::SkipEmptyParts); -+ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { -+ it->append("/lib/qt5/qml"); -+ QString canonicalPath = QDir(*it).canonicalPath(); -+ if (!canonicalPath.isEmpty()) { -+ addImportPath(canonicalPath); -+ } -+ } -+ } -+ - // env import paths - QByteArray envImportPath = qgetenv("QML2_IMPORT_PATH"); - if (!envImportPath.isEmpty()) { --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix deleted file mode 100644 index e2219642a1224..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ qtSubmodule, python, qtbase, qtsvg, qtxmlpatterns }: - -qtSubmodule { - name = "qtdeclarative"; - patches = [ ./0001-nix-profiles-import-paths.patch ]; - qtInputs = [ qtbase qtsvg qtxmlpatterns ]; - nativeBuildInputs = [ python ]; - postFixup = '' - fixQtModuleCMakeConfig "Qml" - fixQtModuleCMakeConfig "Quick" - fixQtModuleCMakeConfig "QuickTest" - fixQtModuleCMakeConfig "QuickWidgets" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtdoc.nix b/pkgs/development/libraries/qt-5/5.4/qtdoc.nix deleted file mode 100644 index 578ea6ba0b226..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtdoc.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ qtSubmodule, qtdeclarative }: - -qtSubmodule { - name = "qtdoc"; - qtInputs = [ qtdeclarative ]; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtenginio.nix b/pkgs/development/libraries/qt-5/5.4/qtenginio.nix deleted file mode 100644 index 503a0f7ce4f55..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtenginio.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ qtSubmodule, qtdeclarative }: - -qtSubmodule { - name = "qtenginio"; - qtInputs = [ qtdeclarative ]; - postFixup = '' - fixQtModuleCMakeConfig "Enginio" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix b/pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix deleted file mode 100644 index 3273f12eb8302..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ qtSubmodule, qtdeclarative }: - -qtSubmodule { - name = "qtgraphicaleffects"; - qtInputs = [ qtdeclarative ]; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtimageformats.nix b/pkgs/development/libraries/qt-5/5.4/qtimageformats.nix deleted file mode 100644 index 03d0fffbe80e1..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtimageformats.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ qtSubmodule, qtbase }: - -qtSubmodule { - name = "qtimageformats"; - qtInputs = [ qtbase ]; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtlocation.nix b/pkgs/development/libraries/qt-5/5.4/qtlocation.nix deleted file mode 100644 index 0e2ad8bafb30d..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtlocation.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ qtSubmodule, qtbase, qtmultimedia }: - -qtSubmodule { - name = "qtlocation"; - qtInputs = [ qtbase qtmultimedia ]; - postFixup = '' - fixQtModuleCMakeConfig "Location" - fixQtModuleCMakeConfig "Positioning" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix b/pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix deleted file mode 100644 index 9eb68ba6b5ba2..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ qtSubmodule, qtbase, qtdeclarative, pkgconfig -, alsaLib, gstreamer, gst-plugins-base, libpulseaudio -}: - -qtSubmodule { - name = "qtmultimedia"; - qtInputs = [ qtbase qtdeclarative ]; - buildInputs = [ - pkgconfig alsaLib gstreamer gst-plugins-base libpulseaudio - ]; - qmakeFlags = [ "GST_VERSION=1.0" ]; - postFixup = '' - fixQtModuleCMakeConfig "Multimedia" - fixQtModuleCMakeConfig "MultimediaWidgets" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch b/pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch deleted file mode 100644 index 63b141f6ce5a7..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch +++ /dev/null @@ -1,37 +0,0 @@ -From bbc706b3fcb90ca3b2b51d5e3434145572152711 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sat, 17 Oct 2015 09:29:51 -0500 -Subject: [PATCH] nix profiles import paths - ---- - src/declarative/qml/qdeclarativeimport.cpp | 14 ++++++++++++++ - 1 file changed, 14 insertions(+) - -diff --git a/src/declarative/qml/qdeclarativeimport.cpp b/src/declarative/qml/qdeclarativeimport.cpp -index 9404834..d185ed5 100644 ---- a/src/declarative/qml/qdeclarativeimport.cpp -+++ b/src/declarative/qml/qdeclarativeimport.cpp -@@ -725,6 +725,20 @@ QDeclarativeImportDatabase::QDeclarativeImportDatabase(QDeclarativeEngine *e) - - addImportPath(installImportsPath); - -+ // Add import paths derived from NIX_PROFILES. -+ const QByteArray nixProfilesEnv = qgetenv("NIX_PROFILES"); -+ if (!nixProfilesEnv.isEmpty()) { -+ QLatin1Char pathSep(' '); -+ QStringList paths = QFile::decodeName(nixProfilesEnv).split(pathSep, QString::SkipEmptyParts); -+ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { -+ it->append("/lib/qt5/imports"); -+ QString canonicalPath = QDir(*it).canonicalPath(); -+ if (!canonicalPath.isEmpty()) { -+ addImportPath(canonicalPath); -+ } -+ } -+ } -+ - // env import paths - QByteArray envImportPath = qgetenv("QML_IMPORT_PATH"); - if (!envImportPath.isEmpty()) { --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix b/pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix deleted file mode 100644 index d81abbcd6140d..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ qtSubmodule, qtscript, qtsvg, qtwebkit, qtxmlpatterns }: - -qtSubmodule { - name = "qtquick1"; - patches = [ ./0001-nix-profiles-import-paths.patch ]; - qtInputs = [ qtscript qtsvg qtwebkit qtxmlpatterns ]; - postFixup = '' - fixQtModuleCMakeConfig "Declarative" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix b/pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix deleted file mode 100644 index 93a864621b824..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ qtSubmodule, qtdeclarative }: - -qtSubmodule { - name = "qtquickcontrols"; - qtInputs = [ qtdeclarative ]; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch b/pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch deleted file mode 100644 index 887e107b6c1b2..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch +++ /dev/null @@ -1,25 +0,0 @@ -From abd80356449bb36c8adcc5c9ca1df6b47715d265 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 23 Aug 2015 09:13:34 -0500 -Subject: [PATCH] glib-2.32 - ---- - src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h -index 1f6d25e..087c3fb 100644 ---- a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h -+++ b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h -@@ -81,7 +81,7 @@ - #include - #elif PLATFORM(GTK) - #include --typedef struct _GMutex GMutex; -+typedef union _GMutex GMutex; - typedef struct _GCond GCond; - #endif - --- -2.5.0 - diff --git a/pkgs/development/libraries/qt-5/5.4/qtscript/default.nix b/pkgs/development/libraries/qt-5/5.4/qtscript/default.nix deleted file mode 100644 index b81a43aeadb04..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtscript/default.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ qtSubmodule, qtbase, qttools }: - -qtSubmodule { - name = "qtscript"; - qtInputs = [ qtbase qttools ]; - patches = [ ./0001-glib-2.32.patch ]; - postFixup = '' - fixQtModuleCMakeConfig "Script" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtsensors.nix b/pkgs/development/libraries/qt-5/5.4/qtsensors.nix deleted file mode 100644 index 5776f45a70689..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtsensors.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ qtSubmodule, qtbase, qtdeclarative }: - -qtSubmodule { - name = "qtsensors"; - qtInputs = [ qtbase qtdeclarative ]; - postFixup = '' - fixQtModuleCMakeConfig "Sensors" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtserialport/0001-dlopen-serialport-udev.patch b/pkgs/development/libraries/qt-5/5.4/qtserialport/0001-dlopen-serialport-udev.patch deleted file mode 100644 index 3a813dc800745..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtserialport/0001-dlopen-serialport-udev.patch +++ /dev/null @@ -1,28 +0,0 @@ -From d81c2c870b9bea8fb8e6b85baefb06542f568338 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 23 Aug 2015 09:16:02 -0500 -Subject: [PATCH] dlopen serialport udev - ---- - src/serialport/qtudev_p.h | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/serialport/qtudev_p.h b/src/serialport/qtudev_p.h -index 6f2cabd..81b9849 100644 ---- a/src/serialport/qtudev_p.h -+++ b/src/serialport/qtudev_p.h -@@ -105,9 +105,9 @@ inline QFunctionPointer resolveSymbol(QLibrary *udevLibrary, const char *symbolN - inline bool resolveSymbols(QLibrary *udevLibrary) - { - if (!udevLibrary->isLoaded()) { -- udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 1); -+ udevLibrary->setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 1); - if (!udevLibrary->load()) { -- udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 0); -+ udevLibrary->setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 0); - if (!udevLibrary->load()) { - qWarning("Failed to load the library: %s, supported version(s): %i and %i", qPrintable(udevLibrary->fileName()), 1, 0); - return false; --- -2.5.0 - diff --git a/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix b/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix deleted file mode 100644 index 2c9575f122e78..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ qtSubmodule, qtbase, substituteAll, libudev }: - -qtSubmodule { - name = "qtserialport"; - qtInputs = [ qtbase ]; - - patches = [ - (substituteAll { - src = ./0001-dlopen-serialport-udev.patch; - libudev = libudev.out; - }) - ]; - postFixup = '' - fixQtModuleCMakeConfig "SerialPort" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtsvg.nix b/pkgs/development/libraries/qt-5/5.4/qtsvg.nix deleted file mode 100644 index a460d6da4c2ad..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtsvg.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ qtSubmodule, qtbase }: - -qtSubmodule { - name = "qtsvg"; - qtInputs = [ qtbase ]; - postFixup = '' - fixQtModuleCMakeConfig "Svg" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qttools.nix b/pkgs/development/libraries/qt-5/5.4/qttools.nix deleted file mode 100644 index 16887c4265a81..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qttools.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ qtSubmodule, qtbase }: - -qtSubmodule { - name = "qttools"; - qtInputs = [ qtbase ]; - postFixup = '' - moveToOutput "bin/qdbus" "$out" - moveToOutput "bin/qtpaths" "$out" - - fixQtModuleCMakeConfig "Designer" - fixQtModuleCMakeConfig "Help" - fixQtModuleCMakeConfig "LinguistTools" - fixQtModuleCMakeConfig "UiTools" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qttranslations.nix b/pkgs/development/libraries/qt-5/5.4/qttranslations.nix deleted file mode 100644 index 50fc8cf6826a0..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qttranslations.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ qtSubmodule, qttools }: - -qtSubmodule { - name = "qttranslations"; - qtInputs = [ qttools ]; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix b/pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix deleted file mode 100644 index 64f85c42d1984..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ qtSubmodule, qttools, qtwebkit }: - -qtSubmodule { - name = "qtwebkit-examples"; - qtInputs = [ qttools qtwebkit ]; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch deleted file mode 100644 index 0eeacce1bc053..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch +++ /dev/null @@ -1,53 +0,0 @@ -From 862ce7d357a3ec32683ac6ec7c0ebdc9346b44ba Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 23 Aug 2015 09:18:54 -0500 -Subject: [PATCH 1/3] dlopen webkit nsplugin - ---- - Source/WebCore/plugins/qt/PluginPackageQt.cpp | 2 +- - Source/WebCore/plugins/qt/PluginViewQt.cpp | 2 +- - Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp | 2 +- - 3 files changed, 3 insertions(+), 3 deletions(-) - -diff --git a/Source/WebCore/plugins/qt/PluginPackageQt.cpp b/Source/WebCore/plugins/qt/PluginPackageQt.cpp -index a923d49..2731d05 100644 ---- a/Source/WebCore/plugins/qt/PluginPackageQt.cpp -+++ b/Source/WebCore/plugins/qt/PluginPackageQt.cpp -@@ -136,7 +136,7 @@ static void initializeGtk(QLibrary* module = 0) - } - } - -- QLibrary library(QLatin1String("libgtk-x11-2.0"), 0); -+ QLibrary library(QLatin1String("@gtk@/lib/libgtk-x11-2.0"), 0); - if (library.load()) { - typedef void *(*gtk_init_check_ptr)(int*, char***); - gtk_init_check_ptr gtkInitCheck = (gtk_init_check_ptr)library.resolve("gtk_init_check"); -diff --git a/Source/WebCore/plugins/qt/PluginViewQt.cpp b/Source/WebCore/plugins/qt/PluginViewQt.cpp -index de06a2f..363bde5 100644 ---- a/Source/WebCore/plugins/qt/PluginViewQt.cpp -+++ b/Source/WebCore/plugins/qt/PluginViewQt.cpp -@@ -697,7 +697,7 @@ static Display *getPluginDisplay() - // support gdk based plugins (like flash) that use a different X connection. - // The code below has the same effect as this one: - // Display *gdkDisplay = gdk_x11_display_get_xdisplay(gdk_display_get_default()); -- QLibrary library(QLatin1String("libgdk-x11-2.0"), 0); -+ QLibrary library(QLatin1String("@gdk_pixbuf@/lib/libgdk-x11-2.0"), 0); - if (!library.load()) - return 0; - -diff --git a/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp b/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp -index d734ff6..62a2197 100644 ---- a/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp -+++ b/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp -@@ -64,7 +64,7 @@ static Display* getPluginDisplay() - // The code below has the same effect as this one: - // Display *gdkDisplay = gdk_x11_display_get_xdisplay(gdk_display_get_default()); - -- QLibrary library(QLatin1String("libgdk-x11-2.0"), 0); -+ QLibrary library(QLatin1String("@gdk_pixbuf@/libgdk-x11-2.0"), 0); - if (!library.load()) - return 0; - --- -2.5.0 - diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch deleted file mode 100644 index bb5d1f74364cf..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 6a407d30357c2551abceac75c82f4a1688e47437 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 23 Aug 2015 09:19:16 -0500 -Subject: [PATCH 2/3] dlopen webkit gtk - ---- - Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp b/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp -index 8de6521..0b25748 100644 ---- a/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp -+++ b/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp -@@ -53,7 +53,7 @@ static void messageHandler(QtMsgType type, const QMessageLogContext&, const QStr - - static bool initializeGtk() - { -- QLibrary gtkLibrary(QLatin1String("libgtk-x11-2.0"), 0); -+ QLibrary gtkLibrary(QLatin1String("@gtk@/lib/libgtk-x11-2.0"), 0); - if (!gtkLibrary.load()) - return false; - typedef void* (*gtk_init_ptr)(void*, void*); --- -2.5.0 - diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch deleted file mode 100644 index 1c360cd81aa2d..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 864020dd47c3b6d532d9f26b82185904cf9324f2 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 23 Aug 2015 09:19:29 -0500 -Subject: [PATCH 3/3] dlopen webkit udev - ---- - Source/WebCore/platform/qt/GamepadsQt.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/Source/WebCore/platform/qt/GamepadsQt.cpp b/Source/WebCore/platform/qt/GamepadsQt.cpp -index 60ff317..da8ac69 100644 ---- a/Source/WebCore/platform/qt/GamepadsQt.cpp -+++ b/Source/WebCore/platform/qt/GamepadsQt.cpp -@@ -111,12 +111,12 @@ private: - bool load() - { - m_libUdev.setLoadHints(QLibrary::ResolveAllSymbolsHint); -- m_libUdev.setFileNameAndVersion(QStringLiteral("udev"), 1); -+ m_libUdev.setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 1); - m_loaded = m_libUdev.load(); - if (resolveMethods()) - return true; - -- m_libUdev.setFileNameAndVersion(QStringLiteral("udev"), 0); -+ m_libUdev.setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 0); - m_loaded = m_libUdev.load(); - return resolveMethods(); - } --- -2.5.0 - diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix b/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix deleted file mode 100644 index 7ed3017b95a3d..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ qtSubmodule, stdenv, qtdeclarative, qtlocation, qtmultimedia, qtsensors -, fontconfig, gdk_pixbuf, gtk, libwebp, libxml2, libxslt -, sqlite, libudev -, bison2, flex, gdb, gperf, perl, pkgconfig, python, ruby -, substituteAll -, flashplayerFix ? false -}: - -with stdenv.lib; - -qtSubmodule { - name = "qtwebkit"; - qtInputs = [ qtdeclarative qtlocation qtmultimedia qtsensors ]; - buildInputs = [ fontconfig libwebp libxml2 libxslt sqlite ]; - nativeBuildInputs = [ - bison2 flex gdb gperf perl pkgconfig python ruby - ]; - patches = - let dlopen-webkit-nsplugin = substituteAll { - src = ./0001-dlopen-webkit-nsplugin.patch; - gtk = gtk.out; - gdk_pixbuf = gdk_pixbuf.out; - }; - dlopen-webkit-gtk = substituteAll { - src = ./0002-dlopen-webkit-gtk.patch; - gtk = gtk.out; - }; - dlopen-webkit-udev = substituteAll { - src = ./0003-dlopen-webkit-udev.patch; - udev = libudev.out; - }; - in optionals flashplayerFix [ dlopen-webkit-nsplugin dlopen-webkit-gtk ] - ++ [ dlopen-webkit-udev ]; - postFixup = '' - fixQtModuleCMakeConfig "WebKit" - fixQtModuleCMakeConfig "WebKitWidgets" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix b/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix deleted file mode 100644 index c0d0f9e7d714e..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ qtSubmodule, qtbase, qtdeclarative }: - -qtSubmodule { - name = "qtwebsockets"; - qtInputs = [ qtbase qtdeclarative ]; - postFixup = '' - fixQtModuleCMakeConfig "WebSockets" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix b/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix deleted file mode 100644 index db92f1353627d..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ qtSubmodule, qtbase }: - -qtSubmodule { - name = "qtx11extras"; - qtInputs = [ qtbase ]; - postFixup = '' - fixQtModuleCMakeConfig "X11Extras" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix b/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix deleted file mode 100644 index 3b22132e4c38e..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ qtSubmodule, qtbase }: - -qtSubmodule { - name = "qtxmlpatterns"; - qtInputs = [ qtbase ]; - postFixup = '' - fixQtModuleCMakeConfig "XmlPatterns" - ''; -} diff --git a/pkgs/development/libraries/qt-5/5.4/srcs.nix b/pkgs/development/libraries/qt-5/5.4/srcs.nix deleted file mode 100644 index dd873f5961b32..0000000000000 --- a/pkgs/development/libraries/qt-5/5.4/srcs.nix +++ /dev/null @@ -1,245 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by manifest.sh -{ fetchurl, mirror }: - -{ - qtbase = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtbase-opensource-src-5.4.2.tar.xz"; - sha256 = "0x2szpjjvsrpcqw0dd3gsim7b1jv9p716pnllzjbia5mp0hggi4z"; - name = "qtbase-opensource-src-5.4.2.tar.xz"; - }; - }; - qtenginio = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtenginio-opensource-src-5.4.2.tar.xz"; - sha256 = "082i3fapjw6xs0jkz7x529dn3pb6w1pfli3cjrgvggff86gwlgwn"; - name = "qtenginio-opensource-src-5.4.2.tar.xz"; - }; - }; - qtserialport = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtserialport-opensource-src-5.4.2.tar.xz"; - sha256 = "1h6p5rb0ldxgzd4md3n79gy0j9blhj736670xqjd9vlvh1743kck"; - name = "qtserialport-opensource-src-5.4.2.tar.xz"; - }; - }; - qtscript = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtscript-opensource-src-5.4.2.tar.xz"; - sha256 = "0izsmy0cr8iii78r10ndkidyljxqd2k9g03f5xb9nxacvr2f8hp0"; - name = "qtscript-opensource-src-5.4.2.tar.xz"; - }; - }; - qtwebchannel = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtwebchannel-opensource-src-5.4.2.tar.xz"; - sha256 = "0vy1zjbghfa1wirxd8fd2n2n8yryykzr09913qm2nlfbcxdsgqsn"; - name = "qtwebchannel-opensource-src-5.4.2.tar.xz"; - }; - }; - qtwinextras = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtwinextras-opensource-src-5.4.2.tar.xz"; - sha256 = "0sgybvr1y2xsddlqc95ninxj3rfmd4gv7a8f7rqcxdynjan5gij0"; - name = "qtwinextras-opensource-src-5.4.2.tar.xz"; - }; - }; - qtwebsockets = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtwebsockets-opensource-src-5.4.2.tar.xz"; - sha256 = "0lv1la8333qnirxmscs42xnnra0xry1gjbhi3bxrf1hrfs2im9j4"; - name = "qtwebsockets-opensource-src-5.4.2.tar.xz"; - }; - }; - qtmultimedia = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtmultimedia-opensource-src-5.4.2.tar.xz"; - sha256 = "0h29cs8ajnjarhjx1aczdnxqwvg6pqs9s8w28hw488s149wqqrnj"; - name = "qtmultimedia-opensource-src-5.4.2.tar.xz"; - }; - }; - qtgraphicaleffects = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtgraphicaleffects-opensource-src-5.4.2.tar.xz"; - sha256 = "02p8xm5ajicjam30ry3g1lm2p4nja2q0sls8dzimqrxhw5xlg3xs"; - name = "qtgraphicaleffects-opensource-src-5.4.2.tar.xz"; - }; - }; - qtxmlpatterns = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtxmlpatterns-opensource-src-5.4.2.tar.xz"; - sha256 = "0ar7znqp1i02ha5ngy2kzk3hlgkafjbn2xa8j2k78gzmwsmdhzxa"; - name = "qtxmlpatterns-opensource-src-5.4.2.tar.xz"; - }; - }; - qttranslations = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qttranslations-opensource-src-5.4.2.tar.xz"; - sha256 = "0b4l69c16z8gjd4mq75zz3lj2gxarr9wyk0vk60jg1mi62vxvdls"; - name = "qttranslations-opensource-src-5.4.2.tar.xz"; - }; - }; - qtdeclarative = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtdeclarative-opensource-src-5.4.2.tar.xz"; - sha256 = "1bj1wwms6lpj8s70y8by3j0hjsw6g9v8m6fybx68krzzizbj2c5p"; - name = "qtdeclarative-opensource-src-5.4.2.tar.xz"; - }; - }; - qtwebkit = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtwebkit-opensource-src-5.4.2.tar.xz"; - sha256 = "0vffbpiczag2n2hp5gc0nii8n7vkidr8f8pp8a47px0183hl6hiy"; - name = "qtwebkit-opensource-src-5.4.2.tar.xz"; - }; - }; - qtquick1 = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtquick1-opensource-src-5.4.2.tar.xz"; - sha256 = "0178z15a31fw3l6933fwxs7sk0csifpwckydp3rqnn3fg5f2fwvp"; - name = "qtquick1-opensource-src-5.4.2.tar.xz"; - }; - }; - qtquickcontrols = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtquickcontrols-opensource-src-5.4.2.tar.xz"; - sha256 = "137z3c3drxlvkdfc7zgcl0xqmavw0ladzqy0i3bq51h756qdc877"; - name = "qtquickcontrols-opensource-src-5.4.2.tar.xz"; - }; - }; - qtimageformats = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtimageformats-opensource-src-5.4.2.tar.xz"; - sha256 = "1nny6j9pm5ri3n1vwl5lrfrdz0fl81rx127wa49rkg2rjai2aawb"; - name = "qtimageformats-opensource-src-5.4.2.tar.xz"; - }; - }; - qtdoc = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtdoc-opensource-src-5.4.2.tar.xz"; - sha256 = "15lamv6jvd7v33ldpcrazcdksv6qibdcgh4ncbyh774k8avgrlh8"; - name = "qtdoc-opensource-src-5.4.2.tar.xz"; - }; - }; - qtwayland = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtwayland-opensource-src-5.4.2.tar.xz"; - sha256 = "14pmpkfq70plw07igxjaiji4vnjg5kg7izlb0wwym1lisg7bwkg0"; - name = "qtwayland-opensource-src-5.4.2.tar.xz"; - }; - }; - qtmacextras = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtmacextras-opensource-src-5.4.2.tar.xz"; - sha256 = "0h0p3s0rvd3g9rgr4hwcggdbsav2g30vijqwmdxgxd8c00yply80"; - name = "qtmacextras-opensource-src-5.4.2.tar.xz"; - }; - }; - qtactiveqt = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtactiveqt-opensource-src-5.4.2.tar.xz"; - sha256 = "014kwficqydciwdm1yw88yms81qm8pmi6xfhhfpbc9k85pc6jlla"; - name = "qtactiveqt-opensource-src-5.4.2.tar.xz"; - }; - }; - qtlocation = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtlocation-opensource-src-5.4.2.tar.xz"; - sha256 = "1v43hl2zzi90vaw11y8dvsksrjn0r2v0br7pw6njl8lqadpg4jnw"; - name = "qtlocation-opensource-src-5.4.2.tar.xz"; - }; - }; - qtconnectivity = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtconnectivity-opensource-src-5.4.2.tar.xz"; - sha256 = "1nj68bzgm3r1gg171kj0acnifzb3jx0m5pf4f81xb7zl4hfxasrs"; - name = "qtconnectivity-opensource-src-5.4.2.tar.xz"; - }; - }; - qtx11extras = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtx11extras-opensource-src-5.4.2.tar.xz"; - sha256 = "0jgyywjxavfpiz8202g3s0g9izfl185mmak4fs9h80w1i3gn5zzn"; - name = "qtx11extras-opensource-src-5.4.2.tar.xz"; - }; - }; - qttools = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qttools-opensource-src-5.4.2.tar.xz"; - sha256 = "1d5nx01r7wxhdg9f1i9xhsvsbwgaz3yv516s068riy970bhdgwzd"; - name = "qttools-opensource-src-5.4.2.tar.xz"; - }; - }; - qtsensors = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtsensors-opensource-src-5.4.2.tar.xz"; - sha256 = "1yawvjbdymgw8af7ir9zcin89xxck9dm2l6hnc43lwrky0frcvcf"; - name = "qtsensors-opensource-src-5.4.2.tar.xz"; - }; - }; - qtwebengine = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtwebengine-opensource-src-5.4.2.tar.xz"; - sha256 = "06cyl733prakniqrn8sd807lclk5im2vmysjdcijry2mcyah2ih8"; - name = "qtwebengine-opensource-src-5.4.2.tar.xz"; - }; - }; - qtsvg = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtsvg-opensource-src-5.4.2.tar.xz"; - sha256 = "1dsyncp154xvb7d82nmnfjm0ngymnhqmliq58ljwxsjmpjlncakz"; - name = "qtsvg-opensource-src-5.4.2.tar.xz"; - }; - }; - qt5 = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qt5-opensource-src-5.4.2.tar.xz"; - sha256 = "17a0pybr4bpyv9pj7cr5hl4g31biv89bjr8zql723h0b12ql1w44"; - name = "qt5-opensource-src-5.4.2.tar.xz"; - }; - }; - qtwebkit-examples = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtwebkit-examples-opensource-src-5.4.2.tar.xz"; - sha256 = "0pm9ik1j09jfb5xflc16449nff2xsfyfms7vxlcdjg4dhcqfmll8"; - name = "qtwebkit-examples-opensource-src-5.4.2.tar.xz"; - }; - }; - qtandroidextras = { - version = "5.4.2"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.4/5.4.2/submodules/qtandroidextras-opensource-src-5.4.2.tar.xz"; - sha256 = "0krfm0wg26x7575p8isswdhrkb0jxyp169grwklil7mfw8yg3xhx"; - name = "qtandroidextras-opensource-src-5.4.2.tar.xz"; - }; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e23db12de4d05..9e18a791bd3bf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8694,10 +8694,6 @@ in developerBuild = true; }); - qt54 = - let imported = import ../development/libraries/qt-5/5.4 { inherit pkgs; }; - in recurseIntoAttrs (imported.override (super: qt5LibsFun)); - qt55 = let imported = import ../development/libraries/qt-5/5.5 { inherit pkgs; }; in recurseIntoAttrs (imported.override (super: qt5LibsFun)); -- cgit 1.4.1 From 93369da0390af41e29a6f5d76b4797d83f374eb9 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 5 May 2016 16:51:02 -0500 Subject: signon: remove The library does not build with Qt 5.6 and no packages depend on it. (Why are we building unused packages?) --- pkgs/development/libraries/signon/default.nix | 18 ------------------ pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 20 deletions(-) delete mode 100644 pkgs/development/libraries/signon/default.nix (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/signon/default.nix b/pkgs/development/libraries/signon/default.nix deleted file mode 100644 index f2f7de5b71250..0000000000000 --- a/pkgs/development/libraries/signon/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ stdenv, fetchurl, doxygen, qtbase, qmakeHook }: - -stdenv.mkDerivation rec { - name = "signon-${version}"; - version = "8.57"; - src = fetchurl { - url = "https://gitlab.com/accounts-sso/signond/repository/archive.tar.gz?ref=${version}"; - sha256 = "1vqkxhmdjk3217k38l2s3wld8x7f4jrbbh6xbr036cn1r23ncni5"; - }; - - buildInputs = [ qtbase ]; - nativeBuildInputs = [ doxygen qmakeHook ]; - - preConfigure = '' - qmakeFlags="$qmakeFlags LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake/SignOnQt5" - ''; - -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 55ceac33569f9..530ab2f65901f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8743,8 +8743,6 @@ in qwt = callPackage ../development/libraries/qwt/6.nix { }; - signon = callPackage ../development/libraries/signon { }; - telepathy = callPackage ../development/libraries/telepathy/qt { }; vlc = lowPrio (callPackage ../applications/video/vlc { -- cgit 1.4.1 From 0903faa3fb54f704b0a517329319daa7787022a1 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 8 May 2016 10:52:22 -0500 Subject: qt56.qmakeHook: fix static library relocation --- pkgs/development/libraries/qt-5/5.6/qmake-hook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh index 425048a593575..62a8c8b71c3ed 100644 --- a/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh +++ b/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh @@ -58,7 +58,7 @@ _qtMultioutModuleDevs() { if [ "z${!outputLib}" != "z${!outputDev}" ]; then pushd "${!outputLib}" if [ -d "lib" ]; then - find lib -name '*.a' -o -name '*.la' -o -name '*.prl' -print0 | \ + find lib \( -name '*.a' -o -name '*.la' -o -name '*.prl' \) -print0 | \ while read -r -d $'\0' file; do mkdir -p "${!outputDev}/$(dirname "$file")" mv "${!outputLib}/$file" "${!outputDev}/$file" -- cgit 1.4.1 From 62d07ae7d44f92a16f91cd8f669fdf047b45326d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 8 May 2016 10:52:48 -0500 Subject: qt56.qttools: add qtdeclarative dependency --- pkgs/development/libraries/qt-5/5.6/qttools.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/qt-5/5.6/qttools.nix b/pkgs/development/libraries/qt-5/5.6/qttools.nix index 1472691c52547..deb00d1f80885 100644 --- a/pkgs/development/libraries/qt-5/5.6/qttools.nix +++ b/pkgs/development/libraries/qt-5/5.6/qttools.nix @@ -1,8 +1,8 @@ -{ qtSubmodule, qtbase }: +{ qtSubmodule, qtbase, qtdeclarative }: qtSubmodule { name = "qttools"; - qtInputs = [ qtbase ]; + qtInputs = [ qtbase qtdeclarative ]; postFixup = '' moveToOutput "bin/qdbus" "$out" moveToOutput "bin/qtpaths" "$out" -- cgit 1.4.1 From b63899c42fbeb16e1f99866ec830aec8d615d61b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 8 May 2016 12:32:37 -0500 Subject: qt55.qmakeHook: fix static library relocation --- pkgs/development/libraries/qt-5/5.5/qmake-hook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh index 425048a593575..2669a396280f4 100644 --- a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh +++ b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh @@ -58,7 +58,7 @@ _qtMultioutModuleDevs() { if [ "z${!outputLib}" != "z${!outputDev}" ]; then pushd "${!outputLib}" if [ -d "lib" ]; then - find lib -name '*.a' -o -name '*.la' -o -name '*.prl' -print0 | \ + find lib \( -name '*.a' -o -name '*.la' -o -name '*.prl' -print0 \) | \ while read -r -d $'\0' file; do mkdir -p "${!outputDev}/$(dirname "$file")" mv "${!outputLib}/$file" "${!outputDev}/$file" -- cgit 1.4.1 From a5e1a0ae119a97dd6f2f405fce32cd1b682eee2d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 8 May 2016 15:48:27 -0500 Subject: openbr: mark broken --- pkgs/development/libraries/openbr/default.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/openbr/default.nix b/pkgs/development/libraries/openbr/default.nix index dd40311b80733..3f3218a550f80 100644 --- a/pkgs/development/libraries/openbr/default.nix +++ b/pkgs/development/libraries/openbr/default.nix @@ -28,5 +28,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.asl20; maintainers = with stdenv.lib.maintainers; [flosse]; platforms = with stdenv.lib.platforms; linux; + broken = true; }; } -- cgit 1.4.1 From 198e8d656131c37113e0d4a246001f4cb346619d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 9 May 2016 09:58:22 -0500 Subject: gstreamer: add ttuegel to maintainers --- pkgs/development/libraries/gstreamer/core/default.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/gstreamer/core/default.nix b/pkgs/development/libraries/gstreamer/core/default.nix index bbd4bcde785b6..531e22d755dd8 100644 --- a/pkgs/development/libraries/gstreamer/core/default.nix +++ b/pkgs/development/libraries/gstreamer/core/default.nix @@ -10,6 +10,7 @@ stdenv.mkDerivation rec { homepage = "http://gstreamer.freedesktop.org"; license = stdenv.lib.licenses.lgpl2Plus; platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.ttuegel ]; }; src = fetchurl { -- cgit 1.4.1 From 3beda443bc1571ef1d73afe0b3a5463f89299c53 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 9 May 2016 18:33:43 +0200 Subject: Python: re-enable default testing In 303e976 default testing of setuptools packages was accidentally disabled. --- pkgs/development/python-modules/generic/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix index b8e1e8cad71b7..a90b66a337576 100644 --- a/pkgs/development/python-modules/generic/default.nix +++ b/pkgs/development/python-modules/generic/default.nix @@ -93,11 +93,13 @@ let runHook postCheck ''; - # We run all tests after software has been installed since that is - # a common idiom in Python - # + # Python packages that are installed with setuptools + # are typically distributed with tests. + # With Python it's a common idiom to run the tests + # after the software has been installed. + # For backwards compatibility, let's use an alias - doInstallCheck = attrs.doCheck or false; + doInstallCheck = attrs.doCheck or true; } else throw "Unsupported format ${format}"; @@ -121,7 +123,7 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // runHook postConfigure ''; - # Python packages don't have a checkPhase, only a installCheckPhase + # Python packages don't have a checkPhase, only an installCheckPhase doCheck = false; installPhase = attrs.installPhase or '' -- cgit 1.4.1 From 7ce5d43c63e20eedc619b3b7899ce34fd9558a1a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 9 May 2016 15:35:41 +0200 Subject: Fix some URLs that lacked a URI scheme --- pkgs/applications/misc/vue/default.nix | 2 +- pkgs/applications/science/logic/leo2/default.nix | 2 +- pkgs/data/fonts/tempora-lgc/default.nix | 8 ++++---- pkgs/development/libraries/libnftnl/default.nix | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/applications/misc/vue/default.nix b/pkgs/applications/misc/vue/default.nix index b116a176aed08..a448d35485a7d 100644 --- a/pkgs/applications/misc/vue/default.nix +++ b/pkgs/applications/misc/vue/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation rec { name = "vue-${version}"; version = "3.3.0"; src = fetchurl { - url = "releases.atech.tufts.edu/jenkins/job/VUE/116/deployedArtifacts/download/artifact.1"; + url = "http://releases.atech.tufts.edu/jenkins/job/VUE/116/deployedArtifacts/download/artifact.1"; sha256 = "0yfzr80pw632lkayg4qfmwzrqk02y30yz8br7isyhmgkswyp5rnx"; }; diff --git a/pkgs/applications/science/logic/leo2/default.nix b/pkgs/applications/science/logic/leo2/default.nix index 95012f90a944e..da4517cd6b023 100644 --- a/pkgs/applications/science/logic/leo2/default.nix +++ b/pkgs/applications/science/logic/leo2/default.nix @@ -13,7 +13,7 @@ let baseName="leo2"; version = "1.6.2"; name="${baseName}_v${version}"; - url="page.mi.fu-berlin.de/cbenzmueller/leo/leo2_v${version}.tgz"; + url = "http://page.mi.fu-berlin.de/cbenzmueller/leo/leo2_v${version}.tgz"; hash="d46a94f5991623386eb9061cfb0d748e258359a8c690fded173d35303e0e9e3a"; }; in diff --git a/pkgs/data/fonts/tempora-lgc/default.nix b/pkgs/data/fonts/tempora-lgc/default.nix index 53aefe9c31a28..c934bdb70e39c 100644 --- a/pkgs/data/fonts/tempora-lgc/default.nix +++ b/pkgs/data/fonts/tempora-lgc/default.nix @@ -2,19 +2,19 @@ let srcs = [ (fetchurl { - url = "www.ttfotf.com/download-font/tempora-lgc-unicode-bold-italic.otf"; + url = http://www.ttfotf.com/download-font/tempora-lgc-unicode-bold-italic.otf; sha256 = "1yfbi62j6gjmzglxz29m6x6lxqpxghcqjjh916qn8in74ba5v0gq"; }) (fetchurl { - url = "www.ttfotf.com/download-font/tempora-lgc-unicode-bold.otf"; + url = http://www.ttfotf.com/download-font/tempora-lgc-unicode-bold.otf; sha256 = "0bfbl1h9h1022km2rg1zwl9lpabhnwdsvzdp0bwmf0wbm62550cp"; }) (fetchurl { - url = "www.ttfotf.com/download-font/tempora-lgc-unicode-italic.otf"; + url = http://www.ttfotf.com/download-font/tempora-lgc-unicode-italic.otf; sha256 = "10m9j4bvr6c4zp691wxm4hvzhph2zlfsxk1nmbsb9vn1i6vfgz04"; }) (fetchurl { - url = "www.ttfotf.com/download-font/tempora-lgc-unicode.otf"; + url = http://www.ttfotf.com/download-font/tempora-lgc-unicode.otf; sha256 = "0iwa8wyydcpjss6d1jy4jibqxpvzph4vmaxwwmndpsqy1fz64y9i"; }) ]; diff --git a/pkgs/development/libraries/libnftnl/default.nix b/pkgs/development/libraries/libnftnl/default.nix index df692f76a2af4..53dfd21f23d8f 100644 --- a/pkgs/development/libraries/libnftnl/default.nix +++ b/pkgs/development/libraries/libnftnl/default.nix @@ -4,14 +4,14 @@ stdenv.mkDerivation rec { name = "libnftnl-1.0.5"; src = fetchurl { - url = "netfilter.org/projects/libnftnl/files/${name}.tar.bz2"; + url = "http://netfilter.org/projects/libnftnl/files/${name}.tar.bz2"; sha256 = "15z4kcsklbvy94d24p2r0avyhc2rsvygjqr3gyccg2z30akzbm7n"; }; buildInputs = [ pkgconfig libmnl ]; meta = with stdenv.lib; { - description = "a userspace library providing a low-level netlink API to the in-kernel nf_tables subsystem"; + description = "A userspace library providing a low-level netlink API to the in-kernel nf_tables subsystem"; homepage = http://netfilter.org/projects/libnftnl; license = licenses.gpl2Plus; platforms = platforms.linux; -- cgit 1.4.1 From cb37ab146b6578b540cead3ef1ec282f4de975a7 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 9 May 2016 15:49:44 +0200 Subject: Add mirror://mozilla scheme --- pkgs/applications/networking/browsers/firefox/default.nix | 2 +- pkgs/applications/networking/mailreaders/thunderbird/default.nix | 5 ++--- pkgs/build-support/fetchurl/mirrors.nix | 7 +++++++ pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix | 4 ++-- pkgs/development/interpreters/spidermonkey/17.0.nix | 2 +- pkgs/development/interpreters/spidermonkey/185-1.0.0.nix | 2 +- pkgs/development/interpreters/spidermonkey/24.2.nix | 2 +- pkgs/development/interpreters/spidermonkey/default.nix | 2 +- pkgs/development/libraries/java/rhino/default.nix | 2 +- pkgs/development/libraries/nspr/default.nix | 2 +- pkgs/development/libraries/nss/default.nix | 2 +- pkgs/development/libraries/svrcore/default.nix | 2 +- 12 files changed, 20 insertions(+), 14 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index 41e1ac560bf4b..a3c8183fff221 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -24,7 +24,7 @@ common = { pname, version, sha512 }: stdenv.mkDerivation rec { src = fetchurl { url = let ext = if lib.versionAtLeast version "41.0" then "xz" else "bz2"; - in "http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${version}/source/firefox-${version}.source.tar.${ext}"; + in "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.${ext}"; inherit sha512; }; diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix index b3a3c2bf8614c..27b9d335e27cf 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix @@ -20,9 +20,8 @@ stdenv.mkDerivation rec { name = "thunderbird-${verName}"; src = fetchurl { - url = "http://archive.mozilla.org/pub/thunderbird/releases/" - + "${verName}/source/thunderbird-${verName}.source.tar.xz"; - sha256 = "0rynfyxgpvfla17zniaq84slc02kg848qawkjmdbnv74y6bkhs8m"; + url = "mirror://mozilla/thunderbird/releases/${verName}/source/thunderbird-${verName}.source.tar.xz"; + sha256 = "1wbkj8a0p62mcbxlq8yyzrx51xi65qm8f2ccqiv5pb6qd51b5d0v"; }; buildInputs = # from firefox30Pkgs.xulrunner, without gstreamer and libvpx diff --git a/pkgs/build-support/fetchurl/mirrors.nix b/pkgs/build-support/fetchurl/mirrors.nix index 6de94ab511b51..47b721b030d5d 100644 --- a/pkgs/build-support/fetchurl/mirrors.nix +++ b/pkgs/build-support/fetchurl/mirrors.nix @@ -345,4 +345,11 @@ rec { pypi = [ https://pypi.io/packages/source/ ]; + + # Mozilla projects. + mozilla = [ + http://download.cdn.mozilla.net/pub/mozilla.org/ + https://archive.mozilla.org/pub/ + ]; + } diff --git a/pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix b/pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix index 99f66199d939d..960cd86ec27f3 100644 --- a/pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix +++ b/pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix @@ -3,9 +3,9 @@ stdenv.mkDerivation rec { version = "1.8.0-rc1"; name = "spidermonkey-${version}"; - + src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/js/js-${version}.tar.gz"; + url = "mirror://mozilla/js/js-${version}.tar.gz"; sha256 = "374398699ac3fd802d98d642486cf6b0edc082a119c9c9c499945a0bc73e3413"; }; diff --git a/pkgs/development/interpreters/spidermonkey/17.0.nix b/pkgs/development/interpreters/spidermonkey/17.0.nix index 5cc71b59d5123..cbe2c47594d41 100644 --- a/pkgs/development/interpreters/spidermonkey/17.0.nix +++ b/pkgs/development/interpreters/spidermonkey/17.0.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { name = "spidermonkey-${version}"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/js/mozjs${version}.tar.gz"; + url = "mirror://mozilla/js/mozjs${version}.tar.gz"; sha256 = "1fig2wf4f10v43mqx67y68z6h77sy900d1w0pz9qarrqx57rc7ij"; }; diff --git a/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix b/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix index 94f070d1a91d3..779f0ef26d456 100644 --- a/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix +++ b/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { name = "spidermonkey-${version}"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/js/js${version}.tar.gz"; + url = "mirror://mozilla/js/js${version}.tar.gz"; sha256 = "5d12f7e1f5b4a99436685d97b9b7b75f094d33580227aa998c406bbae6f2a687"; }; diff --git a/pkgs/development/interpreters/spidermonkey/24.2.nix b/pkgs/development/interpreters/spidermonkey/24.2.nix index 5c4fc85081551..96d73b69e6264 100644 --- a/pkgs/development/interpreters/spidermonkey/24.2.nix +++ b/pkgs/development/interpreters/spidermonkey/24.2.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { name = "spidermonkey-${version}"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/js/mozjs-${version}.tar.bz2"; + url = "mirror://mozilla/js/mozjs-${version}.tar.bz2"; sha256 = "1n1phk8r3l8icqrrap4czplnylawa0ddc2cc4cgdz46x3lrkybz6"; }; diff --git a/pkgs/development/interpreters/spidermonkey/default.nix b/pkgs/development/interpreters/spidermonkey/default.nix index 1ef0cf3b53985..21ba0b8cba484 100644 --- a/pkgs/development/interpreters/spidermonkey/default.nix +++ b/pkgs/development/interpreters/spidermonkey/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation rec { name = "spidermonkey-1.7"; src = fetchurl { - url = https://ftp.mozilla.org/pub/js/js-1.7.0.tar.gz; + url = mirror://mozilla/js/js-1.7.0.tar.gz; sha256 = "12v6v2ccw1y6ng3kny3xw0lfs58d1klylqq707k0x04m707kydj4"; }; diff --git a/pkgs/development/libraries/java/rhino/default.nix b/pkgs/development/libraries/java/rhino/default.nix index 87958512925f7..960af32d359b7 100644 --- a/pkgs/development/libraries/java/rhino/default.nix +++ b/pkgs/development/libraries/java/rhino/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation { name = "rhino-${version}"; src = fetchurl { - url = "https://ftp.mozilla.org/pub/js/rhino1_7R2.zip"; + url = "mirror://mozilla/js/rhino1_7R2.zip"; sha256 = "1p32hkghi6bkc3cf2dcqyaw5cjj7403mykcp0fy8f5bsnv0pszv7"; }; diff --git a/pkgs/development/libraries/nspr/default.nix b/pkgs/development/libraries/nspr/default.nix index 726b5d7b29afe..23f7ffb0ce89a 100644 --- a/pkgs/development/libraries/nspr/default.nix +++ b/pkgs/development/libraries/nspr/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { name = "nspr-${version}"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${version}/src/nspr-${version}.tar.gz"; + url = "mirror://mozilla/nspr/releases/v${version}/src/nspr-${version}.tar.gz"; sha256 = "1pk98bmc5xzbl62q5wf2d6mryf0v95z6rsmxz27nclwiaqg0mcg0"; }; diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix index fc5bffe6b7408..c95e2304e40f4 100644 --- a/pkgs/development/libraries/nss/default.nix +++ b/pkgs/development/libraries/nss/default.nix @@ -12,7 +12,7 @@ in stdenv.mkDerivation rec { version = "3.23"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_23_RTM/src/${name}.tar.gz"; + url = "mirror://mozilla/security/nss/releases/NSS_3_23_RTM/src/${name}.tar.gz"; sha256 = "1kqidv91icq96m9m8zx50n7px08km2l88458rkgyjwcn3kiq7cwl"; }; diff --git a/pkgs/development/libraries/svrcore/default.nix b/pkgs/development/libraries/svrcore/default.nix index a5559e87aadb9..ddb880e6bf27b 100644 --- a/pkgs/development/libraries/svrcore/default.nix +++ b/pkgs/development/libraries/svrcore/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { version = "4.0.4"; src = fetchurl { - url = "https://ftp.mozilla.org/pub/directory/svrcore/releases/${version}/src/${name}.tar.bz2"; + url = "mirror://mozilla/directory/svrcore/releases/${version}/src/${name}.tar.bz2"; sha256 = "0n3alg6bxml8952fb6h0bi0l29farvq21q6k20gy2ba90m3znwj7"; }; -- cgit 1.4.1 From 40dae1aba83023024dce253504e4d9c0cc6d8c3f Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Mon, 9 May 2016 19:41:21 +0200 Subject: scalafmt: init at 0.2.3 --- pkgs/development/tools/scalafmt/default.nix | 36 +++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/tools/scalafmt/default.nix (limited to 'pkgs/development') diff --git a/pkgs/development/tools/scalafmt/default.nix b/pkgs/development/tools/scalafmt/default.nix new file mode 100644 index 0000000000000..b909c646555f3 --- /dev/null +++ b/pkgs/development/tools/scalafmt/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, unzip, jre }: + +stdenv.mkDerivation rec { + version = "0.2.3"; + baseName = "scalafmt"; + name = "${baseName}-${version}"; + + src = fetchurl { + url = "https://github.com/olafurpg/scalafmt/releases/download/v${version}/${baseName}.tar.gz"; + sha256 = "0klzm86771wl6d8cq5cf4a4mfz8idcis6wrg0x2ix5rcc5zi0d4d"; + }; + + unpackPhase = "tar xvzf $src"; + + installPhase = '' + mkdir -p "$out/bin" + mkdir -p "$out/lib" + + cp cli/target/scala-2.11/scalafmt.jar "$out/lib/${name}.jar" + + cat > "$out/bin/${baseName}" << EOF + #!${stdenv.shell} + exec ${jre}/bin/java -jar "$out/lib/${name}.jar" "\$@" + EOF + + chmod a+x "$out/bin/${baseName}" + ''; + + meta = with stdenv.lib; { + description = "Opinionated code formatter for Scala"; + homepage = http://scalafmt.org; + license = licenses.asl20; + platforms = platforms.linux; + maintainers = [ maintainers.markus1189 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7b9fb49f630a8..0a3fc2aac6fec 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5231,6 +5231,8 @@ in scala_2_11 = callPackage ../development/compilers/scala { }; scala = scala_2_11; + scalafmt = callPackage ../development/tools/scalafmt { }; + sdcc = callPackage ../development/compilers/sdcc { boost = boost159; }; smlnjBootstrap = callPackage ../development/compilers/smlnj/bootstrap.nix { }; -- cgit 1.4.1 From a40c1c21f14d4fc246aeea0d9e4e9f6aeb124bb7 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 9 May 2016 19:13:40 +0200 Subject: autogen: 5.18.6 -> 5.18.7 --- pkgs/development/tools/misc/autogen/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/misc/autogen/default.nix b/pkgs/development/tools/misc/autogen/default.nix index d2ddcabc0b1eb..fbce45b20e115 100644 --- a/pkgs/development/tools/misc/autogen/default.nix +++ b/pkgs/development/tools/misc/autogen/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "autogen-${version}"; - version = "5.18.6"; + version = "5.18.7"; src = fetchurl { url = "mirror://gnu/autogen/rel${version}/autogen-${version}.tar.xz"; - sha256 = "0sfmmy19k9z0j3f738fyk6ljf6b66410cvd5zzyplxi2683j10qs"; + sha256 = "0ncgdhy3cp7bj8p3ipbcmqwq1zrxwy5vmfx76lxy08zypan8zkq0"; }; outputs = [ "dev" "bin" "lib" "out" "man" "info" ]; -- cgit 1.4.1 From 06d8903374d94ccc2188369dfcbbfb3e9aa6ceab Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 10 May 2016 01:24:01 +0200 Subject: SDL2_image: 2.0.0 -> 2.0.1 --- pkgs/development/libraries/SDL2_image/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/SDL2_image/default.nix b/pkgs/development/libraries/SDL2_image/default.nix index 55b465226d8da..eab9b1fb55d00 100644 --- a/pkgs/development/libraries/SDL2_image/default.nix +++ b/pkgs/development/libraries/SDL2_image/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, SDL2, libpng, libjpeg, libtiff, libungif, libXpm, zlib }: stdenv.mkDerivation rec { - name = "SDL2_image-2.0.0"; + name = "SDL2_image-2.0.1"; src = fetchurl { url = "http://www.libsdl.org/projects/SDL_image/release/${name}.tar.gz"; - sha256 = "0d3jlhkmr0j5a2dd5h6y29jfcsj7mkl16wghm6n3nqqp7g3ib65j"; + sha256 = "0r3z1l7fdn76qkpy7snpkcjqz8dkv2zp6lsqpq25q4m5xsyaygis"; }; buildInputs = [SDL2 libpng libjpeg libtiff libungif libXpm zlib]; -- cgit 1.4.1 From 5dc7093e56af38f297a18987e26af27da95ee729 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 10 May 2016 01:24:13 +0200 Subject: SDL2_mixer: 2.0.0 -> 2.0.1 --- pkgs/development/libraries/SDL2_mixer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/SDL2_mixer/default.nix b/pkgs/development/libraries/SDL2_mixer/default.nix index 06e174371c7dd..dcfa130de3a48 100644 --- a/pkgs/development/libraries/SDL2_mixer/default.nix +++ b/pkgs/development/libraries/SDL2_mixer/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, SDL2, libogg, libvorbis, enableNativeMidi ? false }: stdenv.mkDerivation rec { - name = "SDL2_mixer-2.0.0"; + name = "SDL2_mixer-2.0.1"; src = fetchurl { url = "http://www.libsdl.org/projects/SDL_mixer/release/${name}.tar.gz"; - sha256 = "0nvjdxjchrajrn0jag877hdx9zb788hsd315zzg1lyck2wb0xkm8"; + sha256 = "0pv9jzjpcjlbiaybvwrb4avmv46qk7iqxlnqrd2dfj82c4mgc92s"; }; propagatedBuildInputs = [SDL2 libogg libvorbis]; -- cgit 1.4.1 From 89384a005622d520dc55977ceca86f5520ba46df Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 10 May 2016 01:24:32 +0200 Subject: SDL2_ttf: 2.0.12 -> 2.0.14 --- pkgs/development/libraries/SDL2_ttf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/SDL2_ttf/default.nix b/pkgs/development/libraries/SDL2_ttf/default.nix index d1600ee8a8f49..8d11689aba546 100644 --- a/pkgs/development/libraries/SDL2_ttf/default.nix +++ b/pkgs/development/libraries/SDL2_ttf/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, SDL2, freetype }: stdenv.mkDerivation rec { - name = "SDL2_ttf-2.0.12"; + name = "SDL2_ttf-2.0.14"; src = fetchurl { url = "https://www.libsdl.org/projects/SDL_ttf/release/${name}.tar.gz"; - sha256 = "0vkg6lyj278mdpd52map3rfi65fbq16w67ahmmfcl77a8da60a47"; + sha256 = "0xljwcpvd2knrjdfag5b257xqayplz55mqlszrqp0kpnphh5xnrl"; }; buildInputs = [SDL2 freetype]; -- cgit 1.4.1 From ad0a9f5f52178a4b8b69e231c839b3fabfee3b2d Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 10 May 2016 01:59:14 +0200 Subject: autogen: fix borked source URL and hash --- pkgs/development/tools/misc/autogen/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/misc/autogen/default.nix b/pkgs/development/tools/misc/autogen/default.nix index fbce45b20e115..8170fc46f3402 100644 --- a/pkgs/development/tools/misc/autogen/default.nix +++ b/pkgs/development/tools/misc/autogen/default.nix @@ -5,8 +5,8 @@ stdenv.mkDerivation rec { version = "5.18.7"; src = fetchurl { - url = "mirror://gnu/autogen/rel${version}/autogen-${version}.tar.xz"; - sha256 = "0ncgdhy3cp7bj8p3ipbcmqwq1zrxwy5vmfx76lxy08zypan8zkq0"; + url = "mirror://gnu/autogen/autogen-${version}.tar.xz"; + sha256 = "01d4m8ckww12sy50vgyxlnz83z9dxqpyqp153cscncc9w6jq19d7"; }; outputs = [ "dev" "bin" "lib" "out" "man" "info" ]; -- cgit 1.4.1 From 0ac224345c9136e5ebd5b9cb31e711bed2bec1a7 Mon Sep 17 00:00:00 2001 From: Tomasz Kontusz Date: Tue, 10 May 2016 05:46:25 +0200 Subject: d-feet: 0.3.10 -> 0.3.11 --- pkgs/development/tools/misc/d-feet/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/misc/d-feet/default.nix b/pkgs/development/tools/misc/d-feet/default.nix index e1a3a8223f234..783607860dec2 100644 --- a/pkgs/development/tools/misc/d-feet/default.nix +++ b/pkgs/development/tools/misc/d-feet/default.nix @@ -2,7 +2,7 @@ , pep8, python, makeWrapper, gnome3, pygobject3, libwnck3 }: let - version = "${major}.10"; + version = "${major}.11"; major = "0.3"; in @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/d-feet/${major}/d-feet-${version}.tar.xz"; - sha256 = "88f0df5fcb862387ff3d1793873c5eb368c3e4db0bbd82ea65f748cbf70a6359"; + sha256 = "a3dc940c66f84b996c328531e3034d475ec690d7ff639445ff7ca746aa8cb9c2"; }; buildInputs = [ -- cgit 1.4.1 From 111110daee4baccc1df20e162d508cfde310dc1b Mon Sep 17 00:00:00 2001 From: Tomas Hlavaty Date: Tue, 10 May 2016 09:00:23 +0200 Subject: sbcl: 1.3.4 -> 1.3.5 --- pkgs/development/compilers/sbcl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index 946205011f2b7..893b6efea77a8 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -9,11 +9,11 @@ stdenv.mkDerivation rec { name = "sbcl-${version}"; - version = "1.3.4"; + version = "1.3.5"; src = fetchurl { url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2"; - sha256 = "0zx6z43xfnw1b6v5d3bpjrwgqs14wxlji22nl0lr4wmzbfbzvqli"; + sha256 = "0p3f9bvwdcl84n1l6imww547bdbfsbkvad8iad43jcb2hrpy3wf8"; }; patchPhase = '' -- cgit 1.4.1 From 99bab146a5281c737f4043a7d39fdf1a1110d713 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Tue, 10 May 2016 11:25:18 +0200 Subject: julia: 0.4.2 -> 0.4.5 --- pkgs/development/compilers/julia/0003-no-ldconfig.patch | 2 +- pkgs/development/compilers/julia/default.nix | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/julia/0003-no-ldconfig.patch b/pkgs/development/compilers/julia/0003-no-ldconfig.patch index d490b70492786..06d1a57ed6278 100644 --- a/pkgs/development/compilers/julia/0003-no-ldconfig.patch +++ b/pkgs/development/compilers/julia/0003-no-ldconfig.patch @@ -21,9 +21,9 @@ index 22015ff..2821192 100644 - FILE *ldc = popen("/sbin/ldconfig -r", "r"); -#endif + FILE *ldc = popen("true", "r"); + if (ldc == NULL) return; // ignore errors in running ldconfig (other than whatever might have been printed to stderr) while (!feof(ldc)) { - ssize_t n = getline(&line, &sz, ldc); -- 2.5.2 diff --git a/pkgs/development/compilers/julia/default.nix b/pkgs/development/compilers/julia/default.nix index 9e90ecfbe2165..1dc6805bcd3ba 100644 --- a/pkgs/development/compilers/julia/default.nix +++ b/pkgs/development/compilers/julia/default.nix @@ -33,10 +33,10 @@ let sha256 = "03kaqbjbi6viz0n33dk5jlf6ayxqlsq4804n7kwkndiga9s4hd42"; }; - libuvVersion = "9ab431a88fe255dd21e19a11f7fa2dd95774abf4"; + libuvVersion = "efb40768b7c7bd9f173a7868f74b92b1c5a61a0e"; libuv = fetchurl { url = "https://api.github.com/repos/JuliaLang/libuv/tarball/${libuvVersion}"; - sha256 = "1bh973lbrzrjk7pcjbjnh4n92qldi81ql3aqsclywn2yg07a36h5"; + sha256 = "1znkxyv1cy9pjap7afypipzsn04533ni3pqjd191fdgw2sv9cal7"; }; rmathVersion = "0.1"; @@ -48,12 +48,12 @@ in stdenv.mkDerivation rec { pname = "julia"; - version = "0.4.2"; + version = "0.4.5"; name = "${pname}-${version}"; src = fetchurl { url = "https://github.com/JuliaLang/${pname}/releases/download/v${version}/${name}.tar.gz"; - sha256 = "04i5kjji5553lkdxz3wgflg1mav5ivwy2dascjy8jprqpq33aknk"; + sha256 = "09gc6yf3v4in0qwhrbgjrjgvblp941di0mli4zax22mvf4dzc7s4"; }; prePatch = '' -- cgit 1.4.1 From 85aa0ea16baeca5916c22f82af2e90d78144857f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 5 May 2016 13:50:47 +0200 Subject: hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160406-11-g659087e using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/62d7be84b9063c9df4036e36456540730b3ea803 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/4d628b7b7ec70abdaf5868f8a818e2ebdc05c2bd - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/186e5fa04d9d566c5c5c35c137e39e81ed049e2d --- .../haskell-modules/configuration-lts-0.0.nix | 20 + .../haskell-modules/configuration-lts-0.1.nix | 20 + .../haskell-modules/configuration-lts-0.2.nix | 20 + .../haskell-modules/configuration-lts-0.3.nix | 20 + .../haskell-modules/configuration-lts-0.4.nix | 20 + .../haskell-modules/configuration-lts-0.5.nix | 20 + .../haskell-modules/configuration-lts-0.6.nix | 20 + .../haskell-modules/configuration-lts-0.7.nix | 20 + .../haskell-modules/configuration-lts-1.0.nix | 20 + .../haskell-modules/configuration-lts-1.1.nix | 20 + .../haskell-modules/configuration-lts-1.10.nix | 20 + .../haskell-modules/configuration-lts-1.11.nix | 20 + .../haskell-modules/configuration-lts-1.12.nix | 20 + .../haskell-modules/configuration-lts-1.13.nix | 20 + .../haskell-modules/configuration-lts-1.14.nix | 20 + .../haskell-modules/configuration-lts-1.15.nix | 20 + .../haskell-modules/configuration-lts-1.2.nix | 20 + .../haskell-modules/configuration-lts-1.4.nix | 20 + .../haskell-modules/configuration-lts-1.5.nix | 20 + .../haskell-modules/configuration-lts-1.7.nix | 20 + .../haskell-modules/configuration-lts-1.8.nix | 20 + .../haskell-modules/configuration-lts-1.9.nix | 20 + .../haskell-modules/configuration-lts-2.0.nix | 20 + .../haskell-modules/configuration-lts-2.1.nix | 20 + .../haskell-modules/configuration-lts-2.10.nix | 20 + .../haskell-modules/configuration-lts-2.11.nix | 20 + .../haskell-modules/configuration-lts-2.12.nix | 20 + .../haskell-modules/configuration-lts-2.13.nix | 20 + .../haskell-modules/configuration-lts-2.14.nix | 20 + .../haskell-modules/configuration-lts-2.15.nix | 20 + .../haskell-modules/configuration-lts-2.16.nix | 20 + .../haskell-modules/configuration-lts-2.17.nix | 20 + .../haskell-modules/configuration-lts-2.18.nix | 20 + .../haskell-modules/configuration-lts-2.19.nix | 21 + .../haskell-modules/configuration-lts-2.2.nix | 20 + .../haskell-modules/configuration-lts-2.20.nix | 21 + .../haskell-modules/configuration-lts-2.21.nix | 21 + .../haskell-modules/configuration-lts-2.22.nix | 21 + .../haskell-modules/configuration-lts-2.3.nix | 20 + .../haskell-modules/configuration-lts-2.4.nix | 20 + .../haskell-modules/configuration-lts-2.5.nix | 20 + .../haskell-modules/configuration-lts-2.6.nix | 20 + .../haskell-modules/configuration-lts-2.7.nix | 20 + .../haskell-modules/configuration-lts-2.8.nix | 20 + .../haskell-modules/configuration-lts-2.9.nix | 20 + .../haskell-modules/configuration-lts-3.0.nix | 21 + .../haskell-modules/configuration-lts-3.1.nix | 21 + .../haskell-modules/configuration-lts-3.10.nix | 21 + .../haskell-modules/configuration-lts-3.11.nix | 21 + .../haskell-modules/configuration-lts-3.12.nix | 21 + .../haskell-modules/configuration-lts-3.13.nix | 21 + .../haskell-modules/configuration-lts-3.14.nix | 21 + .../haskell-modules/configuration-lts-3.15.nix | 21 + .../haskell-modules/configuration-lts-3.16.nix | 21 + .../haskell-modules/configuration-lts-3.17.nix | 21 + .../haskell-modules/configuration-lts-3.18.nix | 21 + .../haskell-modules/configuration-lts-3.19.nix | 21 + .../haskell-modules/configuration-lts-3.2.nix | 21 + .../haskell-modules/configuration-lts-3.20.nix | 21 + .../haskell-modules/configuration-lts-3.21.nix | 21 + .../haskell-modules/configuration-lts-3.22.nix | 21 + .../haskell-modules/configuration-lts-3.3.nix | 21 + .../haskell-modules/configuration-lts-3.4.nix | 21 + .../haskell-modules/configuration-lts-3.5.nix | 21 + .../haskell-modules/configuration-lts-3.6.nix | 21 + .../haskell-modules/configuration-lts-3.7.nix | 21 + .../haskell-modules/configuration-lts-3.8.nix | 21 + .../haskell-modules/configuration-lts-3.9.nix | 21 + .../haskell-modules/configuration-lts-4.0.nix | 25 + .../haskell-modules/configuration-lts-4.1.nix | 25 + .../haskell-modules/configuration-lts-4.2.nix | 25 + .../haskell-modules/configuration-lts-5.0.nix | 26 + .../haskell-modules/configuration-lts-5.1.nix | 26 + .../haskell-modules/configuration-lts-5.10.nix | 30 + .../haskell-modules/configuration-lts-5.11.nix | 32 + .../haskell-modules/configuration-lts-5.12.nix | 32 + .../haskell-modules/configuration-lts-5.13.nix | 34 + .../haskell-modules/configuration-lts-5.14.nix | 36 + .../haskell-modules/configuration-lts-5.15.nix | 37 + .../haskell-modules/configuration-lts-5.2.nix | 26 + .../haskell-modules/configuration-lts-5.3.nix | 26 + .../haskell-modules/configuration-lts-5.4.nix | 26 + .../haskell-modules/configuration-lts-5.5.nix | 26 + .../haskell-modules/configuration-lts-5.6.nix | 27 + .../haskell-modules/configuration-lts-5.7.nix | 28 + .../haskell-modules/configuration-lts-5.8.nix | 28 + .../haskell-modules/configuration-lts-5.9.nix | 29 + .../haskell-modules/hackage-packages.nix | 3068 ++++++++++++++++++-- 88 files changed, 4782 insertions(+), 217 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index e4a68377f1752..650cbd38e6e89 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1189,6 +1190,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1283,6 +1285,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2458,6 +2461,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3636,6 +3640,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4592,6 +4597,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4604,6 +4610,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4918,6 +4925,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5254,6 +5262,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5627,6 +5636,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5983,6 +5993,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6970,6 +6981,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7613,6 +7625,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7893,6 +7906,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8212,6 +8226,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8415,6 +8430,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8539,6 +8555,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8592,6 +8609,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8722,6 +8740,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9058,6 +9077,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 74f7ad4a4895d..4cafbf175bca1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1189,6 +1190,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1283,6 +1285,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2458,6 +2461,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3636,6 +3640,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4592,6 +4597,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4604,6 +4610,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4918,6 +4925,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5254,6 +5262,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5627,6 +5636,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5983,6 +5993,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6970,6 +6981,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7613,6 +7625,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7893,6 +7906,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8212,6 +8226,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8415,6 +8430,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8539,6 +8555,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8592,6 +8609,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8722,6 +8740,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9058,6 +9077,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index ae72d4f2d44bb..443563ba9342e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1189,6 +1190,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1283,6 +1285,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2458,6 +2461,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3636,6 +3640,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4592,6 +4597,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4604,6 +4610,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4918,6 +4925,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5254,6 +5262,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5627,6 +5636,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5983,6 +5993,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6970,6 +6981,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7613,6 +7625,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7893,6 +7906,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8212,6 +8226,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8415,6 +8430,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8539,6 +8555,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8592,6 +8609,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8722,6 +8740,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9058,6 +9077,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 54f08ded62276..480526af9a25f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1189,6 +1190,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1283,6 +1285,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2458,6 +2461,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3636,6 +3640,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4592,6 +4597,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4604,6 +4610,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4918,6 +4925,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5254,6 +5262,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5627,6 +5636,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5983,6 +5993,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6970,6 +6981,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7613,6 +7625,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7893,6 +7906,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8212,6 +8226,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8415,6 +8430,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8539,6 +8555,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8592,6 +8609,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8722,6 +8740,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9058,6 +9077,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 0ab2ae057da80..4083103c25dfe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1189,6 +1190,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1283,6 +1285,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2458,6 +2461,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3635,6 +3639,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4589,6 +4594,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4601,6 +4607,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4915,6 +4922,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5251,6 +5259,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5624,6 +5633,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5980,6 +5990,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6967,6 +6978,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7609,6 +7621,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7889,6 +7902,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8208,6 +8222,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8411,6 +8426,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8535,6 +8551,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8588,6 +8605,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8718,6 +8736,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9054,6 +9073,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 39ebdb342de5f..46d0d2119f8b0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1189,6 +1190,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1283,6 +1285,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2458,6 +2461,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3635,6 +3639,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4589,6 +4594,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4601,6 +4607,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4915,6 +4922,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5251,6 +5259,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5624,6 +5633,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5980,6 +5990,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6967,6 +6978,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7609,6 +7621,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7889,6 +7902,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8208,6 +8222,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8411,6 +8426,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8535,6 +8551,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8588,6 +8605,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8718,6 +8736,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9054,6 +9073,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 07e0797c5ee2c..ace7afaccecca 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1188,6 +1189,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1282,6 +1284,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2457,6 +2460,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3634,6 +3638,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4587,6 +4592,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4599,6 +4605,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4913,6 +4920,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5249,6 +5257,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5622,6 +5631,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5978,6 +5988,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6965,6 +6976,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7606,6 +7618,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7886,6 +7899,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8205,6 +8219,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8408,6 +8423,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8532,6 +8548,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8585,6 +8602,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8715,6 +8733,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9051,6 +9070,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 8e486e97dc37c..dd0c62bb142c1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1188,6 +1189,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1282,6 +1284,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2457,6 +2460,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3634,6 +3638,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4587,6 +4592,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4599,6 +4605,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4913,6 +4920,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5249,6 +5257,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5622,6 +5631,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5978,6 +5988,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6965,6 +6976,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7606,6 +7618,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7886,6 +7899,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8205,6 +8219,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8408,6 +8423,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8532,6 +8548,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8585,6 +8602,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8715,6 +8733,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9051,6 +9070,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 8db20350fe7f9..65d6fb97672a5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1185,6 +1186,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1279,6 +1281,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2450,6 +2453,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3625,6 +3629,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4579,6 +4584,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4591,6 +4597,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4904,6 +4911,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5240,6 +5248,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5613,6 +5622,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5969,6 +5979,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6956,6 +6967,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7596,6 +7608,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7876,6 +7889,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8194,6 +8208,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8397,6 +8412,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8521,6 +8537,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8574,6 +8591,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8703,6 +8721,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9039,6 +9058,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 6430eb0b9e608..a4f9f8619ce4b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1185,6 +1186,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1279,6 +1281,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2448,6 +2451,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3622,6 +3626,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4573,6 +4578,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4585,6 +4591,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4898,6 +4905,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5234,6 +5242,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5607,6 +5616,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5962,6 +5972,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6949,6 +6960,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7589,6 +7601,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7868,6 +7881,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8185,6 +8199,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8386,6 +8401,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8509,6 +8525,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8562,6 +8579,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8691,6 +8709,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9026,6 +9045,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 1772ea05317d6..18f9863b7cf2d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3613,6 +3617,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4562,6 +4567,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4574,6 +4580,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4887,6 +4894,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5218,6 +5226,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5590,6 +5599,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5945,6 +5955,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6929,6 +6940,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7567,6 +7579,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7845,6 +7858,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8162,6 +8176,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8361,6 +8376,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8483,6 +8499,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8535,6 +8552,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8664,6 +8682,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8998,6 +9017,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 711dfce2f7b06..d695840afc3d3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3612,6 +3616,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4561,6 +4566,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4573,6 +4579,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4886,6 +4893,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5215,6 +5223,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5586,6 +5595,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5941,6 +5951,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6925,6 +6936,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7563,6 +7575,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7841,6 +7854,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8158,6 +8172,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8357,6 +8372,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8479,6 +8495,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8531,6 +8548,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8660,6 +8678,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8994,6 +9013,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 245d1cd63f2a7..1da893c7adb3a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3612,6 +3616,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4560,6 +4565,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4572,6 +4578,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4885,6 +4892,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5214,6 +5222,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_8"; "json-b" = dontDistribute super."json-b"; @@ -5585,6 +5594,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5940,6 +5950,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6924,6 +6935,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7562,6 +7574,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7840,6 +7853,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8157,6 +8171,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8356,6 +8371,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8478,6 +8494,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8530,6 +8547,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8659,6 +8677,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8993,6 +9012,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 6dbede1453a68..f40adc27b4435 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3612,6 +3616,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4559,6 +4564,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4571,6 +4577,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4884,6 +4891,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5213,6 +5221,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_8"; "json-b" = dontDistribute super."json-b"; @@ -5584,6 +5593,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5939,6 +5949,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6923,6 +6934,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7561,6 +7573,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7839,6 +7852,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8156,6 +8170,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8354,6 +8369,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8476,6 +8492,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8528,6 +8545,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8657,6 +8675,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8991,6 +9010,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 253d392a0838c..503f9fbc5ba73 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1183,6 +1184,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1277,6 +1279,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2441,6 +2444,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3609,6 +3613,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4556,6 +4561,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4568,6 +4574,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4881,6 +4888,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5210,6 +5218,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_9"; "json-b" = dontDistribute super."json-b"; @@ -5581,6 +5590,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5936,6 +5946,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6920,6 +6931,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7557,6 +7569,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7835,6 +7848,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8152,6 +8166,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8350,6 +8365,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8472,6 +8488,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8524,6 +8541,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8653,6 +8671,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8987,6 +9006,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 518b8b3b1b8fd..c8579330df607 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1182,6 +1183,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1276,6 +1278,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2439,6 +2442,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3605,6 +3609,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4552,6 +4557,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4564,6 +4570,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4877,6 +4884,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5206,6 +5214,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_9"; "json-b" = dontDistribute super."json-b"; @@ -5577,6 +5586,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5932,6 +5942,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6914,6 +6925,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7550,6 +7562,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7828,6 +7841,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8143,6 +8157,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8341,6 +8356,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8463,6 +8479,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8515,6 +8532,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8644,6 +8662,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8978,6 +8997,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 09655c3ab95aa..91ea67ba52bd0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1185,6 +1186,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1279,6 +1281,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2446,6 +2449,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3619,6 +3623,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4570,6 +4575,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4582,6 +4588,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4895,6 +4902,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5231,6 +5239,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5604,6 +5613,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5959,6 +5969,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6945,6 +6956,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7583,6 +7595,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7862,6 +7875,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8179,6 +8193,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8380,6 +8395,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8503,6 +8519,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8556,6 +8573,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8685,6 +8703,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9020,6 +9039,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 31380f1ea2b43..63e9fcbaad209 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2445,6 +2448,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3617,6 +3621,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4567,6 +4572,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4579,6 +4585,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4892,6 +4899,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5228,6 +5236,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5601,6 +5610,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5956,6 +5966,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6941,6 +6952,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7579,6 +7591,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7858,6 +7871,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8175,6 +8189,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8375,6 +8390,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8498,6 +8514,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8551,6 +8568,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8680,6 +8698,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9015,6 +9034,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 60bb9fd4473d5..023ec7a4d2551 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3616,6 +3620,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4566,6 +4571,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4578,6 +4584,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4891,6 +4898,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5227,6 +5235,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5600,6 +5609,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5955,6 +5965,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6940,6 +6951,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7578,6 +7590,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7857,6 +7870,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8174,6 +8188,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8374,6 +8389,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8496,6 +8512,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8549,6 +8566,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8678,6 +8696,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9012,6 +9031,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index c6f84999de68a..c6753374f6454 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3616,6 +3620,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4566,6 +4571,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4578,6 +4584,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4891,6 +4898,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5222,6 +5230,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5595,6 +5604,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5950,6 +5960,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6935,6 +6946,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7573,6 +7585,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7852,6 +7865,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8169,6 +8183,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8369,6 +8384,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8491,6 +8507,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8544,6 +8561,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8673,6 +8691,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9007,6 +9026,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index c031f18467e42..b0673b6d1f539 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3614,6 +3618,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4563,6 +4568,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4575,6 +4581,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4888,6 +4895,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5219,6 +5227,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5591,6 +5600,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5946,6 +5956,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6931,6 +6942,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7569,6 +7581,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7848,6 +7861,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8165,6 +8179,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8365,6 +8380,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8487,6 +8503,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8539,6 +8556,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8668,6 +8686,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9002,6 +9021,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index fde9da194b017..41d9848ebbc44 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3613,6 +3617,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4562,6 +4567,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4574,6 +4580,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4887,6 +4894,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5218,6 +5226,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5590,6 +5599,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5945,6 +5955,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6930,6 +6941,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7568,6 +7580,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7847,6 +7860,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8164,6 +8178,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8364,6 +8379,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8486,6 +8502,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8538,6 +8555,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8667,6 +8685,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9001,6 +9020,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index be36e53631a1b..ecdf00390c3fd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1176,6 +1177,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1270,6 +1272,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_3"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_3"; "amazonka-config" = doDistribute super."amazonka-config_0_3_3"; "amazonka-core" = doDistribute super."amazonka-core_0_3_3"; @@ -2427,6 +2430,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3591,6 +3595,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4534,6 +4539,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4546,6 +4552,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4859,6 +4866,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5181,6 +5189,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_11"; "json-b" = dontDistribute super."json-b"; @@ -5547,6 +5556,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5900,6 +5910,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6872,6 +6883,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7507,6 +7519,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7781,6 +7794,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8094,6 +8108,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8292,6 +8307,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8414,6 +8430,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8466,6 +8483,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8594,6 +8612,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8926,6 +8945,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index c6f3f5df49b71..c5fa05bdec2df 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1176,6 +1177,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1270,6 +1272,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_3"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_3"; "amazonka-config" = doDistribute super."amazonka-config_0_3_3"; "amazonka-core" = doDistribute super."amazonka-core_0_3_3"; @@ -2426,6 +2429,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3590,6 +3594,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4533,6 +4538,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4545,6 +4551,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4858,6 +4865,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5180,6 +5188,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5546,6 +5555,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5899,6 +5909,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6871,6 +6882,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7506,6 +7518,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7780,6 +7793,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8093,6 +8107,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8291,6 +8306,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8413,6 +8429,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8465,6 +8482,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8593,6 +8611,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8924,6 +8943,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 7117655679d25..94d2f68470175 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1265,6 +1267,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2414,6 +2417,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3573,6 +3577,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4514,6 +4519,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4526,6 +4532,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4837,6 +4844,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5156,6 +5164,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5521,6 +5530,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5874,6 +5884,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6844,6 +6855,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7476,6 +7488,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7749,6 +7762,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8055,6 +8069,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8253,6 +8268,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8373,6 +8389,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8425,6 +8442,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8553,6 +8571,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8884,6 +8903,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 8bc437ba51169..61d31f0ad61f6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2413,6 +2416,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3571,6 +3575,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4511,6 +4516,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4523,6 +4529,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4834,6 +4841,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5152,6 +5160,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5517,6 +5526,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5870,6 +5880,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6838,6 +6849,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7469,6 +7481,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7742,6 +7755,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8046,6 +8060,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8244,6 +8259,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8364,6 +8380,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8416,6 +8433,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8544,6 +8562,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8875,6 +8894,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index ce5accd348deb..d351d00135541 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2413,6 +2416,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3571,6 +3575,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4511,6 +4516,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4523,6 +4529,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4834,6 +4841,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5152,6 +5160,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5517,6 +5526,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5870,6 +5880,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6838,6 +6849,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7468,6 +7480,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7741,6 +7754,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8045,6 +8059,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8243,6 +8258,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8363,6 +8379,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8415,6 +8432,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8543,6 +8561,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8874,6 +8893,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 1ca0df123794e..3dac4d962291e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2413,6 +2416,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3571,6 +3575,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4510,6 +4515,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4522,6 +4528,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4833,6 +4840,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5150,6 +5158,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5515,6 +5524,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5868,6 +5878,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6836,6 +6847,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7466,6 +7478,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7739,6 +7752,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8043,6 +8057,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8241,6 +8256,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8361,6 +8377,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8413,6 +8430,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8541,6 +8559,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8872,6 +8891,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 06608df446207..704a1ce1cd258 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2413,6 +2416,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3570,6 +3574,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4509,6 +4514,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4521,6 +4527,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4831,6 +4838,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5148,6 +5156,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5513,6 +5522,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5866,6 +5876,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6834,6 +6845,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7464,6 +7476,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7736,6 +7749,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8040,6 +8054,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8238,6 +8253,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8358,6 +8374,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8410,6 +8427,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8538,6 +8556,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8869,6 +8888,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 54144d1a3fdea..a31c927ce60cd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2413,6 +2416,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3569,6 +3573,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4508,6 +4513,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4520,6 +4526,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4830,6 +4837,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5147,6 +5155,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5512,6 +5521,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5865,6 +5875,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6832,6 +6843,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7462,6 +7474,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7734,6 +7747,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8037,6 +8051,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8235,6 +8250,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8355,6 +8371,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8407,6 +8424,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8535,6 +8553,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8866,6 +8885,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index c5fb5f66fa56a..d9da0c1d9ef13 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2412,6 +2415,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3566,6 +3570,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4505,6 +4510,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4517,6 +4523,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4827,6 +4834,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5144,6 +5152,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5508,6 +5517,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5861,6 +5871,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6828,6 +6839,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7458,6 +7470,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7730,6 +7743,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8033,6 +8047,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8231,6 +8246,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8351,6 +8367,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8403,6 +8420,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8531,6 +8549,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8862,6 +8881,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 061cd3029dbae..930f92194abc5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2410,6 +2413,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3562,6 +3566,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4501,6 +4506,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4513,6 +4519,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4823,6 +4830,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5140,6 +5148,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5504,6 +5513,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5857,6 +5867,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6823,6 +6834,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7453,6 +7465,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7725,6 +7738,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8028,6 +8042,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8226,6 +8241,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8346,6 +8362,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8398,6 +8415,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8526,6 +8544,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8857,6 +8876,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index f7c844dc6f3e6..76dc598d9a26b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2409,6 +2412,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3560,6 +3564,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4499,6 +4504,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4511,6 +4517,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4821,6 +4828,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5138,6 +5146,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5502,6 +5511,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5855,6 +5865,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6820,6 +6831,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7450,6 +7462,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7722,6 +7735,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8024,6 +8038,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8222,6 +8237,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8342,6 +8358,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8394,6 +8411,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8522,6 +8540,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8853,6 +8872,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index b8f383f677cd6..91f1c3b915538 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2409,6 +2412,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3559,6 +3563,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4498,6 +4503,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4510,6 +4516,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4820,6 +4827,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5137,6 +5145,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5501,6 +5510,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5853,6 +5863,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6818,6 +6829,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7448,6 +7460,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7711,6 +7724,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; @@ -7719,6 +7733,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8021,6 +8036,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8219,6 +8235,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8339,6 +8356,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8391,6 +8409,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8519,6 +8538,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8850,6 +8870,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index cc8d31652af6b..6ef69d35e0cdb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1175,6 +1176,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1269,6 +1271,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_3"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_3"; "amazonka-config" = doDistribute super."amazonka-config_0_3_3"; "amazonka-core" = doDistribute super."amazonka-core_0_3_3"; @@ -2423,6 +2426,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3587,6 +3591,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4530,6 +4535,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4542,6 +4548,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4855,6 +4862,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5177,6 +5185,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5543,6 +5552,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5896,6 +5906,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6868,6 +6879,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7503,6 +7515,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7777,6 +7790,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8090,6 +8104,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8288,6 +8303,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8410,6 +8426,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8462,6 +8479,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8590,6 +8608,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8921,6 +8940,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 00b678af7ade2..32a6decd73c72 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2408,6 +2411,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3558,6 +3562,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4497,6 +4502,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4509,6 +4515,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4819,6 +4826,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5136,6 +5144,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5500,6 +5509,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5852,6 +5862,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6816,6 +6827,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7446,6 +7458,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7708,6 +7721,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; @@ -7716,6 +7730,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8018,6 +8033,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8216,6 +8232,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8336,6 +8353,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8388,6 +8406,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8516,6 +8535,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8847,6 +8867,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index e987f7c7eddda..e0ada6ea37809 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2408,6 +2411,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3558,6 +3562,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4497,6 +4502,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4509,6 +4515,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4819,6 +4826,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5136,6 +5144,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5500,6 +5509,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5852,6 +5862,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6815,6 +6826,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7445,6 +7457,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7707,6 +7720,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; @@ -7715,6 +7729,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8017,6 +8032,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8215,6 +8231,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8335,6 +8352,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8387,6 +8405,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8515,6 +8534,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8846,6 +8866,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 8b2fd373e07ca..6620cd55c7241 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2408,6 +2411,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3558,6 +3562,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4496,6 +4501,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4508,6 +4514,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4818,6 +4825,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5135,6 +5143,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5499,6 +5508,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5851,6 +5861,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6814,6 +6825,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7444,6 +7456,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7706,6 +7719,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; @@ -7714,6 +7728,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8016,6 +8031,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8214,6 +8230,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8334,6 +8351,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8386,6 +8404,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8514,6 +8533,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8845,6 +8865,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 68b2a4225e9ad..a44268a447473 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1175,6 +1176,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1269,6 +1271,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_3"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_3"; "amazonka-config" = doDistribute super."amazonka-config_0_3_3"; "amazonka-core" = doDistribute super."amazonka-core_0_3_3"; @@ -2423,6 +2426,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3586,6 +3590,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4529,6 +4534,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4541,6 +4547,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4854,6 +4861,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5175,6 +5183,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5541,6 +5550,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5894,6 +5904,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6866,6 +6877,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7501,6 +7513,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7775,6 +7788,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8088,6 +8102,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8286,6 +8301,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8408,6 +8424,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8460,6 +8477,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8588,6 +8606,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8919,6 +8938,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index e7ab14804b477..ba79b7ba72b65 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1175,6 +1176,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1269,6 +1271,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2422,6 +2425,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3585,6 +3589,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4528,6 +4533,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4540,6 +4546,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4853,6 +4860,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5174,6 +5182,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5540,6 +5549,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5893,6 +5903,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6864,6 +6875,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7498,6 +7510,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7772,6 +7785,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8085,6 +8099,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8283,6 +8298,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8405,6 +8421,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8457,6 +8474,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8585,6 +8603,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8916,6 +8935,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index d94686e2de887..6a56682de17e1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1175,6 +1176,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1269,6 +1271,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2421,6 +2424,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3584,6 +3588,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4527,6 +4532,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4539,6 +4545,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4852,6 +4859,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5173,6 +5181,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5539,6 +5548,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5892,6 +5902,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6863,6 +6874,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7497,6 +7509,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7771,6 +7784,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8084,6 +8098,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8282,6 +8297,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8404,6 +8420,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8456,6 +8473,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8584,6 +8602,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8915,6 +8934,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index e869acb8a5199..718c30f3c896b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1173,6 +1174,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1267,6 +1269,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2418,6 +2421,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3581,6 +3585,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4522,6 +4527,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4534,6 +4540,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4847,6 +4854,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5168,6 +5176,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5534,6 +5543,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5887,6 +5897,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6857,6 +6868,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7491,6 +7503,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7765,6 +7778,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8078,6 +8092,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8276,6 +8291,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8396,6 +8412,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8448,6 +8465,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8576,6 +8594,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8907,6 +8926,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 46e293f904d19..77112a4f1185c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1172,6 +1173,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1266,6 +1268,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2417,6 +2420,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3580,6 +3584,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4521,6 +4526,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4533,6 +4539,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4846,6 +4853,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5167,6 +5175,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5533,6 +5542,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5886,6 +5896,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6857,6 +6868,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7491,6 +7503,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7765,6 +7778,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8078,6 +8092,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8276,6 +8291,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8396,6 +8412,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8448,6 +8465,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8576,6 +8594,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8907,6 +8926,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 3f320f0eb2a9a..153aa7dad0d7c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1265,6 +1267,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2416,6 +2419,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3578,6 +3582,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4519,6 +4524,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4531,6 +4537,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4844,6 +4851,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5165,6 +5173,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5531,6 +5540,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5884,6 +5894,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6855,6 +6866,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7488,6 +7500,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7761,6 +7774,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8072,6 +8086,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8270,6 +8285,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8390,6 +8406,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8442,6 +8459,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8570,6 +8588,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8901,6 +8920,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 656e376ac4baa..24d6823fe6756 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1265,6 +1267,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2414,6 +2417,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3574,6 +3578,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4515,6 +4520,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4527,6 +4533,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4838,6 +4845,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5159,6 +5167,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5524,6 +5533,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5877,6 +5887,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6848,6 +6859,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7481,6 +7493,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7754,6 +7767,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8061,6 +8075,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8259,6 +8274,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8379,6 +8395,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8431,6 +8448,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8559,6 +8577,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8890,6 +8909,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index a3250546cb670..96c627d8488bc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1011,6 +1012,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1150,6 +1152,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1242,6 +1245,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2351,6 +2355,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3478,6 +3483,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4404,6 +4410,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4416,6 +4423,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4720,6 +4728,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5025,6 +5034,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5369,6 +5379,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5714,6 +5725,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6650,6 +6662,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_4"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_4"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7280,6 +7293,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4"; @@ -7547,6 +7561,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7839,6 +7854,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8035,6 +8051,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8149,6 +8166,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8200,6 +8218,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_3"; "tubes" = dontDistribute super."tubes"; @@ -8326,6 +8345,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8650,6 +8670,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 705840e5e1cf3..3613b6eb41ea4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1011,6 +1012,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1150,6 +1152,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1241,6 +1244,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2350,6 +2354,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3476,6 +3481,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4402,6 +4408,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4414,6 +4421,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4718,6 +4726,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5023,6 +5032,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5367,6 +5377,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5711,6 +5722,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6646,6 +6658,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_4"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_4"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7275,6 +7288,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4"; @@ -7542,6 +7556,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7834,6 +7849,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8030,6 +8046,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8144,6 +8161,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8195,6 +8213,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_3"; "tubes" = dontDistribute super."tubes"; @@ -8321,6 +8340,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8644,6 +8664,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 86dbc3d25fb0b..a570288bbf26e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1147,6 +1149,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1238,6 +1241,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2339,6 +2343,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3459,6 +3464,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4380,6 +4386,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4392,6 +4399,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4695,6 +4703,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4998,6 +5007,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5338,6 +5348,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5681,6 +5692,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6606,6 +6618,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7233,6 +7246,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7498,6 +7512,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7788,6 +7803,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7980,6 +7996,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8094,6 +8111,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8144,6 +8162,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8270,6 +8289,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8589,6 +8609,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index bb58301757a7f..e48f30b3afbed 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1147,6 +1149,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1238,6 +1241,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2338,6 +2342,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3457,6 +3462,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4378,6 +4384,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4390,6 +4397,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4693,6 +4701,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4996,6 +5005,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5336,6 +5346,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5679,6 +5690,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6603,6 +6615,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7230,6 +7243,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7495,6 +7509,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7785,6 +7800,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7977,6 +7993,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8091,6 +8108,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8141,6 +8159,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8267,6 +8286,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8586,6 +8606,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 250384b1d2819..95e073eb8ad5d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1147,6 +1149,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1238,6 +1241,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2337,6 +2341,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3456,6 +3461,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4376,6 +4382,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4388,6 +4395,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4691,6 +4699,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4994,6 +5003,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5334,6 +5344,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5677,6 +5688,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6600,6 +6612,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7227,6 +7240,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7492,6 +7506,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7782,6 +7797,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7972,6 +7988,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8086,6 +8103,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8136,6 +8154,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8262,6 +8281,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8581,6 +8601,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 9c89a4dde431c..0bba76b79b3b3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1147,6 +1149,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1238,6 +1241,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2337,6 +2341,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3456,6 +3461,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4375,6 +4381,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4387,6 +4394,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4690,6 +4698,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4993,6 +5002,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5332,6 +5342,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5675,6 +5686,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6597,6 +6609,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7224,6 +7237,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7489,6 +7503,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7779,6 +7794,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7969,6 +7985,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8083,6 +8100,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8133,6 +8151,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8259,6 +8278,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8577,6 +8597,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index fb0f7c661927a..c3766276b0c3d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1146,6 +1148,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1237,6 +1240,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2334,6 +2338,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3453,6 +3458,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4372,6 +4378,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4384,6 +4391,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4686,6 +4694,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4989,6 +4998,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5328,6 +5338,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5671,6 +5682,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6593,6 +6605,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7220,6 +7233,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7485,6 +7499,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7775,6 +7790,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7965,6 +7981,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8079,6 +8096,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8129,6 +8147,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8255,6 +8274,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8573,6 +8593,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 703dc54935274..1476133f99ba5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1146,6 +1148,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1237,6 +1240,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2334,6 +2338,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3453,6 +3458,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4370,6 +4376,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4382,6 +4389,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4683,6 +4691,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4986,6 +4995,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5325,6 +5335,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5668,6 +5679,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6590,6 +6602,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7216,6 +7229,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7481,6 +7495,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7771,6 +7786,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7961,6 +7977,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8075,6 +8092,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8125,6 +8143,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8251,6 +8270,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8569,6 +8589,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 01a6769d9c8e8..f3651a2cee231 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1007,6 +1008,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1145,6 +1147,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1236,6 +1239,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2333,6 +2337,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3451,6 +3456,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4367,6 +4373,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4379,6 +4386,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4680,6 +4688,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4983,6 +4992,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5321,6 +5331,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5663,6 +5674,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6584,6 +6596,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7209,6 +7222,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7474,6 +7488,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7764,6 +7779,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7952,6 +7968,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8065,6 +8082,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8115,6 +8133,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8241,6 +8260,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8559,6 +8579,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 87b70622d7e07..275e5e5d2e7b5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1007,6 +1008,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1145,6 +1147,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1236,6 +1239,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2332,6 +2336,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3450,6 +3455,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4365,6 +4371,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4377,6 +4384,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4678,6 +4686,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4980,6 +4989,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5318,6 +5328,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5659,6 +5670,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6579,6 +6591,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_9"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_9"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7204,6 +7217,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7469,6 +7483,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7759,6 +7774,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7947,6 +7963,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8060,6 +8077,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8110,6 +8128,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8236,6 +8255,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8554,6 +8574,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index eefac3330c49d..e9f3015c0b962 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1007,6 +1008,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1145,6 +1147,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1236,6 +1239,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2331,6 +2335,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3448,6 +3453,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4361,6 +4367,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4373,6 +4380,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4673,6 +4681,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4975,6 +4984,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5313,6 +5323,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5654,6 +5665,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6573,6 +6585,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -7198,6 +7211,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7463,6 +7477,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7753,6 +7768,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7941,6 +7957,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8054,6 +8071,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8104,6 +8122,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8230,6 +8249,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8548,6 +8568,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 2ec3f78b21859..aa17b0ea8f726 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1007,6 +1008,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1145,6 +1147,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1236,6 +1239,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2327,6 +2331,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3444,6 +3449,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4355,6 +4361,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4367,6 +4374,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4667,6 +4675,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4969,6 +4978,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5306,6 +5316,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5646,6 +5657,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6564,6 +6576,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -7189,6 +7202,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7453,6 +7467,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7743,6 +7758,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7931,6 +7947,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8044,6 +8061,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8094,6 +8112,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8220,6 +8239,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8538,6 +8558,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 9aa253b8ecef9..7d5319c0c64ba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2348,6 +2352,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3472,6 +3477,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4398,6 +4404,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4410,6 +4417,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4714,6 +4722,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5019,6 +5028,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5362,6 +5372,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5706,6 +5717,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6641,6 +6653,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_4"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_4"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7269,6 +7282,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_1"; @@ -7535,6 +7549,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7827,6 +7842,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8023,6 +8039,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8137,6 +8154,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8188,6 +8206,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_3"; "tubes" = dontDistribute super."tubes"; @@ -8314,6 +8333,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8637,6 +8657,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 8fc5f9654c563..89cc6684d9b6b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1006,6 +1007,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1144,6 +1146,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1235,6 +1238,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2326,6 +2330,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3443,6 +3448,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4354,6 +4360,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4366,6 +4373,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4666,6 +4674,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4968,6 +4977,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5305,6 +5315,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5645,6 +5656,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6563,6 +6575,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -7187,6 +7200,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7451,6 +7465,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7740,6 +7755,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7928,6 +7944,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8041,6 +8058,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8091,6 +8109,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8217,6 +8236,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8535,6 +8555,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index 576068260b5c1..72e3391f74330 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1006,6 +1007,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1144,6 +1146,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1235,6 +1238,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2325,6 +2329,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3440,6 +3445,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4351,6 +4357,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4363,6 +4370,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4663,6 +4671,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4963,6 +4972,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5300,6 +5310,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5640,6 +5651,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6555,6 +6567,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -7177,6 +7190,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7437,6 +7451,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7726,6 +7741,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7914,6 +7930,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8027,6 +8044,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8077,6 +8095,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8203,6 +8222,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8518,6 +8538,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index d48c58d6ab550..eecb89f1f3a5d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1006,6 +1007,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1144,6 +1146,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1235,6 +1238,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2325,6 +2329,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3439,6 +3444,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4349,6 +4355,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4361,6 +4368,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4661,6 +4669,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4958,6 +4967,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5295,6 +5305,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5635,6 +5646,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6550,6 +6562,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -7172,6 +7185,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7432,6 +7446,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7721,6 +7736,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7909,6 +7925,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8022,6 +8039,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8072,6 +8090,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8198,6 +8217,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8513,6 +8533,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 47d9668fd7ddf..7ec5e6f8c5cd8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2348,6 +2352,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3471,6 +3476,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4396,6 +4402,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4408,6 +4415,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4712,6 +4720,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5017,6 +5026,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5360,6 +5370,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5704,6 +5715,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6639,6 +6651,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_5"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_5"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7266,6 +7279,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_2"; @@ -7531,6 +7545,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7823,6 +7838,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8019,6 +8035,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8133,6 +8150,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8184,6 +8202,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_4"; "tubes" = dontDistribute super."tubes"; @@ -8310,6 +8329,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8632,6 +8652,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index d5b0a6538cb04..7592545665691 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2348,6 +2352,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3471,6 +3476,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4396,6 +4402,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4408,6 +4415,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4712,6 +4720,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5017,6 +5026,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5360,6 +5370,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5704,6 +5715,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6639,6 +6651,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_6"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_6"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7266,6 +7279,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_2"; @@ -7531,6 +7545,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7822,6 +7837,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8018,6 +8034,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8132,6 +8149,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8183,6 +8201,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_4"; "tubes" = dontDistribute super."tubes"; @@ -8309,6 +8328,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8630,6 +8650,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 45dc2fcca1157..db27d28243974 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2347,6 +2351,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3469,6 +3474,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4393,6 +4399,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4405,6 +4412,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4708,6 +4716,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5011,6 +5020,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5354,6 +5364,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5698,6 +5709,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6630,6 +6642,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_6"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_6"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7257,6 +7270,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_2"; @@ -7522,6 +7536,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7813,6 +7828,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8006,6 +8022,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8120,6 +8137,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8171,6 +8189,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_4"; "tubes" = dontDistribute super."tubes"; @@ -8297,6 +8316,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8618,6 +8638,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index ab047df5f849b..e1d11a279dea7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2347,6 +2351,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3469,6 +3474,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4391,6 +4397,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4403,6 +4410,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4706,6 +4714,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5009,6 +5018,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5349,6 +5359,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5693,6 +5704,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6625,6 +6637,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7252,6 +7265,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_2"; @@ -7517,6 +7531,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7808,6 +7823,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8001,6 +8017,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8115,6 +8132,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8165,6 +8183,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_4"; "tubes" = dontDistribute super."tubes"; @@ -8291,6 +8310,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8611,6 +8631,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 8337bda39cb09..0db12c698b2c7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2344,6 +2348,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3466,6 +3471,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4387,6 +4393,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4399,6 +4406,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4702,6 +4710,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5005,6 +5014,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5345,6 +5355,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5689,6 +5700,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6619,6 +6631,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7246,6 +7259,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_4"; @@ -7511,6 +7525,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7801,6 +7816,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7994,6 +8010,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8108,6 +8125,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8158,6 +8176,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8284,6 +8303,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8604,6 +8624,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 43afe3fcc25b9..47c13adab0f51 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2342,6 +2346,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3463,6 +3468,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4384,6 +4390,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4396,6 +4403,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4699,6 +4707,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5002,6 +5011,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5342,6 +5352,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5685,6 +5696,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6614,6 +6626,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7241,6 +7254,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_4"; @@ -7506,6 +7520,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7796,6 +7811,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7988,6 +8004,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8102,6 +8119,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8152,6 +8170,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8278,6 +8297,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8598,6 +8618,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 23f906f030230..77c15982b9924 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1147,6 +1149,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1238,6 +1241,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; @@ -2339,6 +2343,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3459,6 +3464,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4380,6 +4386,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4392,6 +4399,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4695,6 +4703,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4998,6 +5007,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5338,6 +5348,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5681,6 +5692,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6609,6 +6621,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7236,6 +7249,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_4"; @@ -7501,6 +7515,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7791,6 +7806,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7983,6 +7999,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8097,6 +8114,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8147,6 +8165,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8273,6 +8292,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8593,6 +8613,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 84ce04ad25f35..4df8a8d158006 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -498,6 +499,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -987,6 +989,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1121,6 +1124,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1212,6 +1216,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2277,6 +2282,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; @@ -2486,6 +2492,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3366,6 +3373,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4251,6 +4259,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4263,6 +4272,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4547,6 +4557,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4831,6 +4842,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5169,6 +5181,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5499,6 +5512,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6379,6 +6393,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6981,6 +6996,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7225,6 +7241,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7233,6 +7250,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7322,6 +7340,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_11_0"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -7514,6 +7533,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7693,6 +7713,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7803,6 +7824,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7852,6 +7874,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7974,6 +7997,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8262,6 +8286,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index c04f602d55d16..7349c96cf0729 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -498,6 +499,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -987,6 +989,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1120,6 +1123,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1210,6 +1214,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2275,6 +2280,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; @@ -2484,6 +2490,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3361,6 +3368,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4245,6 +4253,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4257,6 +4266,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4541,6 +4551,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4820,6 +4831,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5156,6 +5168,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5486,6 +5499,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6365,6 +6379,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6967,6 +6982,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7211,6 +7227,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7219,6 +7236,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7308,6 +7326,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_11_0"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -7500,6 +7519,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7679,6 +7699,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7789,6 +7810,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7838,6 +7860,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7960,6 +7983,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8248,6 +8272,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 17f07bbbe041c..1b4193ff04cb8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -497,6 +498,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -986,6 +988,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1119,6 +1122,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1209,6 +1213,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2269,6 +2274,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; @@ -2477,6 +2483,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3350,6 +3357,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4227,6 +4235,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4239,6 +4248,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4522,6 +4532,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4798,6 +4809,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5134,6 +5146,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5464,6 +5477,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6337,6 +6351,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6935,6 +6950,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7175,6 +7191,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7183,6 +7200,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7271,6 +7289,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_11_0"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -7463,6 +7482,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7642,6 +7662,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7752,6 +7773,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7801,6 +7823,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7923,6 +7946,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8210,6 +8234,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 2e7ab1dda21cf..2c0cd6d9986c5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -491,6 +492,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -976,6 +978,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1108,6 +1111,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1198,6 +1202,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2242,6 +2247,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2446,6 +2452,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3305,6 +3312,7 @@ self: super: { "github" = doDistribute super."github_0_14_0"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4177,6 +4185,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4189,6 +4198,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4470,6 +4480,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4745,6 +4756,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5077,6 +5089,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5405,6 +5418,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6039,6 +6053,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; @@ -6267,6 +6282,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6858,6 +6874,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7095,6 +7112,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7103,6 +7121,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7191,6 +7210,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7380,6 +7400,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7554,6 +7575,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7663,6 +7685,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7712,6 +7735,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7832,6 +7856,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8118,6 +8143,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 48ce764aff4d8..86590db9a03a3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -490,6 +491,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -975,6 +977,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1107,6 +1110,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1197,6 +1201,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2237,6 +2242,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2441,6 +2447,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3300,6 +3307,7 @@ self: super: { "github" = doDistribute super."github_0_14_0"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4172,6 +4180,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4184,6 +4193,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4465,6 +4475,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4739,6 +4750,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5071,6 +5083,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5398,6 +5411,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6032,6 +6046,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; @@ -6260,6 +6275,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6849,6 +6865,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7086,6 +7103,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7094,6 +7112,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7182,6 +7201,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7371,6 +7391,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7545,6 +7566,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7654,6 +7676,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7703,6 +7726,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7823,6 +7847,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8108,6 +8133,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index 3aa1204e72541..06df71ceb750f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -484,6 +485,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -967,6 +969,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1097,6 +1100,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1187,6 +1191,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -1754,6 +1759,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_10"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -2065,6 +2071,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2206,6 +2213,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2409,6 +2417,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3244,6 +3253,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4105,6 +4115,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4117,6 +4128,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4392,6 +4404,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4661,6 +4674,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4991,6 +5005,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5306,6 +5321,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5919,6 +5935,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6144,6 +6161,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6455,6 +6473,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6724,6 +6743,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6957,6 +6977,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -6964,6 +6985,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7052,6 +7074,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7237,6 +7260,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7269,6 +7293,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7408,6 +7433,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7517,6 +7543,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7565,6 +7592,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7682,6 +7710,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7958,6 +7987,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 612dbe5c9c852..9bd529f774bc2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -483,6 +484,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -966,6 +968,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1096,6 +1099,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1185,6 +1189,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -1398,6 +1403,8 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers-api" = doDistribute super."avers-api_0_0_4"; + "avers-server" = doDistribute super."avers-server_0_0_3"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1748,6 +1755,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_10"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -2058,6 +2066,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2198,6 +2207,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2401,6 +2411,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3234,6 +3245,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4095,6 +4107,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4107,6 +4120,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4378,6 +4392,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4646,6 +4661,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4976,6 +4992,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5290,6 +5307,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5903,6 +5921,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6127,6 +6146,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6438,6 +6458,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6707,6 +6728,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6940,6 +6962,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -6947,6 +6970,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7035,6 +7059,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7219,6 +7244,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7251,6 +7277,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7389,6 +7416,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7498,6 +7526,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7545,6 +7574,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7662,6 +7692,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7935,6 +7966,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index 9fa65e9651299..0f710c73778d0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -483,6 +484,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -965,6 +967,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1095,6 +1098,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1184,6 +1188,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -1397,6 +1402,8 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers-api" = doDistribute super."avers-api_0_0_4"; + "avers-server" = doDistribute super."avers-server_0_0_3"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1747,6 +1754,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_10"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -2053,6 +2061,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2193,6 +2202,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2396,6 +2406,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3227,6 +3238,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4087,6 +4099,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4099,6 +4112,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4369,6 +4383,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4636,6 +4651,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4966,6 +4982,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5274,6 +5291,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5887,6 +5905,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6109,6 +6128,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6420,6 +6440,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6688,6 +6709,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6920,6 +6942,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_1"; @@ -6927,6 +6950,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7015,6 +7039,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7197,6 +7222,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7229,6 +7255,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7366,6 +7393,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7475,6 +7503,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7522,6 +7551,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7639,6 +7669,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7912,6 +7943,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index 2bc6383a95a10..49aedccdd1328 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -482,6 +483,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -962,6 +964,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1092,6 +1095,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1181,6 +1185,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -1393,6 +1398,8 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers-api" = doDistribute super."avers-api_0_0_4"; + "avers-server" = doDistribute super."avers-server_0_0_3"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1740,6 +1747,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_10"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -2043,6 +2051,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2183,6 +2192,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2386,6 +2396,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3216,6 +3227,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4076,6 +4088,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4088,6 +4101,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4305,6 +4319,7 @@ self: super: { "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" = doDistribute super."http-conduit_2_1_10"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-dispatch" = dontDistribute super."http-dispatch"; @@ -4354,6 +4369,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4619,6 +4635,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4949,6 +4966,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5256,6 +5274,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5867,6 +5886,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bzip" = dontDistribute super."pipes-bzip"; @@ -5886,6 +5906,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_5"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6086,6 +6107,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6397,6 +6419,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6665,6 +6688,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6897,6 +6921,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_1"; @@ -6904,6 +6929,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -6992,6 +7018,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7174,6 +7201,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7206,6 +7234,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7343,6 +7372,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7452,6 +7482,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7499,6 +7530,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7616,6 +7648,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7886,6 +7919,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index 28f470e7dda96..6755f138c59c9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -125,6 +126,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_2_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -481,6 +483,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -959,6 +962,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1089,6 +1093,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1178,6 +1183,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -1387,6 +1393,8 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers-api" = doDistribute super."avers-api_0_0_4"; + "avers-server" = doDistribute super."avers-server_0_0_3"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1733,6 +1741,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_10"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -2034,6 +2043,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2172,6 +2182,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2374,6 +2385,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3201,6 +3213,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4060,6 +4073,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4072,6 +4086,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4289,6 +4304,7 @@ self: super: { "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" = doDistribute super."http-conduit_2_1_10"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-dispatch" = dontDistribute super."http-dispatch"; @@ -4338,6 +4354,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4603,6 +4620,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4932,6 +4950,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5237,6 +5256,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5845,6 +5865,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bzip" = dontDistribute super."pipes-bzip"; @@ -5864,6 +5885,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_5"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6064,6 +6086,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6374,6 +6397,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6641,6 +6665,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6869,6 +6894,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_1"; @@ -6876,6 +6902,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -6964,6 +6991,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7144,6 +7172,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7175,6 +7204,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7310,6 +7340,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7385,6 +7416,7 @@ self: super: { "tkhs" = dontDistribute super."tkhs"; "tkyprof" = dontDistribute super."tkyprof"; "tld" = dontDistribute super."tld"; + "tls" = doDistribute super."tls_1_3_5"; "tls-debug" = doDistribute super."tls-debug_0_4_1"; "tls-extra" = dontDistribute super."tls-extra"; "tmpl" = dontDistribute super."tmpl"; @@ -7418,6 +7450,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7465,6 +7498,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7581,6 +7615,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7845,6 +7880,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index a6d2b1237c8d7..eab17859efa3f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -125,6 +126,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_2_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -480,6 +482,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -958,6 +961,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1088,6 +1092,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1177,6 +1182,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -1386,6 +1392,8 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers-api" = doDistribute super."avers-api_0_0_4"; + "avers-server" = doDistribute super."avers-server_0_0_3"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1731,6 +1739,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_10"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -2032,6 +2041,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2169,6 +2179,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2370,6 +2381,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3194,6 +3206,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4051,6 +4064,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4063,6 +4077,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4280,6 +4295,7 @@ self: super: { "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" = doDistribute super."http-conduit_2_1_10"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-dispatch" = dontDistribute super."http-dispatch"; @@ -4329,6 +4345,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4594,6 +4611,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4922,6 +4940,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5079,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_2_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5226,6 +5246,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5834,6 +5855,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bzip" = dontDistribute super."pipes-bzip"; @@ -5853,6 +5875,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_5"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6050,6 +6073,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6360,6 +6384,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6627,6 +6652,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6855,6 +6881,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_1"; @@ -6862,6 +6889,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -6950,6 +6978,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7130,6 +7159,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7161,6 +7191,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7294,6 +7325,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7369,6 +7401,7 @@ self: super: { "tkhs" = dontDistribute super."tkhs"; "tkyprof" = dontDistribute super."tkyprof"; "tld" = dontDistribute super."tld"; + "tls" = doDistribute super."tls_1_3_5"; "tls-debug" = doDistribute super."tls-debug_0_4_1"; "tls-extra" = dontDistribute super."tls-extra"; "tmpl" = dontDistribute super."tmpl"; @@ -7402,6 +7435,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7448,6 +7482,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7564,6 +7599,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7828,6 +7864,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 1250eb5119cb9..586fa1423ab8c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -490,6 +491,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -974,6 +976,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1106,6 +1109,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1196,6 +1200,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2236,6 +2241,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2440,6 +2446,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3293,6 +3300,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4165,6 +4173,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4177,6 +4186,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4457,6 +4467,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4730,6 +4741,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5062,6 +5074,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5386,6 +5399,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6014,6 +6028,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; @@ -6241,6 +6256,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6828,6 +6844,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7065,6 +7082,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7073,6 +7091,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7161,6 +7180,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7349,6 +7369,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7523,6 +7544,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7632,6 +7654,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7681,6 +7704,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7801,6 +7825,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8086,6 +8111,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index f9911c0a94d98..f1ce759151c75 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -487,6 +488,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -971,6 +973,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1103,6 +1106,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1193,6 +1197,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2229,6 +2234,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2432,6 +2438,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3276,6 +3283,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4148,6 +4156,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4160,6 +4169,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4440,6 +4450,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4712,6 +4723,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5044,6 +5056,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5366,6 +5379,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5993,6 +6007,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; @@ -6220,6 +6235,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6804,6 +6820,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7039,6 +7056,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7046,6 +7064,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7134,6 +7153,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7321,6 +7341,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7495,6 +7516,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7604,6 +7626,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7653,6 +7676,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7773,6 +7797,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8054,6 +8079,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index 790a2add670f7..e123a04f31880 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -486,6 +487,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -970,6 +972,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1101,6 +1104,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1191,6 +1195,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2225,6 +2230,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2428,6 +2434,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3266,6 +3273,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4137,6 +4145,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4149,6 +4158,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4428,6 +4438,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4700,6 +4711,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5032,6 +5044,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5352,6 +5365,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5974,6 +5988,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; @@ -6200,6 +6215,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6783,6 +6799,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7018,6 +7035,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7025,6 +7043,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7113,6 +7132,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7300,6 +7320,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7473,6 +7494,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7582,6 +7604,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7631,6 +7654,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7750,6 +7774,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8031,6 +8056,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index e52c401380f83..6657efbd460b6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -486,6 +487,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -970,6 +972,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1101,6 +1104,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1191,6 +1195,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2222,6 +2227,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2425,6 +2431,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3263,6 +3270,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4132,6 +4140,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4144,6 +4153,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4423,6 +4433,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4695,6 +4706,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5027,6 +5039,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5347,6 +5360,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5969,6 +5983,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; @@ -6195,6 +6210,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6778,6 +6794,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7013,6 +7030,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7020,6 +7038,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7108,6 +7127,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7295,6 +7315,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7468,6 +7489,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7577,6 +7599,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7626,6 +7649,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7745,6 +7769,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8023,6 +8048,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 3393c7f35eae0..24c834831c778 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -485,6 +486,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -969,6 +971,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1100,6 +1103,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1190,6 +1194,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2216,6 +2221,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2419,6 +2425,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3255,6 +3262,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4121,6 +4129,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4133,6 +4142,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4412,6 +4422,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4684,6 +4695,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_11"; "json-b" = dontDistribute super."json-b"; @@ -5015,6 +5027,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5334,6 +5347,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5954,6 +5968,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6179,6 +6194,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6490,6 +6506,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6761,6 +6778,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -6996,6 +7014,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7003,6 +7022,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7091,6 +7111,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7278,6 +7299,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7451,6 +7473,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7560,6 +7583,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7608,6 +7632,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7727,6 +7752,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8004,6 +8030,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index cdb0b7b2f7a25..80ba60f0ab72e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -485,6 +486,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -969,6 +971,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1100,6 +1103,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1190,6 +1194,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2071,6 +2076,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2212,6 +2218,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2415,6 +2422,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3251,6 +3259,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4116,6 +4125,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4128,6 +4138,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4406,6 +4417,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4678,6 +4690,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_11"; "json-b" = dontDistribute super."json-b"; @@ -5009,6 +5022,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5327,6 +5341,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5945,6 +5960,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6170,6 +6186,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6481,6 +6498,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6751,6 +6769,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -6986,6 +7005,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -6993,6 +7013,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7081,6 +7102,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7266,6 +7288,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7439,6 +7462,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7548,6 +7572,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7596,6 +7621,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7714,6 +7740,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7991,6 +8018,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index fdd720ddc0726..508263e702209 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -485,6 +486,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -969,6 +971,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1100,6 +1103,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1190,6 +1194,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2071,6 +2076,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2212,6 +2218,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2415,6 +2422,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3251,6 +3259,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4116,6 +4125,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4128,6 +4138,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4406,6 +4417,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4678,6 +4690,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_11"; "json-b" = dontDistribute super."json-b"; @@ -5009,6 +5022,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5327,6 +5341,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5945,6 +5960,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6170,6 +6186,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6481,6 +6498,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6751,6 +6769,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -6986,6 +7005,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -6993,6 +7013,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7081,6 +7102,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7266,6 +7288,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7439,6 +7462,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7548,6 +7572,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7596,6 +7621,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7714,6 +7740,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7990,6 +8017,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 46a86d946a1f5..bc831536c5c0e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -485,6 +486,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -969,6 +971,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1099,6 +1102,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1189,6 +1193,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2069,6 +2074,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2210,6 +2216,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2413,6 +2420,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3248,6 +3256,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4109,6 +4118,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4121,6 +4131,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4399,6 +4410,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4668,6 +4680,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4999,6 +5012,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5317,6 +5331,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5931,6 +5946,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6156,6 +6172,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -6467,6 +6484,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6736,6 +6754,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6969,6 +6988,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -6976,6 +6996,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7064,6 +7085,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7249,6 +7271,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7281,6 +7304,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7420,6 +7444,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7529,6 +7554,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7577,6 +7603,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7695,6 +7722,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7971,6 +7999,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 975cbaa3ece19..bbdaa79ae124d 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -1417,6 +1417,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "BiGUL" = callPackage + ({ mkDerivation, base, containers, mtl, pretty, template-haskell }: + mkDerivation { + pname = "BiGUL"; + version = "0.9.0.0"; + sha256 = "4530a12694a213bbbc98a55a7120c7093d92a70892757c30faac0176a4ce9ff7"; + libraryHaskellDepends = [ + base containers mtl pretty template-haskell + ]; + homepage = "http://www.prg.nii.ac.jp/project/bigul/"; + description = "The Bidirectional Generic Update Language"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "BigPixel" = callPackage ({ mkDerivation, array, base, bmp, bytestring, gloss }: mkDerivation { @@ -1995,7 +2009,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately" = callPackage + "BlogLiterately_0_8_2_1" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc @@ -2018,6 +2032,58 @@ self: { homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "BlogLiterately" = callPackage + ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs + , containers, data-default, directory, filepath, HaXml, haxr + , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc + , pandoc-citeproc, pandoc-types, parsec, process, split, strict + , tagsoup, temporary, transformers + }: + mkDerivation { + pname = "BlogLiterately"; + version = "0.8.2.2"; + sha256 = "8542a047940fcccbfca14985d22757f9a034c06103cd587e40744aa53e3adc87"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html bool-extras bytestring cmdargs containers + data-default directory filepath HaXml haxr highlighting-kate + hscolour HTTP lens mtl pandoc pandoc-citeproc pandoc-types parsec + process split strict tagsoup temporary transformers + ]; + executableHaskellDepends = [ base cmdargs ]; + homepage = "http://byorgey.wordpress.com/blogliterately/"; + description = "A tool for posting Haskelly articles to blogs"; + license = "GPL"; + }) {}; + + "BlogLiterately_0_8_2_3" = callPackage + ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs + , containers, data-default, directory, filepath, HaXml, haxr + , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc + , pandoc-citeproc, pandoc-types, parsec, process, split, strict + , tagsoup, temporary, transformers + }: + mkDerivation { + pname = "BlogLiterately"; + version = "0.8.2.3"; + sha256 = "2f730bad3df890f883039b8a6928e7352bfc3dc9128e2d0f5ed8d5e71195080e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html bool-extras bytestring cmdargs containers + data-default directory filepath HaXml haxr highlighting-kate + hscolour HTTP lens mtl pandoc pandoc-citeproc pandoc-types parsec + process split strict tagsoup temporary transformers + ]; + executableHaskellDepends = [ base cmdargs ]; + 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 @@ -5788,21 +5854,21 @@ self: { }) {}; "Euterpea" = callPackage - ({ mkDerivation, ansi-terminal, array, arrows, base, bytestring - , Cabal, containers, deepseq, ghc-prim, HCodecs, heap, markov-chain - , PortMidi, pure-fft, QuickCheck, random, stm, UISF + ({ mkDerivation, array, arrows, base, bytestring, containers + , deepseq, ghc-prim, HCodecs, heap, PortMidi, random, stm }: mkDerivation { pname = "Euterpea"; - version = "1.1.1"; - sha256 = "e33dc58a5efdb57f05017abcfa56728a17d4f3ec152b0ea9a530c4409e61f652"; + version = "2.0.0"; + sha256 = "755214020c31362d37380a53655d6c28bd60be07e55881e23f5bb3092fd2894b"; + revision = "1"; + editedCabalFile = "510bf796ea4d89573b4b30927ed70bde80cc382bc84d63149d57187aeb793f19"; libraryHaskellDepends = [ array arrows base bytestring containers deepseq ghc-prim HCodecs - heap markov-chain PortMidi pure-fft random stm UISF + heap PortMidi random stm ]; - testHaskellDepends = [ ansi-terminal base Cabal QuickCheck ]; jailbreak = true; - homepage = "http://haskell.cs.yale.edu/"; + homepage = "http://www.euterpea.com"; description = "Library for computer music research and education"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -6530,10 +6596,8 @@ self: { }: mkDerivation { pname = "FractalArt"; - version = "0.2.0.0"; - sha256 = "011d310a8ba7d5e891bf8a6c0f567ccda609324df792d8533475e4f28a4c2097"; - revision = "2"; - editedCabalFile = "5ce975b8ccd2d1ed165abada3d4b8af27d8bac02783595343aac28a6d7617b74"; + version = "0.2.0.3"; + sha256 = "def0ff1b8d30d993c594d20a951318d8f29cd67943555e2439829d4fbc63a0fc"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -6541,7 +6605,6 @@ self: { vector ]; executableSystemDepends = [ libX11 ]; - jailbreak = true; homepage = "https://github.com/TomSmeets/FractalArt"; description = "Generates colorful wallpapers"; license = stdenv.lib.licenses.mit; @@ -8780,6 +8843,8 @@ self: { pname = "HLearn-algebra"; version = "1.1.0.1"; sha256 = "aa04d725af69ba78d7c474c52ebd8de7aa7a25db7e0013cde5c42b8559000acc"; + revision = "2"; + editedCabalFile = "640b0ad035c523ba7b520543910b428bf1c676b80eda8fa6575c497ff5d89889"; libraryHaskellDepends = [ base ConstraintKinds containers deepseq hashable MonadRandom parallel random template-haskell vector vector-heterogenous @@ -8800,6 +8865,8 @@ self: { pname = "HLearn-approximation"; version = "1.1.0"; sha256 = "76a315bd7ce257fcfea4b06428287fce5281f7f3fb44d8209558121fa9bd19bf"; + revision = "1"; + editedCabalFile = "7b0837f48941b5d4e09ed43f8f49511049b93b4404a4d5ae576ca44c9b61c5e1"; libraryHaskellDepends = [ base ConstraintKinds containers heap HLearn-algebra HLearn-datastructures HLearn-distributions list-extras vector @@ -8819,6 +8886,8 @@ self: { pname = "HLearn-classification"; version = "1.0.1.3"; sha256 = "0d6e4d8eb596aaa1395f8508f1c08f802e15cf2aff2bfa73ab9341684d008185"; + revision = "1"; + editedCabalFile = "a9a58cc0d1045dbc8d0d33d21be268baedaf2cf79d21232fbb3b4cd9b2cbedc1"; libraryHaskellDepends = [ base binary bytestring ConstraintKinds containers deepseq dlist hashable HLearn-algebra HLearn-distributions list-extras logfloat @@ -8858,6 +8927,8 @@ self: { pname = "HLearn-distributions"; version = "1.1.0.2"; sha256 = "eef328acd2739a3022972a0c2de48e4b4325c5810543b60a207b3136a75669a7"; + revision = "1"; + editedCabalFile = "58bb2e9dd62d8fba266d3f6148a8694aaba645aa6b75947d5ad65fe46cb957c7"; libraryHaskellDepends = [ array base ConstraintKinds containers deepseq erf gamma graphviz HLearn-algebra HLearn-datastructures hmatrix list-extras @@ -10768,7 +10839,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HaskellNet" = callPackage + "HaskellNet_0_5" = callPackage ({ mkDerivation, array, base, base64-string, bytestring, cryptohash , mime-mail, mtl, network, old-time, pretty, text }: @@ -10783,9 +10854,10 @@ self: { homepage = "https://github.com/jtdaugherty/HaskellNet"; description = "Client support for POP3, SMTP, and IMAP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HaskellNet_0_5_1" = callPackage + "HaskellNet" = callPackage ({ mkDerivation, array, base, base64-string, bytestring, cryptohash , mime-mail, mtl, network, old-time, pretty, text }: @@ -10800,7 +10872,6 @@ self: { homepage = "https://github.com/jtdaugherty/HaskellNet"; description = "Client support for POP3, SMTP, and IMAP"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellNet-SSL_0_3_2_1" = callPackage @@ -20873,7 +20944,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Win32" = callPackage + "Win32_2_3_1_0" = callPackage ({ mkDerivation, advapi32, base, bytestring, gdi32, shell32 , shfolder, user32, winmm }: @@ -20892,6 +20963,25 @@ self: { }) {advapi32 = null; gdi32 = null; shell32 = null; shfolder = null; user32 = null; winmm = null;}; + "Win32" = callPackage + ({ mkDerivation, advapi32, base, bytestring, gdi32, shell32 + , shfolder, user32, winmm + }: + mkDerivation { + pname = "Win32"; + version = "2.3.1.1"; + sha256 = "5c57f6ca9e13bb9e945bfe25b85390451fff589ae5e1e2522fc939a144c7a588"; + libraryHaskellDepends = [ base bytestring ]; + librarySystemDepends = [ + advapi32 gdi32 shell32 shfolder user32 winmm + ]; + homepage = "https://github.com/haskell/win32"; + description = "A binding to part of the Win32 library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {advapi32 = null; gdi32 = null; shell32 = null; + shfolder = null; user32 = null; winmm = null;}; + "Win32-dhcp-server" = callPackage ({ mkDerivation, base, text, Win32, Win32-errors }: mkDerivation { @@ -24071,6 +24161,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "aeson-json-ast" = callPackage + ({ mkDerivation, aeson, base, json-ast }: + mkDerivation { + pname = "aeson-json-ast"; + version = "0.1"; + sha256 = "fac988efb621e4ac75269138df140dc1e1e8287c206416f2a81cd3d3b3716d9a"; + libraryHaskellDepends = [ aeson base json-ast ]; + homepage = "https://github.com/sannsyn/aeson-json-ast"; + description = "Integration layer for \"json-ast\" and \"aeson\""; + license = stdenv.lib.licenses.mit; + }) {}; + "aeson-lens" = callPackage ({ mkDerivation, aeson, base, bytestring, doctest, lens, text , unordered-containers, vector @@ -25092,14 +25194,16 @@ self: { }) {}; "alea" = callPackage - ({ mkDerivation, argparser, base, containers, threefish }: + ({ mkDerivation, base, optparse-applicative, random, text }: mkDerivation { pname = "alea"; - version = "0.4.0.0"; - sha256 = "258d629383851804321a54d320df892b1513216b3336a2e8b3d07b973d8628c8"; + version = "0.5.1.0"; + sha256 = "32188a6da518656e962379038e0aa05f08c1434380d4eacf0ab162815638f5bd"; isLibrary = false; isExecutable = true; - executableHaskellDepends = [ argparser base containers threefish ]; + executableHaskellDepends = [ + base optparse-applicative random text + ]; homepage = "https://github.com/Rnhmjoj/alea"; description = "a diceware passphrase generator"; license = stdenv.lib.licenses.mit; @@ -25743,7 +25847,7 @@ self: { description = "A Haskell binding for ALURE"; license = "LGPL"; hydraPlatforms = stdenv.lib.platforms.none; - }) {alure = null;}; + }) {inherit (pkgs) alure;}; "amazon-emailer" = callPackage ({ mkDerivation, base, bytestring, configurator, http-conduit @@ -25924,6 +26028,29 @@ self: { license = "unknown"; }) {}; + "amazonka_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, base, bytestring, conduit + , conduit-extra, directory, exceptions, http-conduit, ini, mmorph + , monad-control, mtl, resourcet, retry, tasty, tasty-hunit, text + , time, transformers, transformers-base, transformers-compat + }: + mkDerivation { + pname = "amazonka"; + version = "1.4.1"; + sha256 = "32d4ceac8f85158de8aeab4ff1ff5d38a17846617ce2eccbeac5ee4016d539e5"; + libraryHaskellDepends = [ + amazonka-core base bytestring conduit conduit-extra directory + exceptions http-conduit ini mmorph monad-control mtl resourcet + retry text time transformers transformers-base transformers-compat + ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Comprehensive Amazon Web Services SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-apigateway_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -25962,6 +26089,26 @@ self: { license = "unknown"; }) {}; + "amazonka-apigateway_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-apigateway"; + version = "1.4.1"; + sha256 = "8d7743e38c5063fd80a98fbaf5e8bce1df8f01299faa5414013b3ae678517578"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon API Gateway SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-autoscaling_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26042,6 +26189,26 @@ self: { license = "unknown"; }) {}; + "amazonka-autoscaling_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-autoscaling"; + version = "1.4.1"; + sha256 = "958e5ae9bf17c74e5fe20ce6b1615d8b65a566aa68a8fd9f2a7230a0d1990863"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Auto Scaling SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-certificatemanager" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -26060,6 +26227,26 @@ self: { license = "unknown"; }) {}; + "amazonka-certificatemanager_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-certificatemanager"; + version = "1.4.1"; + sha256 = "a2396a029bfb4fa0f124f1247b4c96656b2f703ecabbf672bdb04ce1c18f36e9"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Certificate Manager SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudformation_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26140,6 +26327,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudformation_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudformation"; + version = "1.4.1"; + sha256 = "cd896557245c4b482ac43d337849829cf22acb06382a3194f86322df7f9ddc82"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudFormation SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudfront_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26220,6 +26427,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudfront_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudfront"; + version = "1.4.1"; + sha256 = "78a08971325a3f5d3e32661955a7aca9646937e3c50c2de2522e65727c142861"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudFront SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudhsm_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26300,6 +26527,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudhsm_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudhsm"; + version = "1.4.1"; + sha256 = "c2c9e67f0d5375fd02935cf679b03b6422113bf26dc0259107e19d3a2d6a8016"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudHSM SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudsearch_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26380,6 +26627,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudsearch_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudsearch"; + version = "1.4.1"; + sha256 = "74c98123a8fa80c6c006e1f6a2078fc29b8b9987c0203d3da570ec568b1853e2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudSearch SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudsearch-domains_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26460,6 +26727,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudsearch-domains_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudsearch-domains"; + version = "1.4.1"; + sha256 = "636f127366c83682298e840597791ac110d57a595e25a4be3207d8867db2ca3a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudSearch Domain SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudtrail_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26540,6 +26827,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudtrail_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudtrail"; + version = "1.4.1"; + sha256 = "923d16101a573992f2797f88e45d270ffa7f829bd400328ebd613170ca434b9e"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudTrail SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudwatch_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26620,6 +26927,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudwatch_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch"; + version = "1.4.1"; + sha256 = "8098a72bb0c027b4761ff5c90bf7519a76217aeb77fd344c3e5060f1293d84ae"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudwatch-events" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -26638,6 +26965,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudwatch-events_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch-events"; + version = "1.4.1"; + sha256 = "b49b594354bdc1dcac1328c0d49914828be24cf2f0b6e8d8046a005baa111bc8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch Events SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudwatch-logs_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26718,6 +27065,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudwatch-logs_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch-logs"; + version = "1.4.1"; + sha256 = "3a914e342372cba504f6f8db0e94160a95464fa31f977635b5e461001ee3dd83"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch Logs SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-codecommit_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -26756,6 +27123,26 @@ self: { license = "unknown"; }) {}; + "amazonka-codecommit_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codecommit"; + version = "1.4.1"; + sha256 = "0c156f86c5831c317bd91945763c2a145f93e57972d3c0e65ae262bc1e1350f3"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodeCommit SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-codedeploy_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26836,6 +27223,26 @@ self: { license = "unknown"; }) {}; + "amazonka-codedeploy_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codedeploy"; + version = "1.4.1"; + sha256 = "891660111d35a80bd96f94f1166d171104aeb1cda0d15313d3c6fa474e8e6752"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodeDeploy SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-codepipeline_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -26874,6 +27281,26 @@ self: { license = "unknown"; }) {}; + "amazonka-codepipeline_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codepipeline"; + version = "1.4.1"; + sha256 = "3f3e1199a20e2adb2097f9c5c64ad9667fd487b1c5208de7cf416de1d78f7259"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodePipeline SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cognito-identity_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26954,6 +27381,45 @@ self: { license = "unknown"; }) {}; + "amazonka-cognito-identity_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cognito-identity"; + version = "1.4.1"; + sha256 = "bfc5d173b371be283d4459469bcd67289c31c169ebd875f0066b4a48a1bf61f6"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Cognito Identity SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cognito-idp" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cognito-idp"; + version = "1.4.1"; + sha256 = "c70c8664346e2c4599ad31e01ce7157f5bbc17fbff76c588d5571cf244245b02"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Cognito Identity Provider SDK"; + license = "unknown"; + }) {}; + "amazonka-cognito-sync_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27034,6 +27500,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cognito-sync_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cognito-sync"; + version = "1.4.1"; + sha256 = "01d230b51aec35aa99da4a3e27bfe8bd5638843a23ae42f8aba1d620f4e82649"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Cognito Sync SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-config_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27114,6 +27600,26 @@ self: { license = "unknown"; }) {}; + "amazonka-config_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-config"; + version = "1.4.1"; + sha256 = "232bb1167d7cd0de68711bddd841cebc382807edda491ec821ed45fc7be7afd2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Config SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-core_0_3_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, base16-bytestring , base64-bytestring, bifunctors, bytestring, case-insensitive @@ -27274,6 +27780,37 @@ self: { license = "unknown"; }) {}; + "amazonka-core_1_4_1" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring + , case-insensitive, conduit, conduit-extra, cryptonite, deepseq + , exceptions, hashable, http-conduit, http-types, lens, memory, mtl + , QuickCheck, quickcheck-unicode, resourcet, scientific, semigroups + , tagged, tasty, tasty-hunit, tasty-quickcheck, template-haskell + , text, time, transformers, transformers-compat + , unordered-containers, xml-conduit, xml-types + }: + mkDerivation { + pname = "amazonka-core"; + version = "1.4.1"; + sha256 = "609024a35a4ce8e3561e513de2a36b44c1250163ad54ee6970cdce2a14fca33a"; + libraryHaskellDepends = [ + aeson attoparsec base bifunctors bytestring case-insensitive + conduit conduit-extra cryptonite deepseq exceptions hashable + http-conduit http-types lens memory mtl resourcet scientific + semigroups tagged text time transformers transformers-compat + unordered-containers xml-conduit xml-types + ]; + testHaskellDepends = [ + aeson base bytestring case-insensitive http-types QuickCheck + quickcheck-unicode tasty tasty-hunit tasty-quickcheck + template-haskell text time + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Core data types and functionality for Amazonka libraries"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-datapipeline_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27354,6 +27891,26 @@ self: { license = "unknown"; }) {}; + "amazonka-datapipeline_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-datapipeline"; + version = "1.4.1"; + sha256 = "9c3201095c2ebe0c15cfcfbba01e192775ba24ff2db73605616d1292debdb5a5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Data Pipeline SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-devicefarm_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -27392,6 +27949,26 @@ self: { license = "unknown"; }) {}; + "amazonka-devicefarm_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-devicefarm"; + version = "1.4.1"; + sha256 = "093def2f39de4bccbac124b2b2bc6e454ea3c839946a390a4056c3205ccf5caf"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Device Farm SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-directconnect_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27472,6 +28049,26 @@ self: { license = "unknown"; }) {}; + "amazonka-directconnect_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-directconnect"; + version = "1.4.1"; + sha256 = "75395c2d9adaf5dc3a7e4296553137ea49682a25686833dcdcb696348b3339e1"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Direct Connect SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-dms" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -27490,6 +28087,26 @@ self: { license = "unknown"; }) {}; + "amazonka-dms_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dms"; + version = "1.4.1"; + sha256 = "0a2a5e7f0677dbf639a48b915363b6af1239d1edd4f8af487bb1c3d13aae5518"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Database Migration Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ds_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -27528,6 +28145,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ds_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ds"; + version = "1.4.1"; + sha256 = "23c2ed6ee691bb12f9aaf9143f69ea18fa9589b10ff7aa89417aa342a298ebb5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Directory Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-dynamodb_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27608,6 +28245,26 @@ self: { license = "unknown"; }) {}; + "amazonka-dynamodb_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dynamodb"; + version = "1.4.1"; + sha256 = "5cf81ac70bb10d015cea77f54de3f0f997e56bd61e99e5a19918f8a779957722"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon DynamoDB SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-dynamodb-streams_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -27646,6 +28303,26 @@ self: { license = "unknown"; }) {}; + "amazonka-dynamodb-streams_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dynamodb-streams"; + version = "1.4.1"; + sha256 = "102e58e26e412e383bd6e417403e685bbeb039a52f8f8a6b3ab149cab3abc457"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon DynamoDB Streams SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ec2_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27742,6 +28419,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ec2_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ec2"; + version = "1.4.1"; + sha256 = "677a49261781900b757307b5ab5714862016f777d12d246536a30c9806e9f6bf"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Compute Cloud SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ecr" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -27760,6 +28457,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ecr_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ecr"; + version = "1.4.1"; + sha256 = "563e6cab29b97554b2b6b32d19a388f336e508c556232dd61576cfa2d4856067"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon EC2 Container Registry SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ecs_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27840,6 +28557,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ecs_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ecs"; + version = "1.4.1"; + sha256 = "63d51f7b595cf2d4eb89f4e50fc7c5e1a9a181a9018cb8d1dfdca226a7126334"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon EC2 Container Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-efs_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -27878,6 +28615,26 @@ self: { license = "unknown"; }) {}; + "amazonka-efs_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-efs"; + version = "1.4.1"; + sha256 = "a06e0fe82eb29b898c971fc0349813c5a3d2cdb76d06081642272195be947287"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic File System SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-elasticache_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27958,6 +28715,26 @@ self: { license = "unknown"; }) {}; + "amazonka-elasticache_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticache"; + version = "1.4.1"; + sha256 = "49697a7ca0cdd93529506685af14af6abb6bae0aef7cd6c5f32255cc44fad460"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon ElastiCache SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-elasticbeanstalk_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28038,6 +28815,26 @@ self: { license = "unknown"; }) {}; + "amazonka-elasticbeanstalk_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticbeanstalk"; + version = "1.4.1"; + sha256 = "991b28904384bb189b1d840730db33f1706a90b72102f7eb311ba0311d4f6b7a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Beanstalk SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-elasticsearch_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -28076,6 +28873,26 @@ self: { license = "unknown"; }) {}; + "amazonka-elasticsearch_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticsearch"; + version = "1.4.1"; + sha256 = "7c959fadb17fb32e9157bce8612d44681d479f23c6d511290e9261397d5006ab"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elasticsearch Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-elastictranscoder_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28156,6 +28973,26 @@ self: { license = "unknown"; }) {}; + "amazonka-elastictranscoder_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elastictranscoder"; + version = "1.4.1"; + sha256 = "b3e610a6c780162a4884c8afb942a07186b7d7b73cb8e6b9c94fcc5cea62a46c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Transcoder SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-elb_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28236,6 +29073,26 @@ self: { license = "unknown"; }) {}; + "amazonka-elb_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elb"; + version = "1.4.1"; + sha256 = "51039234ba0f195767f87aa9add9c08866e1125701df5700733ecc06a4adab6e"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Load Balancing SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-emr_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28316,6 +29173,26 @@ self: { license = "unknown"; }) {}; + "amazonka-emr_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-emr"; + version = "1.4.1"; + sha256 = "adc68d54f947f9ed1c52dcaea880dc77509b095db47a162e0317cccfd0366983"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic MapReduce SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-gamelift" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -28334,6 +29211,26 @@ self: { license = "unknown"; }) {}; + "amazonka-gamelift_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-gamelift"; + version = "1.4.1"; + sha256 = "c52ab8bd55f8b9f91a0d4acb10d7829eba1656bb9b54cead672654f9c441dfa2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon GameLift SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-glacier_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28414,6 +29311,26 @@ self: { license = "unknown"; }) {}; + "amazonka-glacier_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-glacier"; + version = "1.4.1"; + sha256 = "0cdd5610284c5a39775716a96fc7ac12177a243b01c25cd3d7a5a7df9863816c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Glacier SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-iam_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28494,6 +29411,26 @@ self: { license = "unknown"; }) {}; + "amazonka-iam_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iam"; + version = "1.4.1"; + sha256 = "27503e0980328216c9f306b51a376189ebdda70111aa49862de340b06544485e"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Identity and Access Management SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-importexport_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28574,6 +29511,26 @@ self: { license = "unknown"; }) {}; + "amazonka-importexport_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-importexport"; + version = "1.4.1"; + sha256 = "6ee93786aa5b695bf0b39ef13d6b7cb40f296a8e7e0fd626b8d50c328a469914"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Import/Export SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-inspector_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -28612,6 +29569,26 @@ self: { license = "unknown"; }) {}; + "amazonka-inspector_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-inspector"; + version = "1.4.1"; + sha256 = "106deae8302c38891772a96bd864278a29dc9241321c8a468f25218912e79b20"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Inspector SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-iot_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -28650,6 +29627,26 @@ self: { license = "unknown"; }) {}; + "amazonka-iot_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iot"; + version = "1.4.1"; + sha256 = "ba233bcd39c277b3223a4215278813d461782e83ad1a280f6b022aca6234cd64"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon IoT SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-iot-dataplane_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -28688,6 +29685,26 @@ self: { license = "unknown"; }) {}; + "amazonka-iot-dataplane_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iot-dataplane"; + version = "1.4.1"; + sha256 = "11452a7fbe3677a0a9c9e3fcbb31f9e685d66123ac73b5e0a9f7531f9c492982"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon IoT Data Plane SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-kinesis_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28768,6 +29785,26 @@ self: { license = "unknown"; }) {}; + "amazonka-kinesis_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesis"; + version = "1.4.1"; + sha256 = "ac3ffa7d3b70c742c4443e66c87fff844231a147f28ef3df4067ad3906e3092c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Kinesis SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-kinesis-firehose_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -28806,6 +29843,26 @@ self: { license = "unknown"; }) {}; + "amazonka-kinesis-firehose_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesis-firehose"; + version = "1.4.1"; + sha256 = "80da1bb280e89a1b1d10879f69648af8e8269ffd0a39b0cc11151432dd1f55b0"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Kinesis Firehose SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-kms_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28886,6 +29943,26 @@ self: { license = "unknown"; }) {}; + "amazonka-kms_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kms"; + version = "1.4.1"; + sha256 = "ac39006ed8555208855e4ad648271e02dc71ac8a2124dc365fba6d953dcddc32"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Key Management Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-lambda_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28966,6 +30043,26 @@ self: { license = "unknown"; }) {}; + "amazonka-lambda_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-lambda"; + version = "1.4.1"; + sha256 = "459126719de03a81bfeeb9b10fc4210df9f9b7a299d8f6045e3cba7f665499ae"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Lambda SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-marketplace-analytics_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -29004,6 +30101,26 @@ self: { license = "unknown"; }) {}; + "amazonka-marketplace-analytics_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-marketplace-analytics"; + version = "1.4.1"; + sha256 = "16f0c684260893d20ff48e41e0d087c292691799fe1de8b3a4727ddcae740c8f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Marketplace Commerce Analytics SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-marketplace-metering" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -29022,6 +30139,26 @@ self: { license = "unknown"; }) {}; + "amazonka-marketplace-metering_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-marketplace-metering"; + version = "1.4.1"; + sha256 = "dc1c12ff3740fb72b0f6238bd4e736754b312078e6edbabcfb5e2e22819d616e"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Marketplace Metering SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ml_0_3_6" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29074,6 +30211,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ml_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ml"; + version = "1.4.1"; + sha256 = "191486e7aeffe0d3d5f798d72e5ad6b2c477cb7cc4ed8298ff2acab463fbf0b0"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Machine Learning SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-opsworks_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29154,6 +30311,26 @@ self: { license = "unknown"; }) {}; + "amazonka-opsworks_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-opsworks"; + version = "1.4.1"; + sha256 = "753e14e15f312f90d580c6a24580373560fce06cd99e9b63036da2f5e6794635"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon OpsWorks SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-rds_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29235,6 +30412,26 @@ self: { hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; + "amazonka-rds_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-rds"; + version = "1.4.1"; + sha256 = "6c4443c56b947b6b60e4dcfa84390f35f081d7bd3e80f2e5d8bcecb49be3e045"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Relational Database Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-redshift_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29315,6 +30512,26 @@ self: { license = "unknown"; }) {}; + "amazonka-redshift_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-redshift"; + version = "1.4.1"; + sha256 = "3f7c3091c83e393f6a83a4ca904b5e48c6378b7d4564e8011a92a8b1b61d1e86"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Redshift SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-route53_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29409,6 +30626,26 @@ self: { license = "unknown"; }) {}; + "amazonka-route53_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-route53"; + version = "1.4.1"; + sha256 = "3cd11cf0a58141fd357bbd9e058d087d31025e3baa23e3d9e5485c6fcd74372c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Route 53 SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-route53-domains_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29489,6 +30726,26 @@ self: { license = "unknown"; }) {}; + "amazonka-route53-domains_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-route53-domains"; + version = "1.4.1"; + sha256 = "78988dcf5e9e5c57b97c3c59d179aa36e30ee81a125dc0e16b2a5eda71dacd56"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Route 53 Domains SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-s3_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29571,6 +30828,26 @@ self: { license = "unknown"; }) {}; + "amazonka-s3_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , lens, tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-s3"; + version = "1.4.1"; + sha256 = "8ecb8988afbebc6f43b3d011a8a81536d2e49863aeb6f912b29d7170be920831"; + libraryHaskellDepends = [ amazonka-core base lens text ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Storage Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-sdb_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29651,6 +30928,26 @@ self: { license = "unknown"; }) {}; + "amazonka-sdb_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sdb"; + version = "1.4.1"; + sha256 = "e4f3ed1815ca1681cfbcff483136fc5e967239b38e708e64a700fc358a6bd514"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon SimpleDB SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ses_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29731,6 +31028,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ses_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ses"; + version = "1.4.1"; + sha256 = "10c7a8e01a375b1d863bc9daf1dfb4beb5c2613b766d0e5d66e9bbcf516be2eb"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Email Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-sns_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29811,6 +31128,26 @@ self: { license = "unknown"; }) {}; + "amazonka-sns_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sns"; + version = "1.4.1"; + sha256 = "8783e4e11fccb6e97e83682cbf550f8026eab1beb32a375681786039d6b5f8d4"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Notification Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-sqs_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29892,6 +31229,26 @@ self: { hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; + "amazonka-sqs_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sqs"; + version = "1.4.1"; + sha256 = "a0c05964c0e72538b79713a438d4af22ae407f5af3de0156d54362afd076db59"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Queue Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ssm_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29972,6 +31329,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ssm_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ssm"; + version = "1.4.1"; + sha256 = "8d42cbcf0c138c974a3c4aea0c5db6f7f9d84f91b690b01fe9cdb76351517011"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Systems Management Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-storagegateway_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -30052,6 +31429,26 @@ self: { license = "unknown"; }) {}; + "amazonka-storagegateway_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-storagegateway"; + version = "1.4.1"; + sha256 = "0f7c435d349fea3c59904962d29bcb55da27e2477d304ffddf86b9b3cb21979d"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Storage Gateway SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-sts_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -30132,6 +31529,26 @@ self: { license = "unknown"; }) {}; + "amazonka-sts_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sts"; + version = "1.4.1"; + sha256 = "4968023539276c047b93d1a7bad64e13b01c9dd9c0bcab419b58e1ac1be3aab1"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Security Token Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-support_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -30212,6 +31629,26 @@ self: { license = "unknown"; }) {}; + "amazonka-support_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-support"; + version = "1.4.1"; + sha256 = "02b87dfef8398f7400e1e204fc324287434e0c39eca886f4b7e3f562c6a77a27"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Support SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-swf_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -30294,6 +31731,26 @@ self: { license = "unknown"; }) {}; + "amazonka-swf_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-swf"; + version = "1.4.1"; + sha256 = "96bb747a87dc3938a076179e478d6eb52215ba593edd1c2178b660b983acb9c3"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Workflow Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-test_1_3_7" = callPackage ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring , case-insensitive, conduit, conduit-extra, groom, http-client @@ -30340,6 +31797,30 @@ self: { license = "unknown"; }) {}; + "amazonka-test_1_4_1" = callPackage + ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring + , case-insensitive, conduit, conduit-extra, groom, http-client + , http-types, process, resourcet, tasty, tasty-hunit + , template-haskell, temporary, text, time, unordered-containers + , yaml + }: + mkDerivation { + pname = "amazonka-test"; + version = "1.4.1"; + sha256 = "740db45e6773a104d80a1a0b8f83b399e6bfe122294545fce36d5a3da7e423a3"; + libraryHaskellDepends = [ + aeson amazonka-core base bifunctors bytestring case-insensitive + conduit conduit-extra groom http-client http-types process + resourcet tasty tasty-hunit template-haskell temporary text time + unordered-containers yaml + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Common functionality for Amazonka library test-suites"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-waf_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -30378,6 +31859,26 @@ self: { license = "unknown"; }) {}; + "amazonka-waf_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-waf"; + version = "1.4.1"; + sha256 = "5a93904b1e21cb8f1cdcacab8d65a7e81ae7cae4fabcf5cf6eab5fb06647fb05"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon WAF SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-workspaces_0_3_6" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -30430,6 +31931,26 @@ self: { license = "unknown"; }) {}; + "amazonka-workspaces_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-workspaces"; + version = "1.4.1"; + sha256 = "9a7e1583c4b98a4bf63439c936e17579a98970fef16d36d1f8ad8059e0626257"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon WorkSpaces SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ampersand" = callPackage ({ mkDerivation, base, bytestring, conduit, containers, csv , directory, filepath, graphviz, hashable, HStringTemplate, lens @@ -34087,6 +35608,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "atomic-primops_0_8_0_4" = callPackage + ({ mkDerivation, base, ghc-prim, primitive }: + mkDerivation { + pname = "atomic-primops"; + version = "0.8.0.4"; + sha256 = "47e1e393848c0538aa1733a90a63bd08a00915ec7499d90014aaecc792db9864"; + libraryHaskellDepends = [ base ghc-prim primitive ]; + homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; + description = "A safe approach to CAS and other atomic ops in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "atomic-primops-foreign" = callPackage ({ mkDerivation, base, bits-atomic, HUnit, test-framework , test-framework-hunit, time @@ -34941,6 +36475,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "auto-update_0_1_4" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "auto-update"; + version = "0.1.4"; + sha256 = "5e96c151024e8bcaf4eaa932e16995872b2017f46124b967e155744d9580b425"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/yesodweb/wai"; + description = "Efficiently run periodic, on-demand actions"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "autoexporter" = callPackage ({ mkDerivation, base, Cabal, directory, filepath }: mkDerivation { @@ -35208,7 +36755,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "avers-api" = callPackage + "avers-api_0_0_4" = callPackage ({ mkDerivation, aeson, avers, base, bytestring, cookie, servant , text, time, vector }: @@ -35226,6 +36773,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "avers-api" = callPackage + ({ mkDerivation, aeson, avers, base, bytestring, cookie + , http-api-data, servant, text, time, vector + }: + mkDerivation { + pname = "avers-api"; + version = "0.0.5"; + sha256 = "469fa007854e5836e816cdf66d650f7b89601dd9644cf859ff680bb6b69d124c"; + libraryHaskellDepends = [ + aeson avers base bytestring cookie http-api-data servant text time + vector + ]; + homepage = "http://github.com/wereHamster/avers-api"; + description = "Types describing the core and extended Avers APIs"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "avers-server_0_0_1" = callPackage ({ mkDerivation, aeson, avers, avers-api, base, bytestring , bytestring-conversion, cookie, either, http-types, mtl @@ -35270,7 +36835,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "avers-server" = callPackage + "avers-server_0_0_3" = callPackage ({ mkDerivation, aeson, avers, avers-api, base, base64-bytestring , bytestring, bytestring-conversion, containers, cookie, cryptohash , either, http-types, mtl, resource-pool, rethinkdb-client-driver @@ -35294,6 +36859,30 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "avers-server" = callPackage + ({ mkDerivation, aeson, avers, avers-api, base, base64-bytestring + , bytestring, bytestring-conversion, containers, cookie, cryptohash + , either, http-types, mtl, resource-pool, rethinkdb-client-driver + , servant, servant-server, stm, text, time, transformers, wai + , wai-websockets, websockets + }: + mkDerivation { + pname = "avers-server"; + version = "0.0.4"; + sha256 = "5d3d28135e20af8c92fd5b36ff4336b2858ac595b3eed3f33458a57f1c19ad4d"; + libraryHaskellDepends = [ + aeson avers avers-api base base64-bytestring bytestring + bytestring-conversion containers cookie cryptohash either + http-types mtl resource-pool rethinkdb-client-driver servant + servant-server stm text time transformers wai wai-websockets + websockets + ]; + homepage = "http://github.com/wereHamster/avers-server"; + description = "Server implementation of the Avers API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "avl-static" = callPackage ({ mkDerivation, base, QuickCheck, test-framework , test-framework-quickcheck2 @@ -43157,15 +44746,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "brick_0_5" = callPackage + "brick_0_5_1" = callPackage ({ mkDerivation, base, containers, contravariant, data-default , deepseq, lens, template-haskell, text, text-zipper, transformers , vector, vty }: mkDerivation { pname = "brick"; - version = "0.5"; - sha256 = "70819394a586d768e31bbf34b225ce642f682b625256ebe3c8651ee203f5e942"; + version = "0.5.1"; + sha256 = "eb3d43ecd16ac14da9846941ea834ebb99bbfc2f95008dc109b3fa2fef7d9d8d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -45364,6 +46953,35 @@ self: { license = stdenv.lib.licenses.agpl3; }) {}; + "cabal-helper_0_7_0_1" = callPackage + ({ mkDerivation, base, bytestring, Cabal, cabal-install, directory + , extra, filepath, ghc-prim, mtl, process, template-haskell + , temporary, transformers, unix, utf8-string + }: + mkDerivation { + pname = "cabal-helper"; + version = "0.7.0.1"; + sha256 = "4c158f81ad325a0b2bfd5bfec149851f59837fd73775c8b4da0050bdeca0182d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base Cabal directory filepath ghc-prim mtl process transformers + ]; + executableHaskellDepends = [ + base bytestring Cabal directory filepath ghc-prim process + template-haskell temporary transformers utf8-string + ]; + testHaskellDepends = [ + base bytestring Cabal directory extra filepath ghc-prim mtl process + template-haskell temporary transformers unix utf8-string + ]; + testToolDepends = [ cabal-install ]; + doCheck = false; + description = "Simple interface to some of Cabal's configuration state used by ghc-mod"; + license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "cabal-info" = callPackage ({ mkDerivation, base, Cabal, directory, filepath , optparse-applicative @@ -46083,7 +47701,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cabal-rpm" = callPackage + "cabal-rpm_0_9_10" = callPackage ({ mkDerivation, base, Cabal, directory, filepath, process, time , unix }: @@ -46099,6 +47717,25 @@ self: { homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cabal-rpm" = callPackage + ({ mkDerivation, base, Cabal, directory, filepath, process, time + , unix + }: + mkDerivation { + pname = "cabal-rpm"; + version = "0.9.11"; + sha256 = "ba5c748e84cfda23dee92d9381b34f013bf2840452bebe53d3f0c2e1bd31d581"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base Cabal directory filepath process time unix + ]; + homepage = "https://github.com/juhp/cabal-rpm"; + description = "RPM packaging tool for Haskell Cabal-based packages"; + license = stdenv.lib.licenses.gpl3; }) {}; "cabal-scripts" = callPackage @@ -48341,8 +49978,8 @@ self: { ({ mkDerivation, base, bytestring, comonad, text }: mkDerivation { pname = "category-printf"; - version = "0.1.0.2"; - sha256 = "135238d1fccf41277339c28c9479091b5ab5243674652ba4f644bcdcc2267de4"; + version = "0.1.1.0"; + sha256 = "51b6e8bef10f4e17a11b553cd2ea04dca728f27f171464c14ffdf359abbd0ba5"; libraryHaskellDepends = [ base bytestring comonad text ]; jailbreak = true; description = "Highbrow approach to type-safe printf format specifications"; @@ -48548,8 +50185,8 @@ self: { }: mkDerivation { pname = "cef"; - version = "0.1.3"; - sha256 = "9918fb0b19e23aefe90ed914e30498011f1fa6ea0c8ffdc9e8f8a90337ac41d4"; + version = "0.1.4"; + sha256 = "8564580a312cfee425d2d40e3b99283a05c50f4cdf2f283bc892c19c6fbec4cb"; libraryHaskellDepends = [ base bytestring text time ]; testHaskellDepends = [ base directory doctest filepath ]; homepage = "http://github.com/picussecurity/haskell-cef.git"; @@ -56168,7 +57805,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit" = callPackage + "conduit_1_2_6_4" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, mtl, QuickCheck, resourcet, safe, transformers , transformers-base @@ -56188,17 +57825,18 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit_1_2_6_5" = callPackage + "conduit" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, mtl, QuickCheck, resourcet, safe, transformers , transformers-base }: mkDerivation { pname = "conduit"; - version = "1.2.6.5"; - sha256 = "b7915cd0d1dea9bbbf47060c980bbc5b214717874533f88ced763a49d905b4f8"; + version = "1.2.6.6"; + sha256 = "958fe8636ef49b947493fd23ea1522d51e82e6acc87cb9e5038398e25fa5d188"; libraryHaskellDepends = [ base exceptions lifted-base mmorph mtl resourcet transformers transformers-base @@ -56210,7 +57848,6 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conduit-audio" = callPackage @@ -57181,6 +58818,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "configurator-export_0_1_0_1" = callPackage + ({ mkDerivation, base, base-compat, configurator, pretty + , semigroups, text, unordered-containers + }: + mkDerivation { + pname = "configurator-export"; + version = "0.1.0.1"; + sha256 = "9dbd62ef29c97792ccdfdb1b3b79aedfa527dce49a9ac5054f21b29a7f9b824c"; + libraryHaskellDepends = [ + base base-compat configurator pretty semigroups text + unordered-containers + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/mstksg/configurator-export"; + description = "Pretty printer and exporter for configurations from the \"configurator\" library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "confsolve" = callPackage ({ mkDerivation, attoparsec, base, cmdargs, process, system-fileio , system-filepath, text, time, unordered-containers @@ -60878,6 +62534,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cryptohash-md5" = callPackage + ({ mkDerivation, base, bytestring, tasty, tasty-hunit + , tasty-quickcheck + }: + mkDerivation { + pname = "cryptohash-md5"; + version = "0.11.7.1"; + sha256 = "c6e64cb9278403f6c6cdd435f6b612da4f4aca1cc2e687f6773d054c48dbb271"; + libraryHaskellDepends = [ base bytestring ]; + testHaskellDepends = [ + base bytestring tasty tasty-hunit tasty-quickcheck + ]; + homepage = "https://github.com/hvr/cryptohash-md5"; + description = "Fast, pure and practical MD5 implementation"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cryptohash-sha256" = callPackage ({ mkDerivation, base, bytestring, tasty, tasty-hunit , tasty-quickcheck @@ -62056,8 +63729,8 @@ self: { }: mkDerivation { pname = "d3d11binding"; - version = "0.0.0.5"; - sha256 = "036c759c06663100d0de0ce8e0bdd8e8d476bfbf02221c4678faecbaf229400f"; + version = "0.0.0.6"; + sha256 = "7e5fe934403cd83f94b97d539863ad26df6f0de67d4f291dcabeaaabe7462252"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base c-storable-deriving vect Win32 ]; @@ -65232,7 +66905,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "declarative" = callPackage + "declarative_0_1_0_1" = callPackage ({ mkDerivation, base, hasty-hamiltonian, lens, mcmc-types , mighty-metropolis, mwc-probability, pipes, primitive , speedy-slice, transformers @@ -65249,6 +66922,46 @@ self: { homepage = "http://github.com/jtobin/declarative"; description = "DIY Markov Chains"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "declarative" = callPackage + ({ mkDerivation, base, hasty-hamiltonian, lens, mcmc-types + , mighty-metropolis, mwc-probability, pipes, primitive + , speedy-slice, transformers + }: + mkDerivation { + pname = "declarative"; + version = "0.2.1"; + sha256 = "7e4996de092e39fb310e9ea0eeb8a85a16c4f0ce92d8ec73b653374f07a2ecd4"; + libraryHaskellDepends = [ + base hasty-hamiltonian lens mcmc-types mighty-metropolis + mwc-probability pipes primitive speedy-slice transformers + ]; + testHaskellDepends = [ base mwc-probability ]; + homepage = "http://github.com/jtobin/declarative"; + description = "DIY Markov Chains"; + license = stdenv.lib.licenses.mit; + }) {}; + + "declarative_0_2_2" = callPackage + ({ mkDerivation, base, hasty-hamiltonian, lens, mcmc-types + , mighty-metropolis, mwc-probability, pipes, primitive + , speedy-slice, transformers + }: + mkDerivation { + pname = "declarative"; + version = "0.2.2"; + sha256 = "2201fb8299231ad5017a4ebf429d5036f7d3950df8cf3e684173fa7d658cac8e"; + libraryHaskellDepends = [ + base hasty-hamiltonian lens mcmc-types mighty-metropolis + mwc-probability pipes primitive speedy-slice transformers + ]; + testHaskellDepends = [ base mwc-probability ]; + homepage = "http://github.com/jtobin/declarative"; + description = "DIY Markov Chains"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "decode-utf8" = callPackage @@ -73578,13 +75291,12 @@ self: { pname = "ed25519"; version = "0.0.5.0"; sha256 = "d8a5958ebfa9309790efade64275dc5c441b568645c45ceed1b0c6ff36d6156d"; - revision = "1"; - editedCabalFile = "4e8742cc8e8bf5d078c68c9f550b06566c7a94df3ff3070cfe4c91cbee664f06"; + revision = "2"; + editedCabalFile = "2e051ab9d98bc22e0c4afe09e763d3e8e0571ea51a3ae952db33ac89e58006b3"; libraryHaskellDepends = [ base bytestring ghc-prim ]; testHaskellDepends = [ base bytestring directory doctest filepath hlint QuickCheck ]; - jailbreak = true; homepage = "http://thoughtpolice.github.com/hs-ed25519"; description = "Ed25519 cryptographic signatures"; license = stdenv.lib.licenses.mit; @@ -74412,6 +76124,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "either_4_4_1_1" = callPackage + ({ mkDerivation, base, bifunctors, exceptions, free, mmorph + , monad-control, MonadRandom, mtl, profunctors, semigroupoids + , semigroups, transformers, transformers-base + }: + mkDerivation { + pname = "either"; + version = "4.4.1.1"; + sha256 = "b087cb0fb63fec2fbdcac05fef0d03751daef5deb86cda3c732b9a6a31e634d3"; + libraryHaskellDepends = [ + base bifunctors exceptions free mmorph monad-control MonadRandom + mtl profunctors semigroupoids semigroups transformers + transformers-base + ]; + homepage = "http://github.com/ekmett/either/"; + description = "An either monad transformer"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "either-unwrap" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -75770,21 +77502,20 @@ self: { }) {}; "enumerate" = callPackage - ({ mkDerivation, base, containers, deepseq, exceptions, ghc-prim - , MemoTrie, modular-arithmetic, semigroups, template-haskell, vinyl + ({ mkDerivation, array, base, containers, deepseq, exceptions + , ghc-prim, MemoTrie, semigroups, template-haskell, vinyl }: mkDerivation { pname = "enumerate"; - version = "0.0.0"; - sha256 = "a94c036510a6f14724cdc8adefefd85382902e049633234f69cb3f5fea4a3839"; + version = "0.1.1"; + sha256 = "22b4079b793d645f2d1c1e0f151b1aa78e430a32868cf2f8980f7ca13b73091e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers deepseq exceptions ghc-prim MemoTrie - modular-arithmetic semigroups template-haskell vinyl + array base containers deepseq exceptions ghc-prim MemoTrie + semigroups template-haskell vinyl ]; executableHaskellDepends = [ base ]; - jailbreak = true; homepage = "https://github.com/sboosali/enumerate"; description = "enumerate all the values in a finite type (automatically)"; license = stdenv.lib.licenses.mit; @@ -76965,8 +78696,8 @@ self: { }: mkDerivation { pname = "eternal"; - version = "0.1.3"; - sha256 = "9db1f4e585dab1a838310d746799dc59db6840575c9c3b82e7fca0b1f939ecef"; + version = "0.1.4"; + sha256 = "e7224a9b8f8fa210ed3ed078a2aeec3d1ffb829df678cabfd09dc1cc749b2aac"; libraryHaskellDepends = [ base base-unicode-symbols transformers utf8-string ]; @@ -77317,8 +79048,8 @@ self: { }: mkDerivation { pname = "eventloop"; - version = "0.8.0.1"; - sha256 = "7e89dcc7ea6bcc0843ca16d6df613fa0b873117ef1bfd818478bdb301c6311cb"; + version = "0.8.1.1"; + sha256 = "2b066af25bcb398ae29ed0f62c506c459af6fe69b93b494f840d6bd3c283bfb4"; libraryHaskellDepends = [ aeson base bytestring concurrent-utilities deepseq network stm suspend text timers websockets @@ -79153,8 +80884,8 @@ self: { }: mkDerivation { pname = "fast-tagsoup"; - version = "1.0.10"; - sha256 = "83e90610fdd1c0f6587e293a7f188cdc5376425e002be2226c83afea2b20d046"; + version = "1.0.12"; + sha256 = "6447078da5a85c62528edab1a266ae8709811ba1d113f6dee1ec249e75e3904a"; libraryHaskellDepends = [ base bytestring containers tagsoup text text-icu ]; @@ -81785,8 +83516,8 @@ self: { ({ mkDerivation, base, transformers }: mkDerivation { pname = "first-class-patterns"; - version = "0.3.2.2"; - sha256 = "c8e4ff951a16806ecfecba1739a13b45489ddf742a1bb025ff915164bdaa4735"; + version = "0.3.2.3"; + sha256 = "93de2ae56c0f90bb9f8938a5c653907a3c9b366087cc9f3751378eb7a6aa3714"; libraryHaskellDepends = [ base transformers ]; homepage = "https://github.com/reinerp/first-class-patterns"; description = "First class patterns and pattern matching, using type families"; @@ -84271,8 +86002,8 @@ self: { }: mkDerivation { pname = "fquery"; - version = "0.2.2"; - sha256 = "5641c8748ff11e5ba37175eac76ee4b14739a3d4d4711ea5ce023bc8d8559cbe"; + version = "0.2.3"; + sha256 = "8bbbedcec2bd3f98ea91a187b3970de55a5e2c60ec96fe44b7609a9d122f039e"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -90171,6 +91902,49 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "github-release" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-client + , http-client-tls, http-types, mime-types, optparse-generic, text + , unordered-containers, uri-templater + }: + mkDerivation { + pname = "github-release"; + version = "0.1.5"; + sha256 = "bef5d00d01c10c5c2d8deb29465eefe390c8dc6ad691f1c81fab86256c50594e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring http-client http-client-tls http-types + mime-types optparse-generic text unordered-containers uri-templater + ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/tfausak/github-release#readme"; + description = "Upload files to GitHub releases"; + license = stdenv.lib.licenses.mit; + }) {}; + + "github-release_0_1_8" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-client + , http-client-tls, http-types, mime-types, optparse-generic, text + , unordered-containers, uri-templater + }: + mkDerivation { + pname = "github-release"; + version = "0.1.8"; + sha256 = "165ea874a35b23014def46e67f4d348135c35f31a86d445576e17c22948343bf"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring http-client http-client-tls http-types + mime-types optparse-generic text unordered-containers uri-templater + ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/tfausak/github-release#readme"; + description = "Upload files to GitHub releases"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "github-types" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, hspec, hspec-smallcheck , http-conduit, smallcheck, text, time, unordered-containers @@ -92348,12 +94122,15 @@ self: { pname = "gogol-core"; version = "0.0.1"; sha256 = "5baad8cb7a646cee9490916096ba71bf75168d7f807d79419d350813fc52ef9b"; + revision = "1"; + editedCabalFile = "511fe34ba21f0de5e0349dbab8be23bf824e1229c086ee95613af4b5bf8e29e2"; libraryHaskellDepends = [ aeson attoparsec base bytestring case-insensitive conduit dlist exceptions hashable http-client http-media http-types lens resourcet scientific servant text time unordered-containers ]; testHaskellDepends = [ base tasty ]; + jailbreak = true; homepage = "https://github.com/brendanhay/gogol"; description = "Core data types and functionality for Gogol libraries"; license = "unknown"; @@ -97608,10 +99385,11 @@ self: { pname = "hackage-security-HTTP"; version = "0.1.1"; sha256 = "cd22ac26027df4a6f9c32f57c18a2fad6b69249e79aeeb4081128fd188cd1332"; + revision = "1"; + editedCabalFile = "7285a235c94e56319275337ad1c82b3f84982e58f1b1fdb3a88d7b3c2d966286"; libraryHaskellDepends = [ base bytestring hackage-security HTTP mtl network network-uri zlib ]; - jailbreak = true; homepage = "https://github.com/well-typed/hackage-security"; description = "Hackage security bindings against the HTTP library"; license = stdenv.lib.licenses.bsd3; @@ -106869,15 +108647,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hedis_0_8_2" = callPackage + "hedis_0_8_3" = 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.2"; - sha256 = "4d577fcb4e1457455210ee58d0aef3f02069d2d4d055108a0391899544a254a9"; + version = "0.8.3"; + sha256 = "233debced6ce6285ecc5974769a748d4c9b97bbde7eb4be097b907d668b69d9e"; libraryHaskellDepends = [ base bytestring bytestring-lexing deepseq mtl network resource-pool scanner text time vector @@ -110447,28 +112225,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hjsonpointer_0_2_0_4" = callPackage - ({ mkDerivation, aeson, base, http-types, HUnit, test-framework - , test-framework-hunit, text, unordered-containers, vector - }: - mkDerivation { - pname = "hjsonpointer"; - version = "0.2.0.4"; - sha256 = "8ac317938cc885b01d1165f15671def24e6ceac971413bd494195e77fe0e45b0"; - libraryHaskellDepends = [ - aeson base text unordered-containers vector - ]; - testHaskellDepends = [ - aeson base http-types HUnit test-framework test-framework-hunit - text unordered-containers vector - ]; - jailbreak = true; - homepage = "https://github.com/seagreen/hjsonpointer"; - description = "JSON Pointer library"; - license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hjsonpointer" = callPackage ({ mkDerivation, aeson, base, http-types, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -112736,8 +114492,8 @@ self: { }: mkDerivation { pname = "hobbits"; - version = "1.2"; - sha256 = "f778c6919bb011b565005a540f3aba6c9d4a08be530333939612358225595d50"; + version = "1.2.1"; + sha256 = "d2e11a1b42ee877a4c74df40df4f0131432c7d7219bf8304de239e2e7a44a0a1"; libraryHaskellDepends = [ base deepseq haskell-src-exts haskell-src-meta mtl syb tagged template-haskell th-expand-syns transformers @@ -114370,6 +116126,36 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "houseman" = callPackage + ({ mkDerivation, base, bytestring, directory, dotenv, hspec + , interpolate, io-streams, mockery, mtl, optparse-generic, parsers + , process, QuickCheck, silently, streaming-commons, temporary, text + , time, trifecta, unix + }: + mkDerivation { + pname = "houseman"; + version = "0.1.0"; + sha256 = "542e790677bcacd177e5dc74c355dfc444f33d596e6229db563615ec7276a19c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring directory dotenv io-streams mtl optparse-generic + parsers process streaming-commons text time trifecta unix + ]; + executableHaskellDepends = [ + base bytestring directory dotenv io-streams mtl optparse-generic + parsers process streaming-commons text time trifecta unix + ]; + testHaskellDepends = [ + base bytestring directory dotenv hspec interpolate io-streams + mockery mtl optparse-generic parsers process QuickCheck silently + streaming-commons temporary text time trifecta unix + ]; + homepage = "https://github.com/fujimura/houseman#readme"; + description = "A Haskell implementation of Foreman"; + license = stdenv.lib.licenses.mit; + }) {}; + "hp2any-core" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers , directory, filepath, network, old-locale, process, time @@ -114492,6 +116278,36 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "hpack_0_14_0" = callPackage + ({ mkDerivation, aeson, aeson-qq, base, base-compat, containers + , deepseq, directory, filepath, Glob, hspec, interpolate, mockery + , QuickCheck, temporary, text, unordered-containers, yaml + }: + mkDerivation { + pname = "hpack"; + version = "0.14.0"; + sha256 = "ec0c1c2619059ebbd29e7c1069831313b92292da900daadf785b78dd1b9ca291"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base base-compat containers deepseq directory filepath Glob + text unordered-containers yaml + ]; + executableHaskellDepends = [ + aeson base base-compat containers deepseq directory filepath Glob + text unordered-containers yaml + ]; + testHaskellDepends = [ + aeson aeson-qq base base-compat containers deepseq directory + filepath Glob hspec interpolate mockery QuickCheck temporary text + unordered-containers yaml + ]; + homepage = "https://github.com/sol/hpack#readme"; + description = "An alternative format for Haskell packages"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hpaco" = callPackage ({ mkDerivation, aeson, base, cmdargs, filepath, hpaco-lib, strict , utf8-string, yaml @@ -114620,6 +116436,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hpath" = callPackage + ({ mkDerivation, base, bytestring, deepseq, doctest, exceptions + , hspec, HUnit, process, QuickCheck, unix, unix-bytestring + , utf8-string, word8 + }: + mkDerivation { + pname = "hpath"; + version = "0.6.0"; + sha256 = "bbd8a996e6328274a19943b884fbeca6790df955775ac6f0be6575f25b310404"; + libraryHaskellDepends = [ + base bytestring deepseq exceptions hspec unix unix-bytestring + utf8-string word8 + ]; + testHaskellDepends = [ + base bytestring doctest hspec HUnit process QuickCheck unix + utf8-string + ]; + description = "Support for well-typed paths"; + license = stdenv.lib.licenses.gpl2; + }) {}; + "hpc_0_6_0_3" = callPackage ({ mkDerivation, base, containers, directory, filepath, time }: mkDerivation { @@ -120400,14 +122237,14 @@ self: { }) {}; "htoml" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , file-embed, old-locale, parsec, tasty, tasty-hspec, tasty-hunit - , text, time, unordered-containers, vector + ({ mkDerivation, aeson, base, bytestring, containers, file-embed + , old-locale, parsec, tasty, tasty-hspec, tasty-hunit, text, time + , unordered-containers, vector }: mkDerivation { pname = "htoml"; - version = "0.1.0.3"; - sha256 = "84890e99f5f01d38c2177f9d4f1ff1ce4e50e832a663d1c3ebe7d9750156ab16"; + version = "1.0.0.1"; + sha256 = "11145f645768abaa51c6ffda70f1c6fe7bb99163877efb13058a16d2d0bd592b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -120415,11 +122252,11 @@ self: { unordered-containers vector ]; executableHaskellDepends = [ - aeson base bytestring Cabal containers file-embed parsec tasty + aeson base bytestring containers file-embed parsec tasty tasty-hspec tasty-hunit text time unordered-containers vector ]; testHaskellDepends = [ - aeson base bytestring Cabal containers file-embed parsec tasty + aeson base bytestring containers file-embed parsec tasty tasty-hspec tasty-hunit text time unordered-containers vector ]; homepage = "https://github.com/cies/htoml"; @@ -121820,7 +123657,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-conduit" = callPackage + "http-conduit_2_1_10" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring , case-insensitive, conduit, conduit-extra, connection, cookie , data-default-class, exceptions, hspec, http-client @@ -121848,6 +123685,37 @@ self: { homepage = "http://www.yesodweb.com/book/http-conduit"; description = "HTTP client package with conduit interface and HTTPS support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-conduit" = callPackage + ({ mkDerivation, aeson, base, blaze-builder, bytestring + , case-insensitive, conduit, conduit-extra, connection, cookie + , data-default-class, exceptions, hspec, http-client + , http-client-tls, http-types, HUnit, lifted-base, monad-control + , mtl, network, resourcet, streaming-commons, temporary, text, time + , transformers, utf8-string, wai, wai-conduit, warp, warp-tls + }: + mkDerivation { + pname = "http-conduit"; + version = "2.1.10.1"; + sha256 = "36ebae73f7bf984e1062aa6079b935069b49a5b3811ea935194c0cecb8de815f"; + libraryHaskellDepends = [ + aeson base bytestring conduit conduit-extra data-default-class + exceptions http-client http-client-tls http-types lifted-base + monad-control mtl resourcet transformers + ]; + testHaskellDepends = [ + aeson base blaze-builder bytestring case-insensitive conduit + conduit-extra connection cookie data-default-class hspec + http-client http-types HUnit lifted-base network streaming-commons + temporary text time transformers utf8-string wai wai-conduit warp + warp-tls + ]; + doCheck = false; + homepage = "http://www.yesodweb.com/book/http-conduit"; + description = "HTTP client package with conduit interface and HTTPS support"; + license = stdenv.lib.licenses.bsd3; }) {}; "http-conduit-browser" = callPackage @@ -123353,16 +125221,16 @@ self: { "hw-conduit" = callPackage ({ mkDerivation, array, base, bytestring, conduit, criterion, hspec - , hw-bits, resourcet + , hw-bits, resourcet, word8 }: mkDerivation { pname = "hw-conduit"; - version = "0.0.0.9"; - sha256 = "48bbf4936ee486f79f40cfac76b425dc019b82dfdfce40539c2ec495436e6293"; + version = "0.0.0.11"; + sha256 = "e0e1193a901858d9bc5fccc51f99977a9bffd24993f9de6c1c3030aa0a1ed77b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - array base bytestring conduit hw-bits resourcet + array base bytestring conduit hw-bits resourcet word8 ]; executableHaskellDepends = [ base criterion ]; testHaskellDepends = [ base bytestring hspec ]; @@ -123387,6 +125255,68 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hw-json" = callPackage + ({ mkDerivation, array, attoparsec, base, bytestring, conduit + , containers, criterion, hspec, hw-bits, hw-conduit, hw-diagnostics + , hw-parser, hw-prim, hw-rankselect, mmap, mono-traversable, parsec + , QuickCheck, resourcet, text, transformers, vector, word8 + }: + mkDerivation { + pname = "hw-json"; + version = "0.0.0.2"; + sha256 = "b1205920d0b1ef4046a0d5ff4513d9d6b4ca952e080b7608b9de85b67d38b3fa"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array attoparsec base bytestring conduit containers hw-bits + hw-conduit hw-parser hw-prim hw-rankselect mono-traversable + resourcet text vector word8 + ]; + executableHaskellDepends = [ + base bytestring conduit criterion hw-bits hw-conduit hw-diagnostics + hw-prim hw-rankselect mmap resourcet vector + ]; + testHaskellDepends = [ + attoparsec base bytestring conduit hspec hw-bits hw-conduit hw-prim + hw-rankselect mmap parsec QuickCheck resourcet transformers vector + ]; + homepage = "http://github.com/haskell-works/hw-json#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "hw-json_0_0_0_3" = callPackage + ({ mkDerivation, array, attoparsec, base, bytestring, conduit + , containers, criterion, hspec, hw-bits, hw-conduit, hw-diagnostics + , hw-parser, hw-prim, hw-rankselect, mmap, mono-traversable, parsec + , QuickCheck, resourcet, text, transformers, vector, word8 + }: + mkDerivation { + pname = "hw-json"; + version = "0.0.0.3"; + sha256 = "873af674982dd9edb44522ddb99144e902cf2b9baf3091ca68619c24d680326e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array attoparsec base bytestring conduit containers hw-bits + hw-conduit hw-parser hw-prim hw-rankselect mono-traversable + resourcet text vector word8 + ]; + executableHaskellDepends = [ + base bytestring conduit criterion hw-bits hw-conduit hw-diagnostics + hw-prim hw-rankselect mmap resourcet vector + ]; + testHaskellDepends = [ + attoparsec base bytestring conduit containers hspec hw-bits + hw-conduit hw-prim hw-rankselect mmap parsec QuickCheck resourcet + transformers vector + ]; + homepage = "http://github.com/haskell-works/hw-json#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 @@ -123421,6 +125351,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hw-prim_0_0_0_11" = callPackage + ({ mkDerivation, base, bytestring, hspec, QuickCheck, random + , vector + }: + mkDerivation { + pname = "hw-prim"; + version = "0.0.0.11"; + sha256 = "6d9c2bb19313e5995dff5de36438ff3ae5632478631bdb66d65eca2397469015"; + 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 }: @@ -123440,29 +125389,38 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hw-succinct" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit, criterion - , hspec, hw-bits, hw-conduit, hw-diagnostics, hw-parser, hw-prim - , hw-rankselect, mmap, mono-traversable, parsec, QuickCheck - , resourcet, text, transformers, vector + "hw-rankselect_0_0_0_3" = callPackage + ({ mkDerivation, base, hspec, hw-bits, hw-prim, QuickCheck, vector }: mkDerivation { - pname = "hw-succinct"; - version = "0.0.0.12"; - sha256 = "2005251655ba822fd8eabbb81247126014e5aea55e68dadd1547c8460a448310"; + pname = "hw-rankselect"; + version = "0.0.0.3"; + sha256 = "d00344eb9e7f8ae778551eb43cd37717d508b6d8b1fde4b554eaa6c5bd04efab"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ - 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 - hw-prim hw-rankselect mmap resourcet vector - ]; + libraryHaskellDepends = [ base hw-bits hw-prim vector ]; + executableHaskellDepends = [ base ]; testHaskellDepends = [ - attoparsec base bytestring conduit hspec hw-bits hw-conduit hw-prim - hw-rankselect mmap parsec QuickCheck resourcet transformers vector + base hspec hw-bits hw-prim QuickCheck vector + ]; + homepage = "http://github.com/haskell-works/hw-rankselect#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hw-succinct" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, conduit, containers + , hw-bits, hw-conduit, hw-parser, hw-prim, hw-rankselect + , mono-traversable, text, vector, word8 + }: + mkDerivation { + pname = "hw-succinct"; + version = "0.0.0.14"; + sha256 = "f3e2ec65f1d7e0baa7cda17442cdcd60635cd2693a38873361df9578b65ffbeb"; + libraryHaskellDepends = [ + attoparsec base bytestring conduit containers hw-bits hw-conduit + hw-parser hw-prim hw-rankselect mono-traversable text vector word8 ]; homepage = "http://github.com/haskell-works/hw-succinct#readme"; description = "Conduits for tokenizing streams"; @@ -131377,6 +133335,24 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "json-ast-json-encoder" = callPackage + ({ mkDerivation, base-prelude, contravariant, contravariant-extras + , json-ast, json-encoder, scientific, text, unordered-containers + , vector + }: + mkDerivation { + pname = "json-ast-json-encoder"; + version = "0.1"; + sha256 = "c0e75b796effda6b295d21c2ea99f992425f7085a07513b95c9943377eb87233"; + libraryHaskellDepends = [ + base-prelude contravariant contravariant-extras json-ast + json-encoder scientific text unordered-containers vector + ]; + homepage = "https://github.com/sannsyn/json-ast-json-encoder"; + description = "Encoders of JSON AST"; + license = stdenv.lib.licenses.mit; + }) {}; + "json-ast-quickcheck" = callPackage ({ mkDerivation, base, json-ast, QuickCheck, quickcheck-instances }: @@ -135371,6 +137347,33 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; + "lambdacube-gl_0_5_0_4" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, bytestring + , containers, exceptions, GLFW-b, JuicyPixels, lambdacube-ir, mtl + , network, OpenGLRaw, text, time, vector, vector-algorithms + , websockets + }: + mkDerivation { + pname = "lambdacube-gl"; + version = "0.5.0.4"; + sha256 = "9cda9d95d3938685a83531b3db3f9d6a32fe0fa685d94318bf6a94d159f820df"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring containers JuicyPixels lambdacube-ir mtl OpenGLRaw + vector vector-algorithms + ]; + executableHaskellDepends = [ + aeson base base64-bytestring bytestring containers exceptions + GLFW-b JuicyPixels lambdacube-ir network OpenGLRaw text time vector + websockets + ]; + homepage = "http://lambdacube3d.com"; + description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "lambdacube-ir" = callPackage ({ mkDerivation, aeson, base, containers, mtl, text, vector }: mkDerivation { @@ -139271,15 +141274,15 @@ self: { "libravatar" = callPackage ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , dns, network-uri, random, url, utf8-string + , dns, memory, random, text, uri-bytestring, url }: mkDerivation { pname = "libravatar"; - version = "0.3.0.1"; - sha256 = "43c646e85abcf577cb0fa09feffbbd45f4cd4cc6203db33d5a6e5a61da42dace"; + version = "0.4"; + sha256 = "32cade964a11e8474cdb23bcc5f9f8d6dbdc6186daeb191dc300d64eb7f21f2c"; libraryHaskellDepends = [ - base bytestring cryptonite data-default-class dns network-uri - random url utf8-string + base bytestring cryptonite data-default-class dns memory random + text uri-bytestring url ]; homepage = "http://rel4tion.org/projects/libravatar/"; description = "Use Libravatar, the decentralized avatar delivery service"; @@ -140815,14 +142818,29 @@ self: { ({ mkDerivation, base, Cabal, filepath }: mkDerivation { pname = "liquidhaskell-cabal"; - version = "0.1.0.0"; - sha256 = "0c13322b6925738ea5bbbbda9ce472e9aa44dd6d8a59c7b1a5dca953d75b848a"; + version = "0.1.1.0"; + sha256 = "fe83b2153191e0280b8cf4bed982482642bad9fcb549d227942a7681a5d69763"; libraryHaskellDepends = [ base Cabal filepath ]; homepage = "https://github.com/spinda/liquidhaskell-cabal#readme"; description = "Liquid Haskell integration for Cabal and stack"; license = stdenv.lib.licenses.bsd3; }) {}; + "liquidhaskell-cabal-demo" = callPackage + ({ mkDerivation, base, liquidhaskell-cabal }: + mkDerivation { + pname = "liquidhaskell-cabal-demo"; + version = "0.1.1.0"; + sha256 = "471cb6630dbcdf1071da28c2affe74717f0d5e23b2205f353eab2aa905f41e22"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base liquidhaskell-cabal ]; + executableHaskellDepends = [ base liquidhaskell-cabal ]; + homepage = "https://github.com/spinda/liquidhaskell-cabal-demo#readme"; + description = "Demo of Liquid Haskell integration for Cabal and stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "lispparser" = callPackage ({ mkDerivation, base, parsec }: mkDerivation { @@ -141884,8 +143902,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "located-base"; - version = "0.1.0.0"; - sha256 = "f23a297515bde2600a6f040f0e0b5c987a0ba2d55225fe60546faffd54fc6449"; + version = "0.1.1.0"; + sha256 = "83a96081c87ec9820b6bad7200404f7e1fbed365fe8c57641d8645d95732d59f"; libraryHaskellDepends = [ base ]; homepage = "http://github.com/gridaphobe/located-base"; description = "Location-aware variants of partial functions"; @@ -145215,7 +147233,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mandrill" = callPackage + "mandrill_0_5_2_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 @@ -145237,9 +147255,10 @@ self: { ]; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mandrill_0_5_2_1" = callPackage + "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 @@ -145261,7 +147280,6 @@ self: { ]; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mandulia" = callPackage @@ -149976,6 +151994,21 @@ self: { license = "GPL"; }) {}; + "monad-dijkstra" = callPackage + ({ mkDerivation, base, free, hlint, mtl, psqueues, tasty + , tasty-hspec, transformers + }: + mkDerivation { + pname = "monad-dijkstra"; + version = "0.1.0.0"; + sha256 = "2810e69b6f90dd55b63f476caa54cc4dbf4f1d1ac4b0dffea57c2398ba7cfc31"; + libraryHaskellDepends = [ base free mtl psqueues transformers ]; + testHaskellDepends = [ base hlint tasty tasty-hspec ]; + homepage = "https://github.com/ennocramer/monad-dijkstra"; + description = "Monad transformer for weighted graph searches using Dijkstra's or A* algorithm"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "monad-exception" = callPackage ({ mkDerivation, base, monad-control, mtl-evil-instances , transformers, transformers-base @@ -153538,6 +155571,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "multiset-comb_0_2_4_1" = callPackage + ({ mkDerivation, base, containers, transformers }: + mkDerivation { + pname = "multiset-comb"; + version = "0.2.4.1"; + sha256 = "8ae3432daf56c1752a0d63e25acbc8b6b4dce52600091139a9e29b16400030da"; + libraryHaskellDepends = [ base containers transformers ]; + description = "Combinatorial algorithms over multisets"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "multisetrewrite" = callPackage ({ mkDerivation, base, haskell98, stm }: mkDerivation { @@ -155714,9 +157759,9 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "nested-routes_7_1_0" = callPackage + "nested-routes_7_1_0_1" = callPackage ({ mkDerivation, attoparsec, base, bytestring, composition-extra - , errors, exceptions, hashable, hashtables, hspec, hspec-wai + , errors, exceptions, hashable, hashtables, HSet, hspec, hspec-wai , http-types, mtl, poly-arity, pred-set, pred-trie, regex-compat , semigroups, text, transformers, tries, unordered-containers , wai-middleware-content-type, wai-middleware-verbs @@ -155724,8 +157769,8 @@ self: { }: mkDerivation { pname = "nested-routes"; - version = "7.1.0"; - sha256 = "1fbd722b6a9e637ff1794d1a122d6f52ae6b3cf9b70ebfc0afd5bcd593a12861"; + version = "7.1.0.1"; + sha256 = "92da6c57328e531072e17ea8ae5ff9bd2752fef57f74a151d263c79e30d38c80"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -155736,15 +157781,15 @@ self: { ]; executableHaskellDepends = [ attoparsec base bytestring composition-extra errors exceptions - hashable hashtables http-types mtl poly-arity pred-set pred-trie - regex-compat semigroups text transformers tries + hashable hashtables HSet http-types mtl poly-arity pred-set + pred-trie regex-compat semigroups text transformers tries unordered-containers wai-middleware-content-type wai-middleware-verbs wai-transformers warp ]; testHaskellDepends = [ attoparsec base bytestring composition-extra errors exceptions - hashable hspec hspec-wai http-types mtl poly-arity pred-trie - regex-compat semigroups text transformers tries + hashable hashtables HSet hspec hspec-wai http-types mtl poly-arity + pred-set pred-trie regex-compat semigroups text transformers tries unordered-containers wai-middleware-content-type wai-middleware-verbs wai-transformers ]; @@ -156641,8 +158686,8 @@ self: { }: mkDerivation { pname = "network-conduit-tls"; - version = "1.2.1"; - sha256 = "3afaab3abeb6933cdd199d8d419c2fe916e07915c672a6d9eb4be038c22de787"; + version = "1.2.1.1"; + sha256 = "666a32fc1fafaac37c1176b115ca7fb2ae630fb97b665326e1bc607953283e30"; libraryHaskellDepends = [ base bytestring conduit conduit-extra connection cprng-aes data-default monad-control network streaming-commons tls @@ -161343,12 +163388,11 @@ self: { ({ mkDerivation, attoparsec, base, text }: mkDerivation { pname = "organize-imports"; - version = "0.3.0.0"; - sha256 = "5d15e24ffba4e607c453f261c28d619e283707e36ab546d1b45e5fd3cd34a511"; + version = "0.4.0.0"; + sha256 = "546a670fc5c9f1f3f7cba3abf1e51f7e9c2263c0e44d8637d6fa8ff2cd597895"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ attoparsec base text ]; - jailbreak = true; description = "Organize scala imports"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -162939,8 +164983,8 @@ self: { }: mkDerivation { pname = "pandoc-crossref"; - version = "0.2.1.1"; - sha256 = "4b90d228a8943e31ad7d2a1861b74bdb98af9422e3e675c209a012ca54e0deaa"; + version = "0.2.1.2"; + sha256 = "1410526eb891d20f0d16d6c970c3f7e8355b21c55fde56a1899a5d55828e593a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -167665,7 +169709,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-template_2_5_1" = callPackage + "persistent-template_2_5_1_1" = 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 @@ -167673,8 +169717,8 @@ self: { }: mkDerivation { pname = "persistent-template"; - version = "2.5.1"; - sha256 = "24776c5690023cebc85bda7c2cc8b0ebeb6cc87884ac83800f6891b1b32975fa"; + version = "2.5.1.1"; + sha256 = "37b70abf241324a296fbfa949ba0572515701dbb593648cdd6deffce6db3aae3"; libraryHaskellDepends = [ aeson aeson-compat base bytestring containers ghc-prim http-api-data monad-control monad-logger path-pieces persistent @@ -167936,21 +169980,25 @@ self: { }) {}; "pgdl" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, configurator - , directory, filepath, HTTP, http-conduit, network-uri, process - , tagsoup, text, vty, vty-ui + ({ mkDerivation, base, binary, brick, bytestring, Cabal, conduit + , conduit-extra, configurator, data-default, directory + , directory-listing-webpage-parser, filepath, http-conduit, process + , resourcet, tagsoup, text, time, transformers, unix, vector, vty }: mkDerivation { pname = "pgdl"; - version = "8.5"; - sha256 = "9c577d2d149ed3645edb4e3a9fcbe1fbe6072cf2124b6ee76c45724b390d63a2"; + version = "9.0"; + sha256 = "d4812a30b8d37572c9fc0da282dbc1258bd31769a2e3d0771da8f391eb72d3a5"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - array base bytestring Cabal configurator directory filepath HTTP - http-conduit network-uri process tagsoup text vty vty-ui + base binary brick bytestring Cabal conduit conduit-extra + configurator data-default directory + directory-listing-webpage-parser filepath http-conduit process + resourcet tagsoup text time transformers unix vector vty ]; - description = "simply download a video (or a file) from a webpage and xdg-open it"; + jailbreak = true; + description = "browse directory listing webpages and download files from them"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -168121,19 +170169,20 @@ self: { "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 + , fsnotify, hslogger, hspec, HStringTemplate, MissingH, mtl, parsec + , process, resourcet, safe, split, text, transformers }: mkDerivation { pname = "phoityne-vscode"; - version = "0.0.1.0"; - sha256 = "17c662ed380004e0268b3b2dc5c467914e74bd479688fd9ce2b66530f49fb07e"; + version = "0.0.2.0"; + sha256 = "fa1c8d6f4e6f034f439db307e44990b0cb8840cdd2084e8a4bd28008b6139cdb"; 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 + ConfigFile containers directory filepath fsnotify hslogger + HStringTemplate MissingH mtl parsec process resourcet safe split + text transformers ]; testHaskellDepends = [ aeson base hspec ]; homepage = "https://sites.google.com/site/phoityne/"; @@ -168668,7 +170717,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes" = callPackage + "pipes_4_1_8" = callPackage ({ mkDerivation, base, mmorph, mtl, QuickCheck, test-framework , test-framework-quickcheck2, transformers }: @@ -168683,6 +170732,24 @@ self: { ]; description = "Compositional pipelines"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes" = callPackage + ({ mkDerivation, base, mmorph, mtl, QuickCheck, test-framework + , test-framework-quickcheck2, transformers + }: + mkDerivation { + pname = "pipes"; + version = "4.1.9"; + sha256 = "c2d5d08761bbb62dca03f81b3d99bb2f50a386c52c30b2abc8c3ca8aabdea3ea"; + libraryHaskellDepends = [ base mmorph mtl transformers ]; + testHaskellDepends = [ + base mtl QuickCheck test-framework test-framework-quickcheck2 + transformers + ]; + description = "Compositional pipelines"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-aeson_0_4_1_2" = callPackage @@ -169614,7 +171681,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-parse" = callPackage + "pipes-parse_3_0_5" = callPackage ({ mkDerivation, base, pipes, transformers }: mkDerivation { pname = "pipes-parse"; @@ -169623,6 +171690,18 @@ self: { libraryHaskellDepends = [ base pipes transformers ]; description = "Parsing infrastructure for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-parse" = callPackage + ({ mkDerivation, base, pipes, transformers }: + mkDerivation { + pname = "pipes-parse"; + version = "3.0.6"; + sha256 = "9275f8b8ec14fd0332f2874f6b8994c5e8e6c59afab242071b3a9acfadcd092f"; + libraryHaskellDepends = [ base pipes transformers ]; + description = "Parsing infrastructure for the pipes ecosystem"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-postgresql-simple" = callPackage @@ -172364,6 +174443,20 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "postgresql-transactional_1_1_1" = callPackage + ({ mkDerivation, base, monad-control, mtl, postgresql-simple }: + mkDerivation { + pname = "postgresql-transactional"; + version = "1.1.1"; + sha256 = "f9302a1e134b31f2e9bd243c4fe36a25b3a9a9d6984288be1bc9c29882545ed3"; + libraryHaskellDepends = [ + base monad-control mtl postgresql-simple + ]; + description = "a transactional monad on top of postgresql-simple"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "postgresql-typed" = callPackage ({ mkDerivation, aeson, array, attoparsec, base, binary, bytestring , containers, cryptonite, haskell-src-meta, memory, network @@ -172372,8 +174465,8 @@ self: { }: mkDerivation { pname = "postgresql-typed"; - version = "0.4.3"; - sha256 = "6d7150da2dc0d290435c54892d2ff0e92a2517e142d08da31c74d05957d79407"; + version = "0.4.4"; + sha256 = "b440545a710f17995a9e52384e1d1ef0b64202fac129d0bb44eb95c746e4f1f6"; libraryHaskellDepends = [ aeson array attoparsec base binary bytestring containers cryptonite haskell-src-meta memory network old-locale postgresql-binary @@ -173959,6 +176052,39 @@ self: { semigroups tasty tasty-hunit text transformers transformers-compat void ]; + doCheck = false; + description = "Streaming interface to system processes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "process-streaming_0_9_1_2" = callPackage + ({ mkDerivation, attoparsec, base, bifunctors, bytestring, conceit + , containers, directory, doctest, exceptions, filepath, foldl, free + , kan-extensions, lens-family-core, pipes, pipes-attoparsec + , pipes-bytestring, pipes-concurrency, pipes-group, pipes-parse + , pipes-safe, pipes-text, pipes-transduce, process, profunctors + , semigroups, tasty, tasty-hunit, text, transformers + , transformers-compat, void + }: + mkDerivation { + pname = "process-streaming"; + version = "0.9.1.2"; + sha256 = "5f2e016ecbd5b811dcd17ecec7d680d3fd29ffb66e27f735fc662948fd42584e"; + libraryHaskellDepends = [ + base bifunctors bytestring conceit free kan-extensions pipes + pipes-bytestring pipes-concurrency pipes-parse pipes-safe + pipes-text pipes-transduce process profunctors text transformers + transformers-compat void + ]; + testHaskellDepends = [ + attoparsec base bifunctors bytestring containers directory doctest + exceptions filepath foldl free lens-family-core pipes + pipes-attoparsec pipes-bytestring pipes-concurrency pipes-group + pipes-parse pipes-safe pipes-text pipes-transduce process + semigroups tasty tasty-hunit text transformers transformers-compat + void + ]; description = "Streaming interface to system processes"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -174809,6 +176935,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "protobuf-simple" = callPackage + ({ mkDerivation, base, binary, bytestring, containers + , data-binary-ieee754, directory, filepath, hspec, mtl, parsec + , QuickCheck, quickcheck-instances, split, text + }: + mkDerivation { + pname = "protobuf-simple"; + version = "0.1.0.1"; + sha256 = "3186d3372b6621d7b92dd5043187bee4cb329e644632a7888fd8689d5441fcae"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring containers data-binary-ieee754 mtl text + ]; + executableHaskellDepends = [ + base containers directory filepath mtl parsec split text + ]; + testHaskellDepends = [ + base binary bytestring containers data-binary-ieee754 filepath + hspec parsec QuickCheck quickcheck-instances split text + ]; + homepage = "https://github.com/sru-systems/protobuf-simple"; + description = "Simple Protocol Buffers library (proto2)"; + license = stdenv.lib.licenses.mit; + }) {}; + "protocol-buffers_2_1_4" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , directory, filepath, mtl, parsec, syb, utf8-string @@ -175115,16 +177267,15 @@ self: { "protolude" = callPackage ({ mkDerivation, async, base, bytestring, containers, deepseq - , ghc-prim, mtl, safe, semiring-simple, stm, string-conv, text - , transformers + , ghc-prim, mtl, safe, stm, string-conv, text, transformers }: mkDerivation { pname = "protolude"; - version = "0.1.4"; - sha256 = "2b8b2e7ceb88f6db37633e204d1b59cc676535bff61c0ceb6074b75f02a6cd29"; + version = "0.1.5"; + sha256 = "6173f65da406738e776081c38cf2172e240822e42364c06147dd72ec34328edd"; libraryHaskellDepends = [ - async base bytestring containers deepseq ghc-prim mtl safe - semiring-simple stm string-conv text transformers + async base bytestring containers deepseq ghc-prim mtl safe stm + string-conv text transformers ]; homepage = "https://github.com/sdiehl/protolude"; description = "A sensible set of defaults for writing custom Preludes"; @@ -175268,16 +177419,17 @@ self: { "pseudo-boolean" = callPackage ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , containers, deepseq, dlist, hashable, HUnit, parsec, QuickCheck - , tasty, tasty-hunit, tasty-quickcheck, tasty-th, temporary + , containers, deepseq, dlist, hashable, HUnit, megaparsec, parsec + , QuickCheck, tasty, tasty-hunit, tasty-quickcheck, tasty-th + , temporary }: mkDerivation { pname = "pseudo-boolean"; - version = "0.1.3.0"; - sha256 = "88eb7ed7ced6ce2df62044fccb7be2269ff19a9fa5e3901b84bf896837ee1b0e"; + version = "0.1.4.0"; + sha256 = "0fc981b210c969fb150f5720829556c94bc6f24c5aff6807a08c3d39e2ca726d"; libraryHaskellDepends = [ attoparsec base bytestring bytestring-builder containers deepseq - dlist hashable parsec + dlist hashable megaparsec parsec ]; testHaskellDepends = [ base bytestring HUnit QuickCheck tasty tasty-hunit tasty-quickcheck @@ -175440,8 +177592,8 @@ self: { ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; - version = "0.20160320"; - sha256 = "e2d2e1a75eb71742d338f3a5c49673121c07a12ea268671cedf801d70020e344"; + version = "0.20160505"; + sha256 = "936c39ccb9d0d6ca661a924d95244699eaec0d634afa6f852438430967c5c4e7"; libraryHaskellDepends = [ base filepath template-haskell ]; testHaskellDepends = [ base hspec ]; homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; @@ -175845,6 +177997,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pureMD5_2_1_3" = callPackage + ({ mkDerivation, base, binary, bytestring, cereal, crypto-api + , crypto-api-tests, pretty-hex, QuickCheck, tagged, test-framework + , test-framework-quickcheck2 + }: + mkDerivation { + pname = "pureMD5"; + version = "2.1.3"; + sha256 = "bef3358a5e3a45b649860a5792f052e2f927c0492a7056cf64425116c8a7b17d"; + libraryHaskellDepends = [ + base binary bytestring cereal crypto-api tagged + ]; + testHaskellDepends = [ + base binary bytestring cereal crypto-api-tests pretty-hex + QuickCheck test-framework test-framework-quickcheck2 + ]; + description = "A Haskell-only implementation of the MD5 digest (hash) algorithm"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "purescript_0_7_2_0" = callPackage ({ mkDerivation, aeson, aeson-better-errors, ansi-wl-pprint, base , bower-json, boxes, bytestring, containers, directory, dlist @@ -176134,8 +178307,8 @@ self: { }: mkDerivation { pname = "purescript-bridge"; - version = "0.3.1.1"; - sha256 = "8e68c9481f2c4c1d9783ffdae66bb234f6d2e068a116787dd106adcd051027cd"; + version = "0.3.2.0"; + sha256 = "0377f67fc941523c093767ca33c215236550f6f67f51b95c6527e93f8f618954"; libraryHaskellDepends = [ base containers directory filepath generic-deriving text ]; @@ -182737,7 +184910,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "resourcet" = callPackage + "resourcet_1_1_7_3" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, monad-control, mtl, transformers, transformers-base , transformers-compat @@ -182754,9 +184927,10 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "resourcet_1_1_7_4" = callPackage + "resourcet" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, monad-control, mtl, transformers, transformers-base , transformers-compat @@ -182773,7 +184947,6 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "respond" = callPackage @@ -185343,17 +187516,18 @@ self: { }) {}; "rosa" = callPackage - ({ mkDerivation, aeson, argparser, base, bytestring, lens, process - , text, unordered-containers, vector, wreq + ({ mkDerivation, aeson, base, bytestring, lens + , optparse-applicative, process, text, unordered-containers, vector + , wreq }: mkDerivation { pname = "rosa"; - version = "0.2.2.0"; - sha256 = "fe03cbdeda54fb80bf4e2168ceaaffdcdeb6e608e2d7911f60ab2ca5995fef31"; + version = "0.3.0.0"; + sha256 = "3779cc49176bc37088ce1d08fe35c45c6292e8645ddd3c64e97e9cfe2f13634c"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - aeson argparser base bytestring lens process text + aeson base bytestring lens optparse-applicative process text unordered-containers vector wreq ]; description = "Query the namecoin blockchain"; @@ -191607,6 +193781,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "servant-quickcheck" = callPackage + ({ mkDerivation, aeson, base, base-compat, bytestring + , case-insensitive, data-default-class, hspec, http-client + , http-media, http-types, mtl, process, QuickCheck, quickcheck-io + , servant, servant-client, servant-server, split + , string-conversions, temporary, text, transformers, warp + }: + mkDerivation { + pname = "servant-quickcheck"; + version = "0.0.0.0"; + sha256 = "12570871ccef6e0bf290a2d3b3635b37a8cef00a7ce6adff3927bb5b14f52f67"; + libraryHaskellDepends = [ + aeson base base-compat bytestring case-insensitive + data-default-class hspec http-client http-media http-types mtl + process QuickCheck servant servant-client servant-server split + string-conversions temporary text warp + ]; + testHaskellDepends = [ + base base-compat hspec http-client QuickCheck quickcheck-io servant + servant-client servant-server transformers warp + ]; + jailbreak = true; + description = "QuickCheck entire APIs"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "servant-response" = callPackage ({ mkDerivation, aeson, base, http-types, text }: mkDerivation { @@ -196870,6 +199070,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "smtLib_1_0_8" = callPackage + ({ mkDerivation, base, pretty }: + mkDerivation { + pname = "smtLib"; + version = "1.0.8"; + sha256 = "37016f9322742c88c89d692e62d01c419b03242bbc6d84da4dab772408ad21a9"; + libraryHaskellDepends = [ base pretty ]; + description = "A library for working with the SMTLIB format"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "smtlib2" = callPackage ({ mkDerivation, array, atto-lisp, attoparsec, base, blaze-builder , bytestring, constraints, containers, data-fix, mtl, process @@ -198921,7 +201133,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "soap" = callPackage + "soap_0_2_2_7" = callPackage ({ mkDerivation, base, bytestring, conduit, configurator , data-default, exceptions, hspec, http-client, http-types, HUnit , iconv, mtl, resourcet, text, unordered-containers, xml-conduit @@ -198943,6 +201155,31 @@ self: { homepage = "https://bitbucket.org/dpwiz/haskell-soap"; description = "SOAP client tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "soap" = callPackage + ({ mkDerivation, base, bytestring, conduit, configurator + , data-default, exceptions, hspec, http-client, http-types, HUnit + , iconv, mtl, resourcet, text, unordered-containers, xml-conduit + , xml-conduit-writer, xml-types + }: + mkDerivation { + pname = "soap"; + version = "0.2.3.0"; + sha256 = "9d249967e3e6394749397a89c70c9aba5e5454ea4c2592ffd00aaa0ca2e98fd1"; + libraryHaskellDepends = [ + base bytestring conduit configurator data-default exceptions + http-client http-types iconv mtl resourcet text + unordered-containers xml-conduit xml-conduit-writer xml-types + ]; + testHaskellDepends = [ + base bytestring hspec HUnit text unordered-containers xml-conduit + xml-conduit-writer + ]; + homepage = "https://bitbucket.org/dpwiz/haskell-soap"; + description = "SOAP client tools"; + license = stdenv.lib.licenses.mit; }) {}; "soap-openssl" = callPackage @@ -199190,7 +201427,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "socks" = callPackage + "socks_0_5_4" = callPackage ({ mkDerivation, base, bytestring, cereal, network }: mkDerivation { pname = "socks"; @@ -199200,9 +201437,10 @@ self: { homepage = "http://github.com/vincenthz/hs-socks"; description = "Socks proxy (version 5) implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "socks_0_5_5" = callPackage + "socks" = callPackage ({ mkDerivation, base, bytestring, cereal, network }: mkDerivation { pname = "socks"; @@ -199212,7 +201450,6 @@ self: { homepage = "http://github.com/vincenthz/hs-socks"; description = "Socks proxy (version 5) implementation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sodium_0_11_0_2" = callPackage @@ -201831,8 +204068,8 @@ self: { }: mkDerivation { pname = "stack-run"; - version = "0.1.0.5"; - sha256 = "6625d1fbfde871ae88689a3ae18550a4582d68974e5f541e014c45629c1821c7"; + version = "0.1.0.6"; + sha256 = "b08c21255d54f11da1508cc4c060b2143e95bc64bc99bace3e65d4f47232c576"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -201844,7 +204081,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "stack-run-auto" = callPackage + "stack-run-auto_0_1_1_0" = callPackage ({ mkDerivation, async, base, extract-dependencies, file-modules , lens, lens-aeson, MissingH, process, stm-containers, text, time , wreq @@ -201870,6 +204107,35 @@ self: { homepage = "http://github.com/yamadapc/stack-run-auto#readme"; description = "Initial project template from stack"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stack-run-auto" = callPackage + ({ mkDerivation, async, base, extract-dependencies, file-modules + , lens, lens-aeson, MissingH, process, stm-containers, text, time + , wreq + }: + mkDerivation { + pname = "stack-run-auto"; + version = "0.1.1.1"; + sha256 = "f26ed23b99158be8f3d6fa47d499b3ebea03ab0f788cfa0133bff302b7e105dc"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base extract-dependencies file-modules lens lens-aeson + MissingH process stm-containers text time wreq + ]; + executableHaskellDepends = [ + async base extract-dependencies file-modules lens lens-aeson + MissingH process stm-containers text time wreq + ]; + testHaskellDepends = [ + async base extract-dependencies file-modules lens lens-aeson + MissingH process stm-containers text time wreq + ]; + homepage = "http://github.com/yamadapc/stack-run-auto#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.mit; }) {}; "stackage_0_3_1" = callPackage @@ -208004,6 +210270,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "system-test" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, process + , text + }: + mkDerivation { + pname = "system-test"; + version = "0.1.1"; + sha256 = "d7c3118a4592a96cb9869ee8d1f5eb67d593a6d9e88dba8fad9998a3132bbf56"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson ansi-terminal base bytestring process text + ]; + homepage = "https://github.com/ExcaliburZero/system-test-haskell"; + description = "Runs system tests of applications"; + license = stdenv.lib.licenses.mit; + }) {}; + "system-time-monotonic" = callPackage ({ mkDerivation, base, time }: mkDerivation { @@ -208772,7 +211056,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tagsoup" = callPackage + "tagsoup_0_13_9" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "tagsoup"; @@ -208784,6 +211068,21 @@ self: { homepage = "https://github.com/ndmitchell/tagsoup#readme"; description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tagsoup" = callPackage + ({ mkDerivation, base, bytestring, containers, text }: + mkDerivation { + pname = "tagsoup"; + version = "0.13.10"; + sha256 = "ac838eeed18118423220716855c2bfd71dcc4a7a455893d8c4ad627828f57d58"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring containers text ]; + homepage = "https://github.com/ndmitchell/tagsoup#readme"; + description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; + license = stdenv.lib.licenses.bsd3; }) {}; "tagsoup-ht" = callPackage @@ -213325,6 +215624,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "th-orphans_0_13_1" = callPackage + ({ mkDerivation, base, hspec, mtl, template-haskell, th-lift + , th-lift-instances, th-reify-many + }: + mkDerivation { + pname = "th-orphans"; + version = "0.13.1"; + sha256 = "bfa4b391bae1eeb8470e05b43b229e4f6eb8af5c5a4d39b723801963f325e141"; + libraryHaskellDepends = [ + base mtl template-haskell th-lift th-lift-instances th-reify-many + ]; + testHaskellDepends = [ base hspec template-haskell ]; + description = "Orphan instances for TH datatypes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "th-printf" = callPackage ({ mkDerivation, attoparsec, base, bytestring, hspec, HUnit , QuickCheck, template-haskell, text, transformers @@ -213416,6 +215732,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "th-reify-many_0_1_6" = callPackage + ({ mkDerivation, base, containers, mtl, safe, template-haskell + , th-expand-syns + }: + mkDerivation { + pname = "th-reify-many"; + version = "0.1.6"; + sha256 = "aea5d277af954ec41d8c129b9e0761a0e628b6e216d0243fb2600339bbfce6ac"; + 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; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "th-sccs" = callPackage ({ mkDerivation, base, containers, template-haskell }: mkDerivation { @@ -213464,6 +215798,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "th-utilities" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , hspec, primitive, syb, template-haskell, text, th-orphans, vector + }: + mkDerivation { + pname = "th-utilities"; + version = "0.1.0.1"; + sha256 = "b41375d16d87fb64e1b3a8e32dfd154199175cdd1ab16c86e3923c75f36d1160"; + libraryHaskellDepends = [ + base bytestring containers directory filepath primitive syb + template-haskell text th-orphans + ]; + testHaskellDepends = [ + base bytestring containers directory filepath hspec primitive syb + template-haskell text th-orphans vector + ]; + homepage = "https://github.com/fpco/th-utilities#readme"; + description = "Collection of useful functions for use with Template Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + "themoviedb" = callPackage ({ mkDerivation, aeson, base, binary, bytestring, either , http-client, http-client-tls, http-types, mtl, tasty, tasty-hunit @@ -214215,16 +216570,14 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "time_1_6" = callPackage + "time_1_6_0_1" = callPackage ({ mkDerivation, base, deepseq, QuickCheck, test-framework , test-framework-quickcheck2, unix }: mkDerivation { pname = "time"; - version = "1.6"; - sha256 = "2b4ff69434fd920353ab9948b8e36b71a76227661b06cad1bb0ef99a2e91a29f"; - revision = "1"; - editedCabalFile = "aa5ff661ec586e3c082485d21abe107332ba29355d1a2c8c2966ba518d1309f2"; + version = "1.6.0.1"; + sha256 = "ff69b46f38f4d226b171d078b200f8a5a1e8cfeadfa543eabade51355d7c7fcb"; libraryHaskellDepends = [ base deepseq ]; testHaskellDepends = [ base deepseq QuickCheck test-framework test-framework-quickcheck2 @@ -215340,8 +217693,8 @@ self: { pname = "tls"; version = "1.3.4"; sha256 = "49fff2bd6b420bb57f7cc78445f9a17547a5ff4a72e29135695c9cc2d91e19c1"; - revision = "1"; - editedCabalFile = "52c52c0c7a3816c50437b9bbec9cff59dbdea6330fa64475c1bd51da0dbf6fe9"; + revision = "2"; + editedCabalFile = "160911eae9f313bf2bc9a86db576c8ce03e42b8523ee08b210ff4253ead31562"; libraryHaskellDepends = [ asn1-encoding asn1-types async base bytestring cereal cryptonite data-default-class memory mtl network transformers x509 x509-store @@ -215351,13 +217704,14 @@ self: { base bytestring cereal cryptonite data-default-class hourglass mtl QuickCheck tasty tasty-quickcheck x509 x509-validation ]; + jailbreak = true; homepage = "http://github.com/vincenthz/hs-tls"; description = "TLS/SSL protocol native implementation (Server and Client)"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tls" = callPackage + "tls_1_3_5" = callPackage ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring , cereal, cryptonite, data-default-class, hourglass, memory, mtl , network, QuickCheck, tasty, tasty-quickcheck, transformers, x509 @@ -215379,6 +217733,60 @@ self: { homepage = "http://github.com/vincenthz/hs-tls"; description = "TLS/SSL protocol native implementation (Server and Client)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tls" = callPackage + ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring + , cereal, cryptonite, data-default-class, hourglass, memory, mtl + , network, QuickCheck, tasty, tasty-quickcheck, transformers, x509 + , x509-store, x509-validation + }: + mkDerivation { + pname = "tls"; + version = "1.3.6"; + sha256 = "72285fbc0f79f3138213cbe493a0bb10780becb1469b0e2c7aa840e6ba04dd62"; + revision = "1"; + editedCabalFile = "37d05226822e7949fe96455f2e8130a454700c65c87bec7745cad0bcc1a8379c"; + libraryHaskellDepends = [ + asn1-encoding asn1-types async base bytestring cereal cryptonite + data-default-class memory mtl network transformers x509 x509-store + x509-validation + ]; + testHaskellDepends = [ + base bytestring cereal cryptonite data-default-class hourglass mtl + QuickCheck tasty tasty-quickcheck x509 x509-validation + ]; + homepage = "http://github.com/vincenthz/hs-tls"; + description = "TLS/SSL protocol native implementation (Server and Client)"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "tls_1_3_7" = callPackage + ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring + , cereal, cryptonite, data-default-class, hourglass, memory, mtl + , network, QuickCheck, tasty, tasty-quickcheck, transformers, x509 + , x509-store, x509-validation + }: + mkDerivation { + pname = "tls"; + version = "1.3.7"; + sha256 = "a84640e141dc68a83eb9b207baa2d71e1e8b0b73d33b7c34466d73539f457225"; + revision = "1"; + editedCabalFile = "d458dae3fdb165c9426fa9e5363c98fadc2ca75b98aa99988fbfcdeaa1e51527"; + libraryHaskellDepends = [ + asn1-encoding asn1-types async base bytestring cereal cryptonite + data-default-class memory mtl network transformers x509 x509-store + x509-validation + ]; + testHaskellDepends = [ + base bytestring cereal cryptonite data-default-class hourglass mtl + QuickCheck tasty tasty-quickcheck x509 x509-validation + ]; + homepage = "http://github.com/vincenthz/hs-tls"; + description = "TLS/SSL protocol native implementation (Server and Client)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tls-debug_0_3_4" = callPackage @@ -215451,8 +217859,28 @@ self: { }: mkDerivation { pname = "tls-debug"; - version = "0.4.2"; - sha256 = "8d39924ebaa304342935a4fb31b6c7fb2437142f520e0c95af9ad397efc32b01"; + version = "0.4.3"; + sha256 = "40e34f1a0635c006ecd495bb44b8f24587052f2277236254308fe7d5f2b6312d"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base bytestring cryptonite data-default-class network pem time tls + x509 x509-store x509-system x509-validation + ]; + homepage = "http://github.com/vincenthz/hs-tls"; + description = "Set of programs for TLS testing and debugging"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "tls-debug_0_4_4" = callPackage + ({ mkDerivation, base, bytestring, cryptonite, data-default-class + , network, pem, time, tls, x509, x509-store, x509-system + , x509-validation + }: + mkDerivation { + pname = "tls-debug"; + version = "0.4.4"; + sha256 = "e5e7e416de38f21de5ba4ca17a904d843d6f3f66f6b6309b6ab9770f897c551d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -215462,6 +217890,7 @@ self: { homepage = "http://github.com/vincenthz/hs-tls"; description = "Set of programs for TLS testing and debugging"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tls-extra" = callPackage @@ -216032,6 +218461,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "tracetree" = callPackage + ({ mkDerivation, base, bifunctors, containers, json, mtl + , transformers + }: + mkDerivation { + pname = "tracetree"; + version = "0.1.0.0"; + sha256 = "f4dcb708ed295ba09068560f65600242b0b59357e119d1868830ca2dfc724b1c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bifunctors containers json mtl transformers + ]; + jailbreak = true; + description = "Visualize Haskell data structures as edge-labeled trees"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "tracker" = callPackage ({ mkDerivation, base, containers, glib }: mkDerivation { @@ -217076,6 +219523,26 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "ttask" = callPackage + ({ mkDerivation, base, directory, extra, optparse-declarative, safe + , time, transformers + }: + mkDerivation { + pname = "ttask"; + version = "0.0.0.2"; + sha256 = "e68f8ca2858895b46926febd356f0376cff004ed422950276d48b1cdcc8a1227"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base directory extra safe time ]; + executableHaskellDepends = [ + base optparse-declarative time transformers + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/tokiwoousaka/ttask#readme"; + description = "This is task management tool for yourself, that inspired by scrum"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ttrie" = callPackage ({ mkDerivation, atomic-primops, base, containers, hashable , primitive, QuickCheck, stm, test-framework @@ -217246,8 +219713,8 @@ self: { }: mkDerivation { pname = "tubes"; - version = "2.0.0.0"; - sha256 = "19277b8c3f86a431ee64776aa101826d12ab33df1083813d1cbf78939a7b4422"; + version = "2.0.0.1"; + sha256 = "4297964709dca035f9adb4cc05ae92bc8fc9501847c0e8c0703ad6d0e32df989"; libraryHaskellDepends = [ base comonad contravariant free mtl profunctors semigroups transformers @@ -217715,8 +220182,8 @@ self: { ({ mkDerivation, base, eventloop }: mkDerivation { pname = "twentefp-eventloop-trees"; - version = "0.1.2.3"; - sha256 = "f6cd6a92421f35eb5943f0c57435a30035d7ebde6dacafa081bb48ae5bde7d0b"; + version = "0.1.2.4"; + sha256 = "a4806fa7f4fd3639d527b92ab6b2cb436f60778b888053d1b63fdfe3b912520d"; libraryHaskellDepends = [ base eventloop ]; description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and RedBlackTree"; license = stdenv.lib.licenses.bsd3; @@ -217909,6 +220376,7 @@ self: { text transformers ]; jailbreak = true; + doCheck = false; homepage = "https://github.com/markandrus/twilio-haskell"; description = "Twilio REST API library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -219917,6 +222385,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "uncertain" = callPackage + ({ mkDerivation, ad, base, containers, free, mwc-random, primitive + , transformers + }: + mkDerivation { + pname = "uncertain"; + version = "0.2.0.0"; + sha256 = "3f3d46ee31b7ad2328761f6e7225bde5c94e61fa35b078838b8ae44de15598b3"; + revision = "1"; + editedCabalFile = "1057e2e280de08d8a148f7a29028d6d04083adb6bd8b375bf9fed1513e937c86"; + libraryHaskellDepends = [ + ad base containers free mwc-random primitive transformers + ]; + homepage = "https://github.com/mstksg/uncertain"; + description = "Manipulating numbers with inherent experimental/measurement uncertainty"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "unexceptionalio" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -221056,14 +223542,13 @@ self: { }: mkDerivation { pname = "uom-plugin"; - version = "0.2.0.0"; - sha256 = "c9eb1b27d940f7ce7ff2850f5f9c5bc2a5b23d472c8bcfaca0aec6a8b1c72daf"; + version = "0.2.0.1"; + sha256 = "3efad2e00217c5011394a9c2c166d9acc870189486dca0c8058cf397d8ea2e81"; libraryHaskellDepends = [ base containers deepseq ghc ghc-tcplugins-extra template-haskell units-parser ]; testHaskellDepends = [ base tasty tasty-hunit ]; - jailbreak = true; homepage = "https://github.com/adamgundry/uom-plugin"; description = "Units of measure as a GHC typechecker plugin"; license = stdenv.lib.licenses.bsd3; @@ -230143,6 +232628,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "webcloud" = callPackage + ({ mkDerivation, base, bytestring, cgi, optparse-applicative }: + mkDerivation { + pname = "webcloud"; + version = "0.1.0.1"; + sha256 = "ff3c55543a2edccf11531b2405c98e916db0e13db067670cee566daa20df429f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring cgi optparse-applicative + ]; + executableHaskellDepends = [ base optparse-applicative ]; + jailbreak = true; + description = "Turn an optparse-applicative program into a CGI program!"; + license = stdenv.lib.licenses.bsd2; + }) {}; + "webcrank" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, bytestring , case-insensitive, either, exceptions, http-date, http-media @@ -231161,6 +233663,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "werewolf_1_1_0_0" = callPackage + ({ mkDerivation, aeson, base, containers, directory, extra + , filepath, lens, MonadRandom, mtl, optparse-applicative + , random-shuffle, text, transformers + }: + mkDerivation { + pname = "werewolf"; + version = "1.1.0.0"; + sha256 = "866edf6fccb7ddc54e851f1d6da17ed661302fe9520de3a5cd493bd65b5e35b1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base containers extra lens mtl text transformers + ]; + executableHaskellDepends = [ + aeson base containers directory extra filepath lens MonadRandom mtl + optparse-applicative random-shuffle text transformers + ]; + 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 ({ mkDerivation, aeson, base, bytestring, extra, http-client , http-client-tls, http-types, mtl, optparse-applicative, process @@ -231181,6 +233707,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "werewolf-slack_1_0_1_1" = callPackage + ({ mkDerivation, aeson, base, bytestring, extra, http-client + , http-client-tls, http-types, mtl, optparse-applicative, process + , text, wai, warp, werewolf + }: + mkDerivation { + pname = "werewolf-slack"; + version = "1.0.1.1"; + sha256 = "1f54514a3482e7afecfb14d60dfb3f98e46f562973727e382eb76db61fdbc73a"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base bytestring extra http-client http-client-tls http-types + mtl optparse-applicative process text wai warp werewolf + ]; + homepage = "https://github.com/hjwylde/werewolf-slack"; + description = "A chat interface for playing werewolf in Slack"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "wheb-mongo" = callPackage ({ mkDerivation, base, bson, mongoDB, mtl, text, Wheb }: mkDerivation { @@ -240200,8 +242747,8 @@ self: { }: mkDerivation { pname = "yesod-crud"; - version = "0.1.3"; - sha256 = "56b1ed4ad8ac35887e6e327774890a31e662de04afb2b295b88df4a85b89c776"; + version = "0.1.4"; + sha256 = "35dd4afab3aa24a64c5a7a63b87b325b7ea0f58ee03530d11be97f96c47c7ff2"; libraryHaskellDepends = [ base classy-prelude containers MissingH monad-control persistent random safe stm uuid yesod-core yesod-form yesod-persistent @@ -240785,6 +243332,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "yesod-job-queue_0_3_0_0" = 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.3.0.0"; + sha256 = "34da4826fd12624cf0d93f72e16a7722cc7510dcf37381bed89cc8bfabe42912"; + 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 { @@ -242570,6 +245144,43 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; + "yi_0_12_5" = callPackage + ({ mkDerivation, array, base, binary, bytestring, Cabal, containers + , data-default, directory, dlist, dynamic-state, dyre, exceptions + , filepath, glib, gtk, hashable, hint, HUnit, lens, mtl, old-locale + , oo-prototypes, pango, parsec, pointedlist, process, QuickCheck + , random, safe, semigroups, split, stm, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, text, text-icu, time + , transformers-base, unix, unix-compat, unordered-containers, vty + , word-trie, xdg-basedir, yi-language, yi-rope + }: + mkDerivation { + pname = "yi"; + version = "0.12.5"; + sha256 = "789ccb9366556b405fabb4b5db684944172b68afa9d9cb4160a640ab9004bdc4"; + configureFlags = [ "-fpango" "-fvty" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary bytestring Cabal containers data-default + directory dlist dynamic-state dyre exceptions filepath glib gtk + hashable hint lens mtl old-locale oo-prototypes pango parsec + pointedlist process QuickCheck random safe semigroups split stm + template-haskell text text-icu time transformers-base unix + unix-compat unordered-containers vty word-trie xdg-basedir + yi-language yi-rope + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base directory filepath HUnit lens QuickCheck semigroups tasty + tasty-hunit tasty-quickcheck text yi-language yi-rope + ]; + homepage = "https://yi-editor.github.io"; + description = "The Haskell-Scriptable Editor"; + license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "yi-contrib" = callPackage ({ mkDerivation, base, containers, directory, filepath, lens, mtl , old-locale, oo-prototypes, split, text, time, transformers-base @@ -243375,6 +245986,29 @@ self: { license = stdenv.lib.licenses.mit; }) {inherit (pkgs) zeromq;}; + "zeromq4-haskell_0_6_5" = callPackage + ({ mkDerivation, async, base, bytestring, containers, exceptions + , monad-control, QuickCheck, semigroups, tasty, tasty-hunit + , tasty-quickcheck, transformers, transformers-base, zeromq + }: + mkDerivation { + pname = "zeromq4-haskell"; + version = "0.6.5"; + sha256 = "6e99b6cf882269544ce3d613a51b00a259f0aee9fdb13d25d8cb19f96799e7c2"; + libraryHaskellDepends = [ + async base bytestring containers exceptions monad-control + semigroups transformers transformers-base + ]; + libraryPkgconfigDepends = [ zeromq ]; + testHaskellDepends = [ + async base bytestring QuickCheck tasty tasty-hunit tasty-quickcheck + ]; + homepage = "https://gitlab.com/twittner/zeromq-haskell/"; + description = "Bindings to ZeroMQ 4.x"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) zeromq;}; + "zeroth" = callPackage ({ mkDerivation, base, Cabal, derive, directory, filepath , haskell-src-exts, hskeleton, monoid-record, process, syb -- cgit 1.4.1 From 2f9a2e6808f745378927fc941ee76a06d52b9fcc Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 6 May 2016 12:11:34 +0200 Subject: configuration-ghc-7.10.x.nix: switch jailbreak-cabal to Cabal 1.24.x --- .../haskell-modules/configuration-ghc-7.10.x.nix | 26 +++++----------------- 1 file changed, 6 insertions(+), 20 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix index 60c4146c79bff..af6718bfd8dce 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -38,28 +38,14 @@ self: super: { prePatch = "sed -i 's/-Werror//g' linear.cabal"; }); - # Cabal_1_22_1_1 requires filepath >=1 && <1.4 + # Our core version of Cabal is good enough for this build. cabal-install = dontCheck (super.cabal-install.override { Cabal = null; }); - # Don't compile jailbreak-cabal with Cabal 1.22.x because of https://github.com/peti/jailbreak-cabal/issues/9. - Cabal_1_23_0_0 = overrideCabal super.Cabal_1_22_4_0 (drv: { - version = "1.23.0.0"; - src = pkgs.fetchFromGitHub { - owner = "haskell"; - repo = "cabal"; - rev = "fe7b8784ac0a5848974066bdab76ce376ba67277"; - sha256 = "1d70ryz1l49pkr70g8r9ysqyg1rnx84wwzx8hsg6vwnmg0l5am7s"; - }; - jailbreak = false; - doHaddock = false; - postUnpack = "sourceRoot+=/Cabal"; - }); - jailbreak-cabal = super.jailbreak-cabal.override { - Cabal = self.Cabal_1_23_0_0; - mkDerivation = drv: self.mkDerivation (drv // { - preConfigure = "sed -i -e 's/Cabal == 1.20\\.\\*/Cabal >= 1.23/' jailbreak-cabal.cabal"; - }); - }; + # Jailbreaking is required for the test suite only (which we don't run). + Cabal_1_24_0_0 = dontJailbreak (dontCheck super.Cabal_1_24_0_0); + + # Build jailbreak-cabal with the latest version of Cabal. + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_24_0_0; }; idris = overrideCabal super.idris (drv: { # "idris" binary cannot find Idris library otherwise while building. -- cgit 1.4.1 From c23fd4fbc958f2fc5e38526254cc5fa997bd59d7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 6 May 2016 13:53:38 +0200 Subject: configuration-ghc-7.10.x.nix: remove obsolete override for linear --- pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 5 ----- 1 file changed, 5 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix index af6718bfd8dce..04c670a22e085 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -33,11 +33,6 @@ self: super: { unix = null; xhtml = null; - # ekmett/linear#74 - linear = overrideCabal super.linear (drv: { - prePatch = "sed -i 's/-Werror//g' linear.cabal"; - }); - # Our core version of Cabal is good enough for this build. cabal-install = dontCheck (super.cabal-install.override { Cabal = null; }); -- cgit 1.4.1 From d19e8ea429fd8bc40278426926998d3a7c19ee0b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 6 May 2016 14:02:28 +0200 Subject: configuration-ghc-7.10.x.nix: enable builds for cabal-install 1.24.x --- pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix index 04c670a22e085..7e82d94e34851 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -36,6 +36,9 @@ self: super: { # Our core version of Cabal is good enough for this build. cabal-install = dontCheck (super.cabal-install.override { Cabal = null; }); + # Enable latest version of cabal-install. + cabal-install_1_24_0_0 = (doDistribute (dontJailbreak (dontCheck (super.cabal-install_1_24_0_0)))).overrideScope (self: super: { Cabal = self.Cabal_1_24_0_0; }); + # Jailbreaking is required for the test suite only (which we don't run). Cabal_1_24_0_0 = dontJailbreak (dontCheck super.Cabal_1_24_0_0); @@ -187,4 +190,11 @@ self: super: { # Trigger rebuild to mitigate broken packaes on Hydra. amazonka-core = triggerRebuild super.amazonka-core 1; + # https://github.com/thoughtpolice/hs-ed25519/issues/13 + ed25519 = dontCheck super.ed25519; + + # https://github.com/well-typed/hackage-security/issues/157 + # https://github.com/well-typed/hackage-security/issues/158 + hackage-security = dontHaddock (dontCheck super.hackage-security); + } -- cgit 1.4.1 From d8c24dae8f6116a395db6fb6a5f75c9d26fc87b3 Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Fri, 6 May 2016 12:25:36 -0400 Subject: haskellPackages.pipes-transduce: Remove foldl override --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index e4f4684fb9d32..34b63cef0ab44 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -941,9 +941,6 @@ self: super: { # Looks like Avahi provides the missing library dnssd = super.dnssd.override { dns_sd = pkgs.avahi.override { withLibdnssdCompat = true; }; }; - # https://github.com/danidiaz/pipes-transduce/issues/2 - pipes-transduce = super.pipes-transduce.override { foldl = self.foldl_1_1_6; }; - # Haste stuff haste-Cabal = self.callPackage ../tools/haskell/haste/haste-Cabal.nix {}; haste-cabal-install = self.callPackage ../tools/haskell/haste/haste-cabal-install.nix { Cabal = self.haste-Cabal; HTTP = self.HTTP_4000_2_23; }; -- cgit 1.4.1 From deba002b3c81cf41523fa36db17ac996eab8c920 Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Fri, 26 Feb 2016 06:12:21 -0500 Subject: haskellPackages.hindent: remove testing override --- pkgs/development/haskell-modules/configuration-common.nix | 2 -- 1 file changed, 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 34b63cef0ab44..e3a3b92bcbfc9 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -786,8 +786,6 @@ self: super: { # Byte-compile elisp code for Emacs. hindent = overrideCabal super.hindent (drv: { - # https://github.com/chrisdone/hindent/issues/166 - doCheck = false; executableToolDepends = drv.executableToolDepends or [] ++ [pkgs.emacs]; postInstall = '' local lispdir=( "$out/share/"*"-${self.ghc.name}/${drv.pname}-${drv.version}/elisp" ) -- cgit 1.4.1 From d2387e3c4a71ee83f29733710bd9af7ca0a7ce49 Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Thu, 3 Mar 2016 07:11:36 -0500 Subject: haskellPackages.hjsonschema: remove hjsonpointer override --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- pkgs/development/haskell-modules/configuration-hackage2nix.yaml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index e3a3b92bcbfc9..5f1335ca72fb7 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -306,7 +306,7 @@ self: super: { github-types = dontCheck super.github-types; # http://hydra.cryp.to/build/1114046/nixlog/1/raw hadoop-rpc = dontCheck super.hadoop-rpc; # http://hydra.cryp.to/build/527461/nixlog/2/raw hasql = dontCheck super.hasql; # http://hydra.cryp.to/build/502489/nixlog/4/raw - hjsonschema = overrideCabal (super.hjsonschema.override { hjsonpointer = self.hjsonpointer_0_2_0_4; }) (drv: { testTarget = "local"; }); + hjsonschema = overrideCabal super.hjsonschema (drv: { testTarget = "local"; }); hoogle = overrideCabal super.hoogle (drv: { testTarget = "--test-option=--no-net"; }); marmalade-upload = dontCheck super.marmalade-upload; # http://hydra.cryp.to/build/501904/nixlog/1/raw network-transport-tcp = dontCheck super.network-transport-tcp; diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index be659d26ee72a..36e498d4be1bc 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -45,7 +45,6 @@ extra-packages: - gloss < 1.9.3 # new versions don't compile with GHC 7.8.x - haddock-api < 2.16 # required on GHC 7.8.x - haskell-src-exts < 1.16 # required for structured-haskell-mode-1.0.8 - - hjsonpointer == 0.2.0.4 # required for hjsonschema-0.8.0.1 - mtl < 2.2 # newer versions require transformers > 0.4.x, which we cannot provide in GHC 7.8.x - mtl-prelude < 2 # required for to build postgrest on mtl 2.1.x platforms - parallel == 3.2.0.3 # newer versions don't work with GHC 6.12.3 -- cgit 1.4.1 From aab15222878e36b4dbd8fd68532b0b1ba44c9d09 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 10 May 2016 12:48:14 +0200 Subject: libinput: 1.2.3 -> 1.3.0 --- pkgs/development/libraries/libinput/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index 2c29482227a88..5c42626caa3f3 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -15,11 +15,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { - name = "libinput-1.2.3"; + name = "libinput-1.3.0"; src = fetchurl { url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz"; - sha256 = "1wp937sn2dzqhrbl2bhapqb0pvybc80z8ynw7yfkm5ycl39skch9"; + sha256 = "1sn1s1bz06fa49izqkqf519sjclsvhf42i6slzx1w5hx4vxpb2lr"; }; configureFlags = [ -- cgit 1.4.1 From 14e73a6e6f11efe3ce8bc272a67758a831062c47 Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Fri, 1 Apr 2016 17:23:27 +0200 Subject: pypy: 4.0.1 -> 5.1.1 --- pkgs/development/interpreters/pypy/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/pypy/default.nix b/pkgs/development/interpreters/pypy/default.nix index 095e0b7db08e3..cf54e02257dee 100644 --- a/pkgs/development/interpreters/pypy/default.nix +++ b/pkgs/development/interpreters/pypy/default.nix @@ -6,8 +6,8 @@ assert zlibSupport -> zlib != null; let - majorVersion = "4.0"; - version = "${majorVersion}.1"; + majorVersion = "5.1.1"; + version = "${majorVersion}"; libPrefix = "pypy${majorVersion}"; pypy = stdenv.mkDerivation rec { @@ -18,7 +18,7 @@ let src = fetchurl { url = "https://bitbucket.org/pypy/pypy/get/release-${version}.tar.bz2"; - sha256 = "1g7iipllgdfjgdkypsa1g2pzxgjw9agp40rh82hk31rsbak2hfbl"; + sha256 = "1dmckvffanmh0b50pq34shnw05r55gjxn43kgvnkz5kkvvsbxdg1"; }; buildInputs = [ bzip2 openssl pkgconfig pythonFull libffi ncurses expat sqlite tk tcl xlibsWrapper libX11 makeWrapper gdbm db ] @@ -79,7 +79,8 @@ let # disable test_zipfile64 because it randomly timeouts # disable test_cpickle because timeouts # disable test_ssl because no shared cipher' not found in '[Errno 1] error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure - ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k 'not (test_ssl or test_cpickle or test_sqlite or test_urllib2net or test_urllibnet or test_urllib2_localnet or test_socket or test_os or test_shutil or test_mhlib or test_multiprocessing or test_zipfile64)' lib-python + # disable test_epoll because of invalid arg, should be fixed in as of version 5.1.2 + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k 'not (test_ssl or test_cpickle or test_sqlite or test_urllib2net or test_urllibnet or test_urllib2_localnet or test_socket or test_os or test_shutil or test_mhlib or test_multiprocessing or test_zipfile64 or test_epoll)' lib-python ''; installPhase = '' -- cgit 1.4.1 From e87cbf9fa3ada3ed1b5a356a26f240ec648ab875 Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Sat, 7 May 2016 16:00:05 +0200 Subject: pypy: revise test expression --- pkgs/development/interpreters/pypy/default.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/pypy/default.nix b/pkgs/development/interpreters/pypy/default.nix index cf54e02257dee..927ba26830942 100644 --- a/pkgs/development/interpreters/pypy/default.nix +++ b/pkgs/development/interpreters/pypy/default.nix @@ -71,16 +71,10 @@ let export HOME="$TMPDIR"; # disable shutils because it assumes gid 0 exists # disable socket because it has two actual network tests that fail - # disable test_mhlib because it fails for unknown reason - # disable sqlite3 due to https://bugs.pypy.org/issue1740 - # disable test_multiprocessing due to transient errors - # disable test_os because test_urandom_failure fails # disable test_urllib2net, test_urllib2_localnet, and test_urllibnet because they require networking (example.com) - # disable test_zipfile64 because it randomly timeouts - # disable test_cpickle because timeouts # disable test_ssl because no shared cipher' not found in '[Errno 1] error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure # disable test_epoll because of invalid arg, should be fixed in as of version 5.1.2 - ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k 'not (test_ssl or test_cpickle or test_sqlite or test_urllib2net or test_urllibnet or test_urllib2_localnet or test_socket or test_os or test_shutil or test_mhlib or test_multiprocessing or test_zipfile64 or test_epoll)' lib-python + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k 'not ( test_ssl or test_urllib2net or test_urllibnet or test_urllib2_localnet or test_socket or test_shutil or test_epoll )' lib-python ''; installPhase = '' -- cgit 1.4.1 From 2a4af7ef72f2202ec18e5db84acf9278f0cff514 Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Fri, 1 Apr 2016 17:23:04 +0200 Subject: pixie: 1333 -> 1352 --- pkgs/development/interpreters/pixie/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/pixie/default.nix b/pkgs/development/interpreters/pixie/default.nix index c4086078d7d6b..e0a4bd965e6f8 100644 --- a/pkgs/development/interpreters/pixie/default.nix +++ b/pkgs/development/interpreters/pixie/default.nix @@ -3,7 +3,7 @@ variant ? "jit", buildWithPypy ? false }: let - commit-count = "1333"; + commit-count = "1352"; common-flags = "--thread --gcrootfinder=shadowstack --continuation"; variants = { jit = { flags = "--opt=jit"; target = "target.py"; }; @@ -13,8 +13,8 @@ let }; pixie-src = fetchgit { url = "https://github.com/pixie-lang/pixie.git"; - rev = "36ce07e1cd85ca82eedadf366bef3bb57a627a2a"; - sha256 = "1b3v99c0is33w029r15qvd0mkrc5n1mrvjjmfpcd9yvhvqb2vcjs"; + rev = "dd754fe9f329e9e176eeaedae1095c85cde65028"; + sha256 = "1jf3nkd1jzvxrw9ql2r74drsirrxfihc125x0wmk45jyl5q24vdd"; }; pypy-tag = "81254"; pypy-src = fetchurl { -- cgit 1.4.1 From 79c06a0ad94ca0c57a8428e66ba2c1879f4e50ee Mon Sep 17 00:00:00 2001 From: Tomasz Czyż Date: Wed, 23 Mar 2016 00:53:03 +0000 Subject: usb_modeswitch: 2.2.1 -> 2.3.0 --- pkgs/development/tools/misc/usb-modeswitch/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/misc/usb-modeswitch/default.nix b/pkgs/development/tools/misc/usb-modeswitch/default.nix index cc28b011829cb..9aad2edfa4ec4 100644 --- a/pkgs/development/tools/misc/usb-modeswitch/default.nix +++ b/pkgs/development/tools/misc/usb-modeswitch/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pkgconfig, libusb1 }: let - version = "2.2.1"; + version = "2.3.0"; in stdenv.mkDerivation rec { @@ -23,6 +23,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig libusb1 ]; meta = { + description = "a mode switching tool for controlling 'multi-mode' USB devices"; license = stdenv.lib.licenses.gpl2; maintainers = [ stdenv.lib.maintainers.marcweber ]; platforms = stdenv.lib.platforms.linux; -- cgit 1.4.1 From 92cb6add9f9e1a95285d9db9aee6e8172e0d6b4b Mon Sep 17 00:00:00 2001 From: Tomasz Czyż Date: Wed, 23 Mar 2016 00:53:33 +0000 Subject: usb-modeswitch-data: init at 20160112 --- .../development/tools/misc/usb-modeswitch/data.nix | 29 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 30 insertions(+) create mode 100644 pkgs/development/tools/misc/usb-modeswitch/data.nix (limited to 'pkgs/development') diff --git a/pkgs/development/tools/misc/usb-modeswitch/data.nix b/pkgs/development/tools/misc/usb-modeswitch/data.nix new file mode 100644 index 0000000000000..91b343b20b4ce --- /dev/null +++ b/pkgs/development/tools/misc/usb-modeswitch/data.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl, pkgconfig, libusb1, usb-modeswitch }: + +let + version = "20160112"; +in + +stdenv.mkDerivation rec { + name = "usb-modeswitch-data-${version}"; + + src = fetchurl { + url = "http://www.draisberghof.de/usb_modeswitch/${name}.tar.bz2"; + sha256 = "19yzqv0592b9mwgdi7apzw881q70ajyx5d56zr1z5ldi915a8yfn"; + }; + + # make clean: we always build from source. It should be necessary on x86_64 only + prePatch = '' + sed -i 's@usb_modeswitch@${usb-modeswitch}/bin/usb_modeswitch@g' 40-usb_modeswitch.rules + sed -i "1 i\DESTDIR=$out" Makefile + ''; + + buildInputs = [ pkgconfig libusb1 usb-modeswitch ]; + + meta = { + description = "device database and the rules file for 'multi-mode' USB devices"; + license = stdenv.lib.licenses.gpl2; + maintainers = [ stdenv.lib.maintainers.marcweber ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 154d77e0ed730..b5e6bc31e6a0c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1069,6 +1069,7 @@ in "unionfs-fuse" = callPackage ../tools/filesystems/unionfs-fuse { }; usb-modeswitch = callPackage ../development/tools/misc/usb-modeswitch { }; + usb-modeswitch-data = callPackage ../development/tools/misc/usb-modeswitch/data.nix { }; anthy = callPackage ../tools/inputmethods/anthy { }; -- cgit 1.4.1 From dcf3fe2b78a59763763fb5152feda395f1031a36 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 10 May 2016 03:46:34 +0200 Subject: dev86: 0.16.19 -> 0.16.21 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop the ‘awful hackery’ that no longer seems needed (I can reproduce the failure with .19, not with .21). --- pkgs/development/compilers/dev86/default.nix | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/dev86/default.nix b/pkgs/development/compilers/dev86/default.nix index f37dae8083017..c9d58e433f697 100644 --- a/pkgs/development/compilers/dev86/default.nix +++ b/pkgs/development/compilers/dev86/default.nix @@ -1,25 +1,18 @@ { stdenv, fetchurl }: -stdenv.mkDerivation { - name = "dev86-0.16.19"; +stdenv.mkDerivation rec { + name = "dev86-${version}"; + version = "0.16.21"; src = fetchurl { - url = http://www.debath.co.uk/dev86/Dev86src-0.16.19.tar.gz; - sha256 = "33398b87ca85e2b69e4062cf59f2f7354af46da5edcba036c6f97bae17b8d00e"; + url = "http://v3.sk/~lkundrak/dev86/Dev86src-${version}.tar.gz"; + sha256 = "154dyr2ph4n0kwi8yx0n78j128kw29rk9r9f7s2gddzrdl712jr3"; }; makeFlags = "PREFIX=$(out)"; - # Awful hackery to get dev86 to compile with recent gcc/binutils. - # See http://bugs.gentoo.org/214964 for some inconclusive - # discussion. - preBuild = - '' - substituteInPlace makefile.in --replace "-O2" "" --replace "-O" "" - ''; - meta = { description = "Linux 8086 development environment"; - homepage = http://www.debath.co.uk/; + homepage = http://v3.sk/~lkundrak/dev86/; }; } -- cgit 1.4.1 From 47d2dd4f310e13b9d2f1f9d2acd959bf48883940 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 10 May 2016 23:45:08 +0200 Subject: libpsl: list 2016-04-16 -> 2016-05-10 --- pkgs/development/libraries/libpsl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index 07258e40355dd..8540eccf2da46 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -3,10 +3,10 @@ let - listVersion = "2016-04-16"; + listVersion = "2016-05-10"; listSources = fetchFromGitHub { - sha256 = "0lwf8cvqfr3nsx92i2fphij0whb2lcswk6z6grhisqmwrs873hyv"; - rev = "dfac82546fde5180e2d5a1b61b6ae2f668009870"; + sha256 = "1bpdli2q5ap677yg0w0v7q5qmaxnm2y17wakzmc0k6k7m7xfyzw0"; + rev = "2226f9cc92213d0d68a74ecb535b15b3af00388a"; repo = "list"; owner = "publicsuffix"; }; -- cgit 1.4.1 From 2bae6b673782edb18bc322213d7fc0a43c14c9b1 Mon Sep 17 00:00:00 2001 From: Ryan Trinkle Date: Tue, 10 May 2016 20:01:09 -0400 Subject: ghc8 | config: ghcjs-prim: init at 0.1.0.0 --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'pkgs/development') 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 c7f67fde2210f..b7195ac60c7c6 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -149,4 +149,16 @@ self: super: { trifecta = doJailbreak super.trifecta; turtle = doJailbreak super.turtle; + + ghcjs-prim = self.callPackage ({ mkDerivation, fetchgit, primitive }: mkDerivation { + pname = "ghcjs-prim"; + version = "0.1.0.0"; + src = fetchgit { + url = git://github.com/ghcjs/ghcjs-prim.git; + rev = "dfeaab2aafdfefe46bf12960d069f28d2e5f1454"; # ghc-7.10 branch + sha256 = "19kyb26nv1hdpp0kc2gaxkq5drw5ib4za0641py5i4bbf1g58yvy"; + }; + buildDepends = [ primitive ]; + license = pkgs.stdenv.lib.licenses.bsd3; + }) {}; } -- cgit 1.4.1 From 05bbe4fa553c605a5ca1624c946a177b9d9a7f21 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 10 May 2016 20:09:15 -0500 Subject: phonon: remove qtquick1 input --- pkgs/development/libraries/phonon/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/phonon/default.nix b/pkgs/development/libraries/phonon/default.nix index 2356a0403804f..3fbbccc08e30a 100644 --- a/pkgs/development/libraries/phonon/default.nix +++ b/pkgs/development/libraries/phonon/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchurl, cmake, mesa, pkgconfig, libpulseaudio -, qt4 ? null, extra-cmake-modules ? null, qtbase ? null, qtquick1 ? null, qttools ? null +, qt4 ? null, extra-cmake-modules ? null, qtbase ? null, qttools ? null , debug ? false }: with lib; @@ -10,7 +10,6 @@ let in assert withQt5 -> qtbase != null; -assert withQt5 -> qtquick1 != null; assert withQt5 -> qttools != null; stdenv.mkDerivation rec { @@ -31,7 +30,7 @@ stdenv.mkDerivation rec { buildInputs = [ mesa libpulseaudio ] - ++ (if withQt5 then [ qtbase qtquick1 qttools ] else [ qt4 ]); + ++ (if withQt5 then [ qtbase qttools ] else [ qt4 ]); nativeBuildInputs = [ cmake pkgconfig ] ++ optional withQt5 extra-cmake-modules; -- cgit 1.4.1 From f4a2ea2203cd7aac3b3672f1ebec8d64d193f3ac Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Wed, 11 May 2016 00:45:41 -0400 Subject: ccacheStdenv: inherit lib output from wrapped gcc --- pkgs/development/tools/misc/ccache/default.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix index f344156f6bc50..bc1f348040cdb 100644 --- a/pkgs/development/tools/misc/ccache/default.nix +++ b/pkgs/development/tools/misc/ccache/default.nix @@ -20,9 +20,14 @@ let ccache = stdenv.mkDerivation rec { passthru = { # A derivation that provides gcc and g++ commands, but that # will end up calling ccache for the given cacheDir - links = extraConfig: (runCommand "ccache-links" - { passthru.gcc = gcc; passthru.isGNU = true; } - '' + links = extraConfig: stdenv.mkDerivation rec { + name = "ccache-links"; + passthru = { + inherit gcc; + isGNU = true; + }; + inherit (gcc.cc) lib; + buildCommand = '' mkdir -p $out/bin if [ -x "${gcc.cc}/bin/gcc" ]; then cat > $out/bin/gcc << EOF @@ -48,7 +53,8 @@ let ccache = stdenv.mkDerivation rec { for file in $(ls ${gcc.cc} | grep -vw bin); do ln -s ${gcc.cc}/$file $out/$file done - ''); + ''; + }; }; meta = with stdenv.lib; { -- cgit 1.4.1 From f7e3f177d18148358732ca0cb8926e075bdd6c61 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sun, 8 May 2016 14:49:48 +0800 Subject: udns: init at 0.4 --- pkgs/development/libraries/udns/default.nix | 46 +++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 48 insertions(+) create mode 100644 pkgs/development/libraries/udns/default.nix (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/udns/default.nix b/pkgs/development/libraries/udns/default.nix new file mode 100644 index 0000000000000..9d781b301a0aa --- /dev/null +++ b/pkgs/development/libraries/udns/default.nix @@ -0,0 +1,46 @@ +{ stdenv, fetchurl }: + +# this expression is mostly based on debian's packaging +# https://tracker.debian.org/media/packages/u/udns/rules-0.4-1 + +stdenv.mkDerivation rec { + name = "udns-${version}"; + version = "0.4"; + + configurePhase = "./configure --enable-ipv6"; + + buildPhase = "make staticlib sharedlib rblcheck_s dnsget_s"; + + src = fetchurl { + url = "http://www.corpit.ru/mjt/udns/${name}.tar.gz"; + sha256 = "0447fv1hmb44nnchdn6p5pd9b44x8p5jn0ahw6crwbqsg7f0hl8i"; + }; + + installPhase = '' + mkdir -p $out/bin + mkdir -p $out/include + mkdir -p $out/lib + mkdir -p $out/share/man/man1 + mkdir -p $out/share/man/man3 + cp dnsget_s $out/bin/dnsget + cp rblcheck_s $out/bin/rblcheck + cp udns.h $out/include/ + cp libudns.a $out/lib/ + cp libudns.so.0 $out/lib/ + ln -rs $out/lib/libudns.so.0 $out/lib/libudns.so + cp dnsget.1 rblcheck.1 $out/share/man/man1 + cp udns.3 $out/share/man/man3 + ''; + + # keep man3 + outputDocdev = "out"; + + meta = with stdenv.lib; { + homepage = http://www.corpit.ru/mjt/udns.html; + description = "Async-capable DNS stub resolver library"; + license = licenses.lgpl21Plus; + maintainers = [ maintainers.womfoo ]; + platforms = platforms.linux; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 586248d04ee73..01ba48906c532 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8998,6 +8998,8 @@ in tremor = callPackage ../development/libraries/tremor { }; + udns = callPackage ../development/libraries/udns { }; + uid_wrapper = callPackage ../development/libraries/uid_wrapper { }; unibilium = callPackage ../development/libraries/unibilium { }; -- cgit 1.4.1 From 6b9c67333fe62c38f1231dd5339b776c7c3d7172 Mon Sep 17 00:00:00 2001 From: Stewart Mackenzie Date: Wed, 11 May 2016 19:30:09 +0800 Subject: elm: 0.16.0 -> 0.17.0 (#15383) --- .../compilers/elm/packages/elm-compiler.nix | 6 +++--- .../compilers/elm/packages/elm-make.nix | 10 ++++----- .../compilers/elm/packages/elm-package.nix | 6 +++--- .../compilers/elm/packages/elm-reactor-elm.nix | 24 +++++++++++++--------- .../compilers/elm/packages/elm-reactor.nix | 10 ++++----- .../compilers/elm/packages/elm-repl.nix | 6 +++--- .../development/compilers/elm/packages/release.nix | 2 +- 7 files changed, 34 insertions(+), 30 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/elm/packages/elm-compiler.nix b/pkgs/development/compilers/elm/packages/elm-compiler.nix index 38913e501b05e..ac0e2c2363225 100644 --- a/pkgs/development/compilers/elm/packages/elm-compiler.nix +++ b/pkgs/development/compilers/elm/packages/elm-compiler.nix @@ -7,11 +7,11 @@ }: mkDerivation { pname = "elm-compiler"; - version = "0.16"; + version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-compiler"; - sha256 = "b3bcdca469716f3a4195469549a9e9bc53a6030aff132ec620b9c93958a5ffe6"; - rev = "df86c1c9b3cf06de3ccb78f26b4d2fac0129ce5a"; + sha256 = "185mh53yyxh9m0z8808fxpds3vqyrbhahf587nnw6qzyzv63m7px"; + rev = "c9c7e72c424a13255f8ee84c719f7ef48b689c1a"; }; isLibrary = true; isExecutable = true; diff --git a/pkgs/development/compilers/elm/packages/elm-make.nix b/pkgs/development/compilers/elm/packages/elm-make.nix index 923caf8e4c864..862adb460e3e2 100644 --- a/pkgs/development/compilers/elm/packages/elm-make.nix +++ b/pkgs/development/compilers/elm/packages/elm-make.nix @@ -1,22 +1,22 @@ { mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base, binary , blaze-html, blaze-markup, bytestring, containers, directory , elm-compiler, elm-package, fetchgit, filepath, mtl -, optparse-applicative, stdenv, text, time +, optparse-applicative, stdenv, text, time, raw-strings-qq }: mkDerivation { pname = "elm-make"; - version = "0.16"; + version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-make"; - sha256 = "fc0a6ed08b236dfab43e9af73f8e83a3b88a155695a9671a2b291dc596a75116"; - rev = "54e0b33fea0cd72400ac6a3dec7643bf1b900741"; + sha256 = "0y8a67y8jhnhbcqzgjymyf1ffs75vyfpyb8as2bi0mkhb7fvzi6q"; + rev = "5f7b74567c43eff341048c7caceb247b51cdb8bb"; }; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson ansi-terminal ansi-wl-pprint base binary blaze-html blaze-markup bytestring containers directory elm-compiler - elm-package filepath mtl optparse-applicative text time + elm-package filepath mtl optparse-applicative text time raw-strings-qq ]; jailbreak = true; homepage = "http://elm-lang.org"; diff --git a/pkgs/development/compilers/elm/packages/elm-package.nix b/pkgs/development/compilers/elm/packages/elm-package.nix index db57df970eed8..5d2b4f8baba99 100644 --- a/pkgs/development/compilers/elm/packages/elm-package.nix +++ b/pkgs/development/compilers/elm/packages/elm-package.nix @@ -6,11 +6,11 @@ }: mkDerivation { pname = "elm-package"; - version = "0.16"; + version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-package"; - sha256 = "836789a823ab1d97a37907396856d8808c5573e295315c0a55e5bb44915fba4b"; - rev = "6305a7954a45d1635d6a7185f2dcf136c376074f"; + sha256 = "1x9jczby38ax3rbjq6hbyr593dhxazm39gy9jv00k6508dzvfg2l"; + rev = "fc0924210fe5a7c0af543769b1353dbb2ddf2f0c"; }; isLibrary = true; isExecutable = true; diff --git a/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix b/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix index e75744013c48c..be37b2084f10e 100644 --- a/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix +++ b/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix @@ -1,18 +1,22 @@ { - "evancz/virtual-dom" = { - version = "2.1.0"; - sha256 = "0x072vk2x9md5pxwc3f3v7gm738wr996d54avzzadfvj3qcjxpfs"; + "elm-lang/virtual-dom" = { + version = "1.0.0"; + sha256 = "0pa8k04g9yfixahsb30j0rbhfh6hwdh7xmm2fvk0hkidw7b4xg57"; }; "evancz/elm-markdown" = { - version = "2.0.0"; - sha256 = "1x1kvwag7idxif4gsznnx0lp1c49dl9pin3aj0dq21lzradggn3g"; + version = "3.0.0"; + sha256 = "1wlr8sgnyq6qgh5rcjy7imfmpqxrxgmmqcfx6p541fs70yiqya12"; }; - "evancz/elm-html" = { - version = "4.0.2"; - sha256 = "05hzsnsqp2krd9s4xjwhmvyafpky4dc40bbk9sgsr301450cfgw6"; + "elm-lang/html" = { + version = "1.0.0"; + sha256 = "16cr01yxkpkmgbgclp2p80nd62a6fjw3qipzjsgksrhwv9vv4gm4"; }; "elm-lang/core" = { - version = "3.0.0"; - sha256 = "18pdsnz05pjhdv575l3bqzrjd7780zgpcklg4c6lvwwcanpg42pk"; + version = "4.0.0"; + sha256 = "04qgzgv90qyhjk55yw4szy50h2dqdlm0a2padbgn02yf4bb1b4nw"; + }; + "elm-lang/svg" = { + version = "1.0.0"; + sha256 = "0c29y6c58x2sq1bl29z1hr5gi2rlza8clk7ssgzmsf4xbvcczbjx"; }; } diff --git a/pkgs/development/compilers/elm/packages/elm-reactor.nix b/pkgs/development/compilers/elm/packages/elm-reactor.nix index 90fdb68480ca0..18bb428a7a6a9 100644 --- a/pkgs/development/compilers/elm/packages/elm-reactor.nix +++ b/pkgs/development/compilers/elm/packages/elm-reactor.nix @@ -1,22 +1,22 @@ { mkDerivation, base, blaze-html, blaze-markup, bytestring, cmdargs , directory, elm-compiler, fetchgit, filepath, fsnotify, mtl , snap-core, snap-server, stdenv, text, time, transformers -, websockets, websockets-snap +, websockets, websockets-snap, elm-package, file-embed }: mkDerivation { pname = "elm-reactor"; - version = "0.16"; + version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-reactor"; - sha256 = "55605b8443dad20c78e297ce35a603cb107b0c1e57bf1c4710faaebc60396de0"; - rev = "b03166296d11e240fa04cdb748e1f3c4af7afc83"; + sha256 = "14hb16qwx1f4bfngh87pwjavgz6njbwdxlsy218rw3xydy3s1cn3"; + rev = "4781ad2fbb6cbcde0d659dec293bbed9c847ba71"; }; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base blaze-html blaze-markup bytestring cmdargs directory elm-compiler filepath fsnotify mtl snap-core snap-server text time - transformers websockets websockets-snap + transformers websockets websockets-snap elm-package file-embed ]; jailbreak = true; homepage = "http://elm-lang.org"; diff --git a/pkgs/development/compilers/elm/packages/elm-repl.nix b/pkgs/development/compilers/elm/packages/elm-repl.nix index 656fd18c72139..4be7b023fa0fe 100644 --- a/pkgs/development/compilers/elm/packages/elm-repl.nix +++ b/pkgs/development/compilers/elm/packages/elm-repl.nix @@ -5,11 +5,11 @@ }: mkDerivation { pname = "elm-repl"; - version = "0.16"; + version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-repl"; - sha256 = "36d50cf1f86815900afd4b75da6e5cd15008b2652e97ffed0f321a28e6442874"; - rev = "265de7283488964f44f0257a8b4a055ad8af984d"; + sha256 = "1mxg99w36b8i43kl1nxp7fd86igi5wyj08m9mraiq58vpcgyqnzq"; + rev = "95b4555cff6b6e2a55a4ea3dab00bfb39dfebf0d"; }; isLibrary = false; isExecutable = true; diff --git a/pkgs/development/compilers/elm/packages/release.nix b/pkgs/development/compilers/elm/packages/release.nix index b1826260f8f52..742ada2481eb0 100644 --- a/pkgs/development/compilers/elm/packages/release.nix +++ b/pkgs/development/compilers/elm/packages/release.nix @@ -1,6 +1,6 @@ { callPackage }: { - version = "0.16.0"; + version = "0.17.0"; packages = { elm-compiler = callPackage ./elm-compiler.nix { }; elm-package = callPackage ./elm-package.nix { }; -- cgit 1.4.1 From d91e736de553995df31d47392896c2b1a578be66 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 11 May 2016 10:01:59 -0500 Subject: ats2: 0.2.4 -> 0.2.6 --- pkgs/development/compilers/ats2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/ats2/default.nix b/pkgs/development/compilers/ats2/default.nix index 280ed1803449d..0989880df7f4f 100644 --- a/pkgs/development/compilers/ats2/default.nix +++ b/pkgs/development/compilers/ats2/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "ats2-${version}"; - version = "0.2.4"; + version = "0.2.6"; src = fetchurl { url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz"; - sha256 = "0dx3r2vxmarj3aqm0xlcmls1h08pll9y9k4820df41awyrwmfvcy"; + sha256 = "0hfaw8mrxrmb9kdbz5sp4nfjsmncmq6zqwm1n2x2p6arn0za6y9i"; }; buildInputs = [ gmp ]; -- cgit 1.4.1 From 3f74ac1f348eef9598a4e9747f5396daae78a30a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 11 May 2016 10:02:09 -0500 Subject: ats2: add ttuegel to maintainers --- pkgs/development/compilers/ats2/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/ats2/default.nix b/pkgs/development/compilers/ats2/default.nix index 0989880df7f4f..8b4ea36330c0a 100644 --- a/pkgs/development/compilers/ats2/default.nix +++ b/pkgs/development/compilers/ats2/default.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { setupHook = ./setup-hook.sh; - meta = { + meta = with stdenv.lib; { description = "Functional programming language with dependent types"; homepage = "http://www.ats-lang.org"; - license = stdenv.lib.licenses.gpl3Plus; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ thoughtpolice ttuegel ]; }; } -- cgit 1.4.1 From d22df66c54df371039f5d71382beddf559ec5f05 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 11 May 2016 10:19:28 -0500 Subject: qt56: remove fixQtModuleCMakeConfig --- pkgs/development/libraries/qt-5/5.6/default.nix | 3 +- .../qt-5/5.6/fix-qt-module-cmake-config.sh | 5 --- pkgs/development/libraries/qt-5/5.6/qmake-hook.sh | 11 ++++-- .../libraries/qt-5/5.6/qtbase/default.nix | 40 ++++++++-------------- .../libraries/qt-5/5.6/qtconnectivity.nix | 4 --- .../libraries/qt-5/5.6/qtdeclarative/default.nix | 6 ---- pkgs/development/libraries/qt-5/5.6/qtenginio.nix | 3 -- pkgs/development/libraries/qt-5/5.6/qtlocation.nix | 4 --- .../libraries/qt-5/5.6/qtmultimedia.nix | 4 --- .../libraries/qt-5/5.6/qtscript/default.nix | 3 -- pkgs/development/libraries/qt-5/5.6/qtsensors.nix | 3 -- .../libraries/qt-5/5.6/qtserialport/default.nix | 3 -- pkgs/development/libraries/qt-5/5.6/qtsvg.nix | 3 -- pkgs/development/libraries/qt-5/5.6/qttools.nix | 6 ---- .../libraries/qt-5/5.6/qtwebsockets.nix | 3 -- .../development/libraries/qt-5/5.6/qtx11extras.nix | 3 -- .../libraries/qt-5/5.6/qtxmlpatterns.nix | 3 -- 17 files changed, 25 insertions(+), 82 deletions(-) delete mode 100644 pkgs/development/libraries/qt-5/5.6/fix-qt-module-cmake-config.sh (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/qt-5/5.6/default.nix b/pkgs/development/libraries/qt-5/5.6/default.nix index b74b2debf0e2b..4aada4224dac6 100644 --- a/pkgs/development/libraries/qt-5/5.6/default.nix +++ b/pkgs/development/libraries/qt-5/5.6/default.nix @@ -45,7 +45,7 @@ let propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []); nativeBuildInputs = (args.nativeBuildInputs or []) - ++ [ pkgs.perl self.fixQtModuleCMakeConfig self.qmakeHook ]; + ++ [ pkgs.perl self.qmakeHook ]; NIX_QT_SUBMODULE = args.NIX_QT_SUBMODULE or true; @@ -111,7 +111,6 @@ let ]; makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh; - fixQtModuleCMakeConfig = makeSetupHook { } ./fix-qt-module-cmake-config.sh; qmakeHook = makeSetupHook { substitutions = { qt_dev = qtbase.dev; lndir = pkgs.xorg.lndir; }; } ./qmake-hook.sh; }; diff --git a/pkgs/development/libraries/qt-5/5.6/fix-qt-module-cmake-config.sh b/pkgs/development/libraries/qt-5/5.6/fix-qt-module-cmake-config.sh deleted file mode 100644 index 7ca3e33b613c2..0000000000000 --- a/pkgs/development/libraries/qt-5/5.6/fix-qt-module-cmake-config.sh +++ /dev/null @@ -1,5 +0,0 @@ -fixQtModuleCMakeConfig() { - local module="$1" - sed -e "/set(imported_location/ s@\\\${_qt5${module}_install_prefix}@${!outputLib}@" \ - -i "${!outputDev}/lib/cmake/Qt5${module}/Qt5${module}Config.cmake" -} diff --git a/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh index 62a8c8b71c3ed..cf3803a1b9ce7 100644 --- a/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh +++ b/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh @@ -44,7 +44,7 @@ _qtSetQmakePath() { export PATH="$qtOut/bin${PATH:+:}$PATH" } -_qtMultioutModuleDevs() { +_qtModuleMultioutDevsPre() { # We cannot simply set these paths in configureFlags because libQtCore retains # references to the paths it was built with. moveToOutput "bin" "${!outputDev}" @@ -53,7 +53,9 @@ _qtMultioutModuleDevs() { # The destination directory must exist or moveToOutput will do nothing mkdir -p "${!outputDev}/share" moveToOutput "share/doc" "${!outputDev}" +} +_qtModuleMultioutDevsPost() { # Move libtool archives and qmake project files to $dev/lib if [ "z${!outputLib}" != "z${!outputDev}" ]; then pushd "${!outputLib}" @@ -63,6 +65,10 @@ _qtMultioutModuleDevs() { mkdir -p "${!outputDev}/$(dirname "$file")" mv "${!outputLib}/$file" "${!outputDev}/$file" done + + # Ensure that CMake can find the shared libraries + mkdir -p "${!outputDev}/lib" + @lndir@/bin/lndir -silent "${!outputLib}/lib" "${!outputDev}/lib" fi popd fi @@ -108,7 +114,8 @@ fi if [ -n "$NIX_QT_SUBMODULE" ]; then postInstallHooks+=(_qtRmQmake _qtRmModules) - preFixupHooks+=(_qtMultioutModuleDevs) + preFixupHooks+=(_qtModuleMultioutDevsPre) + postFixupHooks+=(_qtModuleMultioutDevsPost) fi fi diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix index ce1ea89bb8284..6ab5a48951f8d 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchgit, copyPathsToStore, fixQtModuleCMakeConfig +{ stdenv, lib, fetchgit, copyPathsToStore , srcs , xlibs, libX11, libxcb, libXcursor, libXext, libXrender, libXi @@ -206,7 +206,7 @@ stdenv.mkDerivation { ++ lib.optional (postgresql != null) postgresql ++ lib.optionals gtkStyle [gnome_vfs.out libgnomeui.out gtk GConf]; - nativeBuildInputs = [ fixQtModuleCMakeConfig lndir patchelf perl pkgconfig python ]; + nativeBuildInputs = [ lndir patchelf perl pkgconfig python ]; # freetype-2.5.4 changed signedness of some struct fields NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; @@ -222,17 +222,6 @@ stdenv.mkDerivation { mkdir -p "$dev/share" moveToOutput "share/doc" "$dev" - # Move libtool archives and qmake projects - if [ "z''${!outputLib}" != "z''${!outputDev}" ]; then - pushd "''${!outputLib}" - find lib -name '*.a' -o -name '*.la' -o -name '*.prl' | \ - while read -r file; do - mkdir -p "''${!outputDev}/$(dirname "$file")" - mv "''${!outputLib}/$file" "''${!outputDev}/$file" - done - popd - fi - # Move the QGtkStyle plugin to the gtk output mkdir -p "$gtk/lib/qt5/plugins/platformthemes" mv "$out/lib/qt5/plugins/platformthemes/libqgtk2.so" "$gtk/lib/qt5/plugins/platformthemes" @@ -255,18 +244,19 @@ stdenv.mkDerivation { # Don't retain build-time dependencies like gdb and ruby. sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $dev/mkspecs/qconfig.pri - fixQtModuleCMakeConfig "Concurrent" - fixQtModuleCMakeConfig "Core" - fixQtModuleCMakeConfig "DBus" - fixQtModuleCMakeConfig "Gui" - fixQtModuleCMakeConfig "Network" - fixQtModuleCMakeConfig "OpenGL" - fixQtModuleCMakeConfig "OpenGLExtensions" - fixQtModuleCMakeConfig "PrintSupport" - fixQtModuleCMakeConfig "Sql" - fixQtModuleCMakeConfig "Test" - fixQtModuleCMakeConfig "Widgets" - fixQtModuleCMakeConfig "Xml" + # Move libtool archives and qmake projects + if [ "z''${!outputLib}" != "z''${!outputDev}" ]; then + pushd "''${!outputLib}" + find lib -name '*.a' -o -name '*.la' -o -name '*.prl' | \ + while read -r file; do + mkdir -p "''${!outputDev}/$(dirname "$file")" + mv "''${!outputLib}/$file" "''${!outputDev}/$file" + done + popd + + # Ensure that CMake can find the shared libraries + lndir -silent "''${!outputLib}/lib" "''${!outputDev}/lib" + fi ''; setupHook = ./setup-hook.sh; diff --git a/pkgs/development/libraries/qt-5/5.6/qtconnectivity.nix b/pkgs/development/libraries/qt-5/5.6/qtconnectivity.nix index 35538c7261f1d..95cd6fea79b40 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtconnectivity.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtconnectivity.nix @@ -3,8 +3,4 @@ qtSubmodule { name = "qtconnectivity"; qtInputs = [ qtbase qtdeclarative ]; - postFixup = '' - fixQtModuleCMakeConfig "Bluetooth" - fixQtModuleCMakeConfig "Nfc" - ''; } diff --git a/pkgs/development/libraries/qt-5/5.6/qtdeclarative/default.nix b/pkgs/development/libraries/qt-5/5.6/qtdeclarative/default.nix index 407513f784989..328d8aee72bdf 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtdeclarative/default.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtdeclarative/default.nix @@ -5,10 +5,4 @@ qtSubmodule { patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); qtInputs = [ qtbase qtsvg qtxmlpatterns ]; nativeBuildInputs = [ python ]; - postFixup = '' - fixQtModuleCMakeConfig "Qml" - fixQtModuleCMakeConfig "Quick" - fixQtModuleCMakeConfig "QuickTest" - fixQtModuleCMakeConfig "QuickWidgets" - ''; } diff --git a/pkgs/development/libraries/qt-5/5.6/qtenginio.nix b/pkgs/development/libraries/qt-5/5.6/qtenginio.nix index 503a0f7ce4f55..b860a73ef8900 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtenginio.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtenginio.nix @@ -3,7 +3,4 @@ qtSubmodule { name = "qtenginio"; qtInputs = [ qtdeclarative ]; - postFixup = '' - fixQtModuleCMakeConfig "Enginio" - ''; } diff --git a/pkgs/development/libraries/qt-5/5.6/qtlocation.nix b/pkgs/development/libraries/qt-5/5.6/qtlocation.nix index 0e2ad8bafb30d..1e134057c4b47 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtlocation.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtlocation.nix @@ -3,8 +3,4 @@ qtSubmodule { name = "qtlocation"; qtInputs = [ qtbase qtmultimedia ]; - postFixup = '' - fixQtModuleCMakeConfig "Location" - fixQtModuleCMakeConfig "Positioning" - ''; } diff --git a/pkgs/development/libraries/qt-5/5.6/qtmultimedia.nix b/pkgs/development/libraries/qt-5/5.6/qtmultimedia.nix index 9eb68ba6b5ba2..7c1cc5da07e35 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtmultimedia.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtmultimedia.nix @@ -9,8 +9,4 @@ qtSubmodule { pkgconfig alsaLib gstreamer gst-plugins-base libpulseaudio ]; qmakeFlags = [ "GST_VERSION=1.0" ]; - postFixup = '' - fixQtModuleCMakeConfig "Multimedia" - fixQtModuleCMakeConfig "MultimediaWidgets" - ''; } diff --git a/pkgs/development/libraries/qt-5/5.6/qtscript/default.nix b/pkgs/development/libraries/qt-5/5.6/qtscript/default.nix index b81a43aeadb04..127766e2ebd61 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtscript/default.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtscript/default.nix @@ -4,7 +4,4 @@ qtSubmodule { name = "qtscript"; qtInputs = [ qtbase qttools ]; patches = [ ./0001-glib-2.32.patch ]; - postFixup = '' - fixQtModuleCMakeConfig "Script" - ''; } diff --git a/pkgs/development/libraries/qt-5/5.6/qtsensors.nix b/pkgs/development/libraries/qt-5/5.6/qtsensors.nix index 5776f45a70689..61e64dc47e4dc 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtsensors.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtsensors.nix @@ -3,7 +3,4 @@ qtSubmodule { name = "qtsensors"; qtInputs = [ qtbase qtdeclarative ]; - postFixup = '' - fixQtModuleCMakeConfig "Sensors" - ''; } diff --git a/pkgs/development/libraries/qt-5/5.6/qtserialport/default.nix b/pkgs/development/libraries/qt-5/5.6/qtserialport/default.nix index 3f409f9c0e084..32549c95344a1 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtserialport/default.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtserialport/default.nix @@ -9,7 +9,4 @@ qtSubmodule { libudev = libudev.out; }) ]; - postFixup = '' - fixQtModuleCMakeConfig "SerialPort" - ''; } diff --git a/pkgs/development/libraries/qt-5/5.6/qtsvg.nix b/pkgs/development/libraries/qt-5/5.6/qtsvg.nix index a460d6da4c2ad..b9ccac7cf9331 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtsvg.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtsvg.nix @@ -3,7 +3,4 @@ qtSubmodule { name = "qtsvg"; qtInputs = [ qtbase ]; - postFixup = '' - fixQtModuleCMakeConfig "Svg" - ''; } diff --git a/pkgs/development/libraries/qt-5/5.6/qttools.nix b/pkgs/development/libraries/qt-5/5.6/qttools.nix index deb00d1f80885..4aeaea729a25c 100644 --- a/pkgs/development/libraries/qt-5/5.6/qttools.nix +++ b/pkgs/development/libraries/qt-5/5.6/qttools.nix @@ -6,11 +6,5 @@ qtSubmodule { postFixup = '' moveToOutput "bin/qdbus" "$out" moveToOutput "bin/qtpaths" "$out" - - fixQtModuleCMakeConfig "Designer" - fixQtModuleCMakeConfig "Help" - fixQtModuleCMakeConfig "LinguistTools" - fixQtModuleCMakeConfig "UiPlugin" - fixQtModuleCMakeConfig "UiTools" ''; } diff --git a/pkgs/development/libraries/qt-5/5.6/qtwebsockets.nix b/pkgs/development/libraries/qt-5/5.6/qtwebsockets.nix index c0d0f9e7d714e..fbdfbbcf0dbed 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtwebsockets.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtwebsockets.nix @@ -3,7 +3,4 @@ qtSubmodule { name = "qtwebsockets"; qtInputs = [ qtbase qtdeclarative ]; - postFixup = '' - fixQtModuleCMakeConfig "WebSockets" - ''; } diff --git a/pkgs/development/libraries/qt-5/5.6/qtx11extras.nix b/pkgs/development/libraries/qt-5/5.6/qtx11extras.nix index db92f1353627d..a765161e2d7ea 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtx11extras.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtx11extras.nix @@ -3,7 +3,4 @@ qtSubmodule { name = "qtx11extras"; qtInputs = [ qtbase ]; - postFixup = '' - fixQtModuleCMakeConfig "X11Extras" - ''; } diff --git a/pkgs/development/libraries/qt-5/5.6/qtxmlpatterns.nix b/pkgs/development/libraries/qt-5/5.6/qtxmlpatterns.nix index 3b22132e4c38e..9a8ddbba2bd24 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtxmlpatterns.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtxmlpatterns.nix @@ -3,7 +3,4 @@ qtSubmodule { name = "qtxmlpatterns"; qtInputs = [ qtbase ]; - postFixup = '' - fixQtModuleCMakeConfig "XmlPatterns" - ''; } -- cgit 1.4.1 From 668f9159ab3eb6ad3cb47c01047de358263ef2b1 Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Wed, 11 May 2016 18:32:30 +0200 Subject: pypy: deactivate test_zipfile64 again --- pkgs/development/interpreters/pypy/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/pypy/default.nix b/pkgs/development/interpreters/pypy/default.nix index 927ba26830942..e4e6e51d5cfe2 100644 --- a/pkgs/development/interpreters/pypy/default.nix +++ b/pkgs/development/interpreters/pypy/default.nix @@ -73,8 +73,9 @@ let # disable socket because it has two actual network tests that fail # disable test_urllib2net, test_urllib2_localnet, and test_urllibnet because they require networking (example.com) # disable test_ssl because no shared cipher' not found in '[Errno 1] error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure + # disable test_zipfile64 because it causes ENOSPACE # disable test_epoll because of invalid arg, should be fixed in as of version 5.1.2 - ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k 'not ( test_ssl or test_urllib2net or test_urllibnet or test_urllib2_localnet or test_socket or test_shutil or test_epoll )' lib-python + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k 'not ( test_ssl or test_urllib2net or test_urllibnet or test_urllib2_localnet or test_socket or test_shutil or test_zipfile64 or test_epoll )' lib-python ''; installPhase = '' -- cgit 1.4.1 From 2d7e4de12ed1e3588ec63517f9647021b893947a Mon Sep 17 00:00:00 2001 From: Bjørn Forsman Date: Wed, 11 May 2016 21:01:29 +0200 Subject: Revert "arduino: 1.0.6 -> 1.6.6" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 6ff886e539fb2b2017ad3866f068db9368a038d5 because it doesn't work when chroot builds are enabled (nix.useChroot = true): $ nix-build -A arduino these derivations will be built: /nix/store/xjv1j3mww4jx1vccfc0p1inlcrlgx2if-arduino-1.6.6.drv building path(s) ‘/nix/store/58sdiphd4pm3811gir0b8j718pgq8zvk-arduino-1.6.6’ ... untar-unzip-download: [get] Getting: http://downloads.arduino.cc/reference-1.6.6-3.zip [get] To: /tmp/nix-build-arduino-1.6.6.drv-0/Arduino-1.6.6-src/build/shared/reference-1.6.6-3.zip [get] Error getting http://downloads.arduino.cc/reference-1.6.6-3.zip to /tmp/nix-build-arduino-1.6.6.drv-0/Arduino-1.6.6-src/build/shared/reference-1.6.6-3.zip untar-unzip-checksum: [echo] Testing checksum of "shared/reference-1.6.6-3.zip" [checksum] Could not find file /tmp/nix-build-arduino-1.6.6.drv-0/Arduino-1.6.6-src/build/shared/reference-1.6.6-3.zip to generate checksum for. BUILD FAILED Reasoning: without a revert, the build farm cannot produce binaries and users that build from source, without chroot, cannot trust that they get a working result (non-deterministic build, depending on how pure the arduino builder is). --- pkgs/development/arduino/arduino-core/default.nix | 28 +++++++++-------------- 1 file changed, 11 insertions(+), 17 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/arduino/arduino-core/default.nix b/pkgs/development/arduino/arduino-core/default.nix index 8059879dc479d..37947c804b8b8 100644 --- a/pkgs/development/arduino/arduino-core/default.nix +++ b/pkgs/development/arduino/arduino-core/default.nix @@ -1,51 +1,45 @@ { stdenv, fetchFromGitHub, jdk, jre, ant, coreutils, gnugrep, file, libusb -, unzip, zlib, readline, ncurses, withGui ? false, gtk2 ? null }: +, withGui ? false, gtk2 ? null +}: assert withGui -> gtk2 != null; stdenv.mkDerivation rec { - version = "1.6.6"; + version = "1.0.6"; name = "arduino${stdenv.lib.optionalString (withGui == false) "-core"}-${version}"; src = fetchFromGitHub { owner = "arduino"; repo = "Arduino"; rev = "${version}"; - sha256 = "1gm3sjjs149r2d82ynx25qlg31bbird1zr4x01qi4ybk3gp0268v"; + sha256 = "0nr5b719qi03rcmx6swbhccv6kihxz3b8b6y46bc2j348rja5332"; }; - buildInputs = [ jdk ant file unzip ]; + buildInputs = [ jdk ant file ]; buildPhase = '' - cd ./arduino-core && ant + cd ./core && ant cd ../build && ant cd .. ''; - libPath = stdenv.lib.makeLibraryPath (builtins.filter (l: l != null) [ - gtk2 stdenv.cc.cc zlib readline libusb ncurses]) + ":$out/lib"; - installPhase = '' mkdir -p $out/share/arduino cp -r ./build/linux/work/* "$out/share/arduino/" echo ${version} > $out/share/arduino/lib/version.txt - # Hack around lack of libtinfo in NixOS - mkdir -p $out/lib - ln -s ${ncurses.out}/lib/libncursesw.so.5 $out/lib/libtinfo.so.5 - ${stdenv.lib.optionalString withGui '' mkdir -p "$out/bin" - sed -i -e "s|^JAVA=.*|JAVA=${jdk}/bin/java|" "$out/share/arduino/arduino" - sed -i -e "s|^LD_LIBRARY_PATH=|LD_LIBRARY_PATH=${libPath}:|" "$out/share/arduino/arduino" + sed -i -e "s|^java|${jdk}/bin/java|" "$out/share/arduino/arduino" + sed -i -e "s|^LD_LIBRARY_PATH=|LD_LIBRARY_PATH=${gtk2}/lib:|" "$out/share/arduino/arduino" ln -sr "$out/share/arduino/arduino" "$out/bin/arduino" ''} # Fixup "/lib64/ld-linux-x86-64.so.2" like references in ELF executables. echo "running patchelf on prebuilt binaries:" find "$out" | while read filepath; do - if file "$filepath" | grep -q "ELF.*executable.*dynamic"; then + if file "$filepath" | grep -q "ELF.*executable"; then # skip target firmware files if echo "$filepath" | grep -q "\.elf$"; then continue @@ -56,8 +50,8 @@ stdenv.mkDerivation rec { fi done - patchelf --set-rpath ${libPath} \ - "$out/share/arduino/hardware/tools/avr/bin/avrdude_bin" + patchelf --set-rpath ${stdenv.lib.makeLibraryPath [ libusb ]} \ + "$out/share/arduino/hardware/tools/avrdude" ''; meta = with stdenv.lib; { -- cgit 1.4.1 From f768098e3eabf85ab014991d067378b5ac65b14d Mon Sep 17 00:00:00 2001 From: Bjørn Forsman Date: Wed, 11 May 2016 21:16:26 +0200 Subject: libserialport: 0.1.0 -> 0.1.1 --- pkgs/development/libraries/libserialport/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libserialport/default.nix b/pkgs/development/libraries/libserialport/default.nix index c40812beeacce..e7ee188c29f04 100644 --- a/pkgs/development/libraries/libserialport/default.nix +++ b/pkgs/development/libraries/libserialport/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, udev }: stdenv.mkDerivation rec { - name = "libserialport-0.1.0"; + name = "libserialport-0.1.1"; src = fetchurl { url = "http://sigrok.org/download/source/libserialport/${name}.tar.gz"; - sha256 = "1bqrldwrcsv6jbq3pmqczq27gdkrzpaxwplanqs25f6q9gb5p47c"; + sha256 = "17ajlwgvyyrap8z7f16zcs59pksvncwbmd3mzf98wj7zqgczjaja"; }; buildInputs = [ pkgconfig udev ]; -- cgit 1.4.1 From 300e495101245ac3b711415aa8fbb278573cd278 Mon Sep 17 00:00:00 2001 From: Bjørn Forsman Date: Wed, 11 May 2016 21:21:35 +0200 Subject: sigrok: update whole suite to latest (2016-01) Release announcement, 2016-01-30: https://www.sigrok.org/blog/major-sigrok-releases-libsigrok-libsigrokdecode-sigrok-cli-pulseview I first tried updating the projects in separate commits. But later I found cyclic dependencies, that would break git bisect, so I ended up squashing the commits: * libsigrok: 0.3.0 -> 0.4.0 Enable building libsigrokcxx.so, the C++ bindings for libsigrok, by adding doxygen, glibmm and python as build deps. This is needed for Pulseview >= 0.3.0. Also update the firmware (sigrok-firmware-fx2lafw) while at it. * libsigrokdecode: 0.3.0 -> 0.4.0 * sigrok-cli: 0.5.0 -> 0.6.0 * pulseview: 0.2.0 -> 0.3.0 New dependency: glibmm (due to libsigrokcxx.pc from libsigrok). Note that collectd is incompatible with the new libsigrok release, so I let it use the old one (0.3.0). --- .../applications/science/electronics/pulseview/default.nix | 8 ++++---- pkgs/development/tools/libsigrok/default.nix | 14 ++++++++------ pkgs/development/tools/libsigrokdecode/default.nix | 4 ++-- pkgs/development/tools/sigrok-cli/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 6 ++++++ 5 files changed, 22 insertions(+), 14 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/applications/science/electronics/pulseview/default.nix b/pkgs/applications/science/electronics/pulseview/default.nix index 07724d9325417..595ad9eeb0a05 100644 --- a/pkgs/applications/science/electronics/pulseview/default.nix +++ b/pkgs/applications/science/electronics/pulseview/default.nix @@ -1,17 +1,17 @@ { stdenv, fetchurl, pkgconfig, cmake, glib, qt4, boost, libsigrok -, libsigrokdecode, libserialport, libzip, udev, libusb1, libftdi +, libsigrokdecode, libserialport, libzip, udev, libusb1, libftdi, glibmm }: stdenv.mkDerivation rec { - name = "pulseview-0.2.0"; + name = "pulseview-0.3.0"; src = fetchurl { url = "http://sigrok.org/download/source/pulseview/${name}.tar.gz"; - sha256 = "1pf1dgwd9j586nqmni6gqf3qxrsmawcmi9wzqfzqkjci18xd7dgy"; + sha256 = "03jk5xpsird5ssbnwkxw57jnqvnnpivhqh1xjdhdrz02lsvjrzjz"; }; buildInputs = [ pkgconfig cmake glib qt4 boost libsigrok - libsigrokdecode libserialport libzip udev libusb1 libftdi + libsigrokdecode libserialport libzip udev libusb1 libftdi glibmm ]; meta = with stdenv.lib; { diff --git a/pkgs/development/tools/libsigrok/default.nix b/pkgs/development/tools/libsigrok/default.nix index 5be4f4a27ab40..7671bf18063be 100644 --- a/pkgs/development/tools/libsigrok/default.nix +++ b/pkgs/development/tools/libsigrok/default.nix @@ -1,22 +1,24 @@ { stdenv, fetchurl, pkgconfig, libzip, glib, libusb1, libftdi, check -, libserialport, librevisa +, libserialport, librevisa, doxygen, glibmm, python +, version ? "0.4.0", sha256 ? "17k63p3yhpx9qbfprgayphqqhn2hdrcph73g6fqxmrinxqziyaaz" }: stdenv.mkDerivation rec { - name = "libsigrok-0.3.0"; + inherit version; + name = "libsigrok-${version}"; src = fetchurl { url = "http://sigrok.org/download/source/libsigrok/${name}.tar.gz"; - sha256 = "0l3h7zvn3w4c1b9dgvl3hirc4aj1csfkgbk87jkpl7bgl03nk4j3"; + inherit sha256; }; firmware = fetchurl { - url = "http://sigrok.org/download/binary/sigrok-firmware-fx2lafw/sigrok-firmware-fx2lafw-bin-0.1.2.tar.gz"; - sha256 = "0w0w6l015d16181mx8mgyjha4bv3ba7x36p86k9n1x52809433gj"; + url = "http://sigrok.org/download/binary/sigrok-firmware-fx2lafw/sigrok-firmware-fx2lafw-bin-0.1.3.tar.gz"; + sha256 = "1qr02ny97navqxr56xq1a227yzf6h09m8jlvc9bnjl0bsk6887bl"; }; buildInputs = [ pkgconfig libzip glib libusb1 libftdi check libserialport - librevisa + librevisa doxygen glibmm python ]; postInstall = '' diff --git a/pkgs/development/tools/libsigrokdecode/default.nix b/pkgs/development/tools/libsigrokdecode/default.nix index 87ecd637b4e24..706b9bde3273b 100644 --- a/pkgs/development/tools/libsigrokdecode/default.nix +++ b/pkgs/development/tools/libsigrokdecode/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, glib, python3, libsigrok, check }: stdenv.mkDerivation rec { - name = "libsigrokdecode-0.3.0"; + name = "libsigrokdecode-0.4.0"; src = fetchurl { url = "http://sigrok.org/download/source/libsigrokdecode/${name}.tar.gz"; - sha256 = "13s7ss52dqj7fccjgrkx10zkj41ygxn8ml1l0bs1vgczz4fvnkpf"; + sha256 = "0drmxjc2xavccjl2i6vcjipijrn7459nv8cpmm788pi4fcdrszpx"; }; buildInputs = [ pkgconfig glib python3 libsigrok check ]; diff --git a/pkgs/development/tools/sigrok-cli/default.nix b/pkgs/development/tools/sigrok-cli/default.nix index b2e6dea09e67a..7ea394039b9f2 100644 --- a/pkgs/development/tools/sigrok-cli/default.nix +++ b/pkgs/development/tools/sigrok-cli/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, glib, libsigrok, libsigrokdecode }: stdenv.mkDerivation rec { - name = "sigrok-cli-0.5.0"; + name = "sigrok-cli-0.6.0"; src = fetchurl { url = "http://sigrok.org/download/source/sigrok-cli/${name}.tar.gz"; - sha256 = "0g3jzspq9iwz2szzxil9ilim1and85qd605f4jbc04sva80hb8vk"; + sha256 = "0g3jhi7azm256gnryka70wn7j3af42yk19c9kbhqffaz4i7dwbmb"; }; buildInputs = [ pkgconfig glib libsigrok libsigrokdecode ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 19b389a633fcc..8de856096bd4e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1052,6 +1052,7 @@ in collectd = callPackage ../tools/system/collectd { rabbitmq-c = rabbitmq-c_0_4; libmysql = mysql.lib; + libsigrok = libsigrok-0-3-0; # not compatible with >= 0.4.0 yet }; colormake = callPackage ../development/tools/build-managers/colormake { }; @@ -5999,6 +6000,11 @@ in libcxxabi = llvmPackages.libcxxabi; libsigrok = callPackage ../development/tools/libsigrok { }; + # old version: + libsigrok-0-3-0 = libsigrok.override { + version = "0.3.0"; + sha256 = "0l3h7zvn3w4c1b9dgvl3hirc4aj1csfkgbk87jkpl7bgl03nk4j3"; + }; libsigrokdecode = callPackage ../development/tools/libsigrokdecode { }; -- cgit 1.4.1 From 6360ad48af0321ba33c154bb41c89105205ae351 Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Thu, 12 May 2016 01:50:13 -0400 Subject: libass: darwin compatibility --- pkgs/development/libraries/libass/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libass/default.nix b/pkgs/development/libraries/libass/default.nix index 1acd71c30c84b..4b579524a528d 100644 --- a/pkgs/development/libraries/libass/default.nix +++ b/pkgs/development/libraries/libass/default.nix @@ -5,6 +5,7 @@ , harfbuzzSupport ? true, harfbuzz ? null # harfbuzz support , rasterizerSupport ? false # Internal rasterizer , largeTilesSupport ? false # Use larger tiles in the rasterizer +, libiconv }: assert encaSupport -> enca != null; @@ -38,7 +39,8 @@ stdenv.mkDerivation rec { buildInputs = [ freetype fribidi ] ++ optional encaSupport enca ++ optional fontconfigSupport fontconfig - ++ optional harfbuzzSupport harfbuzz; + ++ optional harfbuzzSupport harfbuzz + ++ optional stdenv.isDarwin libiconv; meta = { description = "Portable ASS/SSA subtitle renderer"; -- cgit 1.4.1 From d077506443d56c72c8f3fa9124532643597691df Mon Sep 17 00:00:00 2001 From: Carles Pagès Date: Thu, 12 May 2016 09:12:43 +0200 Subject: assimp: 3.1.1 -> 3.2 --- pkgs/development/libraries/assimp/default.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/assimp/default.nix b/pkgs/development/libraries/assimp/default.nix index 38d7e50bdf8e4..ef75ad3fe871d 100644 --- a/pkgs/development/libraries/assimp/default.nix +++ b/pkgs/development/libraries/assimp/default.nix @@ -1,17 +1,16 @@ -{ stdenv, fetchurl, unzip, cmake, boost, zlib }: +{ stdenv, fetchFromGitHub, unzip, cmake, boost, zlib }: let - major = "3"; - minor = "1"; - revision = "1"; - version = "${major}.${minor}.${revision}"; + version = "3.2"; in stdenv.mkDerivation { name = "assimp-${version}"; - src = fetchurl { - url = "mirror://sourceforge/project/assimp/assimp-${major}.${minor}/assimp-${version}_no_test_models.zip"; - sha256 = "17nyzsqzqpafamhi779f1bkh5mfgj8rpas034x3v9a0hdy3jg66s"; + src = fetchFromGitHub{ + owner = "assimp"; + repo = "assimp"; + rev = "v${version}"; + sha256 = "09fsksbq9a8gykwmw6gaicwh2ladrln1jc1xc5yk7w6x180cbb1x"; }; buildInputs = [ unzip cmake boost zlib ]; -- cgit 1.4.1 From 5d68baa8dbcf8f9970ea0174949cb1dd67c87ae4 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 12 May 2016 14:27:51 +0200 Subject: Python bootstrapped-pip: 8.1.1 -> 8.1.2 --- pkgs/development/python-modules/bootstrapped-pip/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/python-modules/bootstrapped-pip/default.nix b/pkgs/development/python-modules/bootstrapped-pip/default.nix index dfa5f86944ac9..a905503b4404a 100644 --- a/pkgs/development/python-modules/bootstrapped-pip/default.nix +++ b/pkgs/development/python-modules/bootstrapped-pip/default.nix @@ -15,11 +15,11 @@ let }; in stdenv.mkDerivation rec { name = "python-${python.version}-bootstrapped-pip-${version}"; - version = "8.1.1"; + version = "8.1.2"; src = fetchurl { url = "https://pypi.python.org/packages/py2.py3/p/pip/pip-${version}-py2.py3-none-any.whl"; - sha256 = "0p62v87lm595kwmxrnqxc81dr7h6maaxj1y28b00bf9ag11c7fa4"; + sha256 = "18cjrd66mn4a0gwa99zzs89lrb0xn4xmajdzya6zqd7v16cdsr34"; }; unpackPhase = '' -- cgit 1.4.1 From 8c525431c8579fdd6a229ad97ccc9f9e21b662b6 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 12 May 2016 07:35:14 -0500 Subject: postiats-utilities: init at 2.0.1 --- .../tools/postiats-utilities/default.nix | 37 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 39 insertions(+) create mode 100644 pkgs/development/tools/postiats-utilities/default.nix (limited to 'pkgs/development') diff --git a/pkgs/development/tools/postiats-utilities/default.nix b/pkgs/development/tools/postiats-utilities/default.nix new file mode 100644 index 0000000000000..4b6d230becd64 --- /dev/null +++ b/pkgs/development/tools/postiats-utilities/default.nix @@ -0,0 +1,37 @@ +{ stdenv, fetchurl, python3, python3Packages }: + +stdenv.mkDerivation { + name = "postiats-utilities-2.0.1"; + src = fetchurl { + url = "https://github.com/Hibou57/PostiATS-Utilities/archive/v2.0.1.tar.gz"; + sha256 = "12jlzqigmaa9m37x0nq5v3gq8v61m73i5kzdnsm06chf0przpaix"; + }; + + meta = with stdenv.lib; { + homepage = "https://github.com/Hibou57/PostiATS-Utilities"; + license = licenses.bsd2; + platforms = platforms.linux; + maintainers = [ maintainers.ttuegel ]; + }; + + buildInputs = [ python3 python3Packages.wrapPython ]; + + phases = "unpackPhase patchPhase installPhase"; + + postPatch = '' + for f in pats-* postiats/*.py; do + sed -i "$f" -e "1 s,python3,python," + done + ''; + + installPhase = '' + libdir="$out/lib/${python3.libPrefix}/site-packages" + mkdir -p "$libdir" + cp -r postiats "$libdir" + + mkdir -p "$out/bin" + install pats-* "$out/bin" + + wrapPythonPrograms + ''; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 19b389a633fcc..f32e20a3d9e63 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6287,6 +6287,8 @@ in }); pkgconfigUpstream = lowPrio (pkgconfig.override { vanilla = true; }); + postiats-utilities = callPackage ../development/tools/postiats-utilities {}; + prelink = callPackage ../development/tools/misc/prelink { }; premake3 = callPackage ../development/tools/misc/premake/3.nix { }; -- cgit 1.4.1 From 3098547ebc0bd4e9e06ea949fc476b0284053482 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 12 May 2016 18:49:19 +0300 Subject: haskell.packages.ghc801: 8.0.0.20160421 -> 8.0.1 --- pkgs/development/compilers/ghc/8.0.1.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/ghc/8.0.1.nix b/pkgs/development/compilers/ghc/8.0.1.nix index 656dedc922d88..092d9d7820a78 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.20160421"; + version = "8.0.1"; name = "ghc-${version}"; src = fetchurl { - url = "https://downloads.haskell.org/~ghc/8.0.1-rc4/${name}-src.tar.xz"; - sha256 = "183p1ilk8rlndi1vmg2vmlx00s18q3j31kin85qpbvicsxb8j1j1"; + url = "https://downloads.haskell.org/~ghc/8.0.1/${name}-src.tar.xz"; + sha256 = "0riyry246a6km4mw1q9iiw6p75ww2f8s81i34g151zwwdygk7qpf"; }; patches = [ -- cgit 1.4.1 From cfd899c00fe64e1f5187ac5f4e601ca6cff6353f Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 12 May 2016 20:41:30 +0200 Subject: checkstyle: 6.17 -> 6.18 --- pkgs/development/tools/analysis/checkstyle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/analysis/checkstyle/default.nix b/pkgs/development/tools/analysis/checkstyle/default.nix index 0d961ab5c23ce..fc1e8e5d54ec4 100644 --- a/pkgs/development/tools/analysis/checkstyle/default.nix +++ b/pkgs/development/tools/analysis/checkstyle/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - version = "6.17"; + version = "6.18"; name = "checkstyle-${version}"; src = fetchurl { url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz"; - sha256 = "1cfcjz1fg9ilqqaqlbzd5n7nsx1kzy6sabjp92b9d8mwy15bn5ql"; + sha256 = "1ls2q6zvnfsvb3b5d9s1p6c5gcdnwm2mlj2dm8jr4nifkymi6q5m"; }; installPhase = '' -- cgit 1.4.1 From be482b2314163d9904df88519bbda40069bd4048 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 12 May 2016 20:57:46 +0200 Subject: groovy: 2.4.5 -> 2.4.6 --- pkgs/development/interpreters/groovy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/groovy/default.nix b/pkgs/development/interpreters/groovy/default.nix index 747ecf4210d8d..30a2f05f0e058 100644 --- a/pkgs/development/interpreters/groovy/default.nix +++ b/pkgs/development/interpreters/groovy/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "groovy-${version}"; - version = "2.4.5"; + version = "2.4.6"; src = fetchurl { url = "http://dl.bintray.com/groovy/maven/apache-groovy-binary-${version}.zip"; - sha256 = "1ajcrma18z0zr7h69bg4v2brxnxa4ljc9a55pk4q92vi3ypyks47"; + sha256 = "0s474wy7db7j1pans5ks986b52bdmn40l29zl6xl44y23fsvagwv"; }; buildInputs = [ unzip makeWrapper ]; -- cgit 1.4.1 From 8ce822665599ba4779b55866f7121066597ac454 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 12 May 2016 20:59:15 +0200 Subject: libfilezilla: 0.5.0 -> 0.5.1 --- pkgs/development/libraries/libfilezilla/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libfilezilla/default.nix b/pkgs/development/libraries/libfilezilla/default.nix index 4381f9e6c7344..3e0310736dd35 100644 --- a/pkgs/development/libraries/libfilezilla/default.nix +++ b/pkgs/development/libraries/libfilezilla/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libfilezilla-${version}"; - version = "0.5.0"; + version = "0.5.1"; src = fetchurl { url = "mirror://sourceforge/project/filezilla/libfilezilla/${version}/${name}.tar.bz2"; - sha256 = "07f5hk5izqgqjadrwy608gi0w3scm3zvpsv63j7bgfqk67qilslc"; + sha256 = "1ydpk6i5vjd78i0531cxlkjvlmvvrsfyc7hv7wx81ws3rkp5hnsq"; }; meta = with stdenv.lib; { -- cgit 1.4.1 From 582fef1299086b9b01aa12eebd800bcbdc713787 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Thu, 12 May 2016 13:54:32 -0700 Subject: fix pip URL --- pkgs/development/python-modules/bootstrapped-pip/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/python-modules/bootstrapped-pip/default.nix b/pkgs/development/python-modules/bootstrapped-pip/default.nix index a905503b4404a..f510c5c884b41 100644 --- a/pkgs/development/python-modules/bootstrapped-pip/default.nix +++ b/pkgs/development/python-modules/bootstrapped-pip/default.nix @@ -18,7 +18,7 @@ in stdenv.mkDerivation rec { version = "8.1.2"; src = fetchurl { - url = "https://pypi.python.org/packages/py2.py3/p/pip/pip-${version}-py2.py3-none-any.whl"; + url = "https://pypi.python.org/packages/9c/32/004ce0852e0a127f07f358b715015763273799bd798956fa930814b60f39/pip-${version}-py2.py3-none-any.whl"; sha256 = "18cjrd66mn4a0gwa99zzs89lrb0xn4xmajdzya6zqd7v16cdsr34"; }; -- cgit 1.4.1 From 79914075f478272d5355515d6034d480d8d95940 Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Thu, 12 May 2016 18:40:33 -0300 Subject: SDL: Revert "SDL: use mesa_noglu instead of mesa" This reverts commit a9a94df4e644168de200c3689d3c53100256bf74. --- pkgs/development/libraries/SDL/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/SDL/default.nix b/pkgs/development/libraries/SDL/default.nix index 5d97a7fa59ee3..6c3920ff8aa86 100644 --- a/pkgs/development/libraries/SDL/default.nix +++ b/pkgs/development/libraries/SDL/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, fetchpatch, pkgconfig, audiofile, libcap -, openglSupport ? false, mesa_noglu ? null +, openglSupport ? false, mesa ? null , alsaSupport ? true, alsaLib ? null , x11Support ? true, xlibsWrapper ? null, libXrandr ? null , pulseaudioSupport ? true, libpulseaudio ? null @@ -10,7 +10,7 @@ # PulseAudio. assert (stdenv.isLinux && !(stdenv ? cross)) -> alsaSupport || pulseaudioSupport; -assert openglSupport -> (mesa_noglu != null && x11Support); +assert openglSupport -> (mesa != null && x11Support); assert x11Support -> (xlibsWrapper != null && libXrandr != null); assert alsaSupport -> alsaLib != null; assert pulseaudioSupport -> libpulseaudio != null; @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { optionals x11Support [ xlibsWrapper libXrandr ] ++ optional alsaSupport alsaLib ++ optional stdenv.isLinux libcap ++ - optional openglSupport mesa_noglu ++ + optional openglSupport mesa ++ optional pulseaudioSupport libpulseaudio ++ optional stdenv.isDarwin Cocoa; -- cgit 1.4.1 From 3aa2992bc10d80ad9a3b3090f6b8ea5a5206f60b Mon Sep 17 00:00:00 2001 From: zimbatm Date: Fri, 13 May 2016 09:25:01 +0100 Subject: packer: 0.8.6 -> 0.10.1 --- pkgs/development/tools/packer/default.nix | 54 ++- pkgs/development/tools/packer/deps.nix | 719 ++++++++++++++++-------------- 2 files changed, 428 insertions(+), 345 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/packer/default.nix b/pkgs/development/tools/packer/default.nix index 716b489d3d770..fc8ef5ff964ab 100644 --- a/pkgs/development/tools/packer/default.nix +++ b/pkgs/development/tools/packer/default.nix @@ -1,35 +1,53 @@ -{ stdenv, lib, go, gox, fetchgit, fetchhg, fetchbzr, fetchFromGitHub }: +{ stdenv, lib, go, gox, goPackages, fetchFromGitHub +, fetchgit, fetchhg, fetchbzr, fetchsvn }: stdenv.mkDerivation rec { - name = "packer-0.8.6"; + name = "packer-${version}"; + version = "0.10.1"; src = import ./deps.nix { - inherit stdenv lib fetchgit fetchhg fetchbzr fetchFromGitHub; + inherit stdenv lib go gox goPackages fetchgit fetchhg fetchbzr fetchsvn; }; - buildInputs = [ go gox ]; + buildInputs = [ go gox goPackages.tools ]; - installPhase = '' - export GOPATH=$src - XC_ARCH=$(go env GOARCH) - XC_OS=$(go env GOOS) + configurePhase = '' + export GOPATH=$PWD/share/go + export XC_ARCH=$(go env GOARCH) + export XC_OS=$(go env GOOS) - mkdir -p $out/bin + mkdir $GOPATH/bin + + cd $GOPATH/src/github.com/mitchellh/packer + + # Don't fetch the deps + substituteInPlace "Makefile" --replace ': deps' ':' + + # Avoid using git + sed \ + -e "s|GITBRANCH:=.*||" \ + -e "s|GITSHA:=.*|GITSHA=${src.rev}|" \ + -i Makefile + sed \ + -e "s|GIT_COMMIT=.*|GIT_COMMIT=${src.rev}|" \ + -e "s|GIT_DIRTY=.*|GIT_DIRTY=|" \ + -i "scripts/build.sh" + ''; + + buildPhase = '' + make generate releasebin + ''; - cd $src/src/github.com/mitchellh/packer - gox \ - -os="''${XC_OS}" \ - -arch="''${XC_ARCH}" \ - -output "$out/bin/packer-{{.Dir}}" \ - ./... - mv $out/bin/packer{*packer*,} + installPhase = '' + mkdir -p $out/bin + mv bin/* $out/bin ''; meta = with stdenv.lib; { description = "A tool for creating identical machine images for multiple platforms from a single source configuration"; - homepage = "http://www.packer.io"; + homepage = http://www.packer.io; license = licenses.mpl20; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ cstrahan zimbatm ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/packer/deps.nix b/pkgs/development/tools/packer/deps.nix index 5f8e69679c188..2be1911cf91bb 100644 --- a/pkgs/development/tools/packer/deps.nix +++ b/pkgs/development/tools/packer/deps.nix @@ -1,507 +1,572 @@ # This file was generated by go2nix. -{ stdenv, lib, fetchFromGitHub, fetchgit, fetchhg, fetchbzr }: +{ stdenv, lib, go, gox, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: -let - goDeps = [ - { - root = "github.com/mitchellh/packer"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "packer"; - rev = "f8f7b7a34c1be06058f5aca23a51247db12cdbc5"; - sha256 = "162ja4klyb3nv44rhdg2gd3xrr4n0l0gi49cn1mr1s2h9yznphyp"; - }; - } +with goPackages; + +buildGoPackage rec { + name = "packer-${version}"; + version = "20160507-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "4e5f65131b5491ab44ff8aa0626abe4a85597ac0"; + + buildInputs = [ go gox goPackages.tools ]; + + goPackagePath = "github.com/mitchellh/packer"; + + src = fetchgit { + inherit rev; + url = "https://github.com/mitchellh/packer"; + sha256 = "1a61f022h4ygnkp1lyr7vhq5w32a3f061dymgkqmz4c3b8fzcc10"; + }; + + extraSrcs = [ { - root = "github.com/mitchellh/gox"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "gox"; - rev = "ef1967b9f538fe467e6a82fc42ec5dff966ad4ea"; - sha256 = "0i9s8fp6m2igx93ffv3rf5v5hz7cwrx7pbxrz4cg94hba3sy3nfj"; + goPackagePath = "github.com/ActiveState/tail"; + + src = fetchgit { + url = "https://github.com/ActiveState/tail"; + rev = "1a0242e795eeefe54261ff308dc685f7d29cc58c"; + sha256 = "0hhr2962xmbqzbf2p79xfrzbmjm33h61fj5zlazj7a55bwxn688d"; }; } { - root = "github.com/mitchellh/iochan"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "iochan"; - rev = "87b45ffd0e9581375c491fef3d32130bb15c5bd7"; - sha256 = "1435kdcx3j1xgr6mm5c7w7hjx015jb20yfqlkp93q143hspf02fx"; + goPackagePath = "github.com/Azure/azure-sdk-for-go"; + + src = fetchgit { + url = "https://github.com/Azure/azure-sdk-for-go"; + rev = "a1883f7b98346e4908a6c25230c95a8a3026a10c"; + sha256 = "0pxqi0b8qwcc687si3zh6w1d594rxd6kn2wzx23clbp2nc5w3wf4"; }; } { - root = "github.com/hashicorp/atlas-go"; - src = fetchFromGitHub { - owner = "hashicorp"; - repo = "atlas-go"; - rev = "d1d08e8e25f0659388ede7bb8157aaa4895f5347"; - sha256 = "0bbqh94i8qllp51ln1mmcjy5srny7s4xg0l353kccvk3c7s68m03"; + goPackagePath = "github.com/Azure/go-autorest"; + + src = fetchgit { + url = "https://github.com/Azure/go-autorest"; + rev = "b01ec2b60f95678fa759f796bac3c6b9bceaead4"; + sha256 = "1vqwy4m26ps5lmp066zgiz04s7r2dwa832zjlfmpgha7id16pa0c"; }; } { - root = "github.com/hashicorp/go-checkpoint"; - src = fetchFromGitHub { - owner = "hashicorp"; - repo = "go-checkpoint"; - rev = "88326f6851319068e7b34981032128c0b1a6524d"; - sha256 = "1npasn9lmvx57nw3wkswwvl5k0wmn01jpalbwv832x5wq4r0nsz4"; + goPackagePath = "github.com/Azure/go-ntlmssp"; + + src = fetchgit { + url = "https://github.com/Azure/go-ntlmssp"; + rev = "e0b63eb299a769ea4b04dadfe530f6074b277afb"; + sha256 = "19bn9ds12cyf8y3w5brnxwg8lwdkg16ww9hmnq14y2kmli42l14m"; }; } { - root = "github.com/hashicorp/go-msgpack"; - src = fetchFromGitHub { - owner = "hashicorp"; - repo = "go-msgpack"; - rev = "fa3f63826f7c23912c15263591e65d54d080b458"; - sha256 = "1f6rd6bm2dm2rk46x8cqrxh5nks1gpk6dvvsag7s5pdjgdxy951k"; + goPackagePath = "github.com/armon/go-radix"; + + src = fetchgit { + url = "https://github.com/armon/go-radix"; + rev = "4239b77079c7b5d1243b7b4736304ce8ddb6f0f2"; + sha256 = "0md8li1gv4ji4vr63cfa2bcmslba94dzw6awzn5ndnpmdb7np6vh"; }; } { - root = "github.com/hashicorp/go-multierror"; - src = fetchFromGitHub { - owner = "hashicorp"; - repo = "go-multierror"; - rev = "56912fb08d85084aa318edcf2bba735b97cf35c5"; - sha256 = "0s01cqdab2f7fxkkjjk2wqx05a1shnwlvfn45h2pi3i4gapvcn0r"; + goPackagePath = "github.com/aws/aws-sdk-go"; + + src = fetchgit { + url = "https://github.com/aws/aws-sdk-go"; + rev = "8041be5461786460d86b4358305fbdf32d37cfb2"; + sha256 = "06ilyl1z5mn6i0afd8ila4lr2vwqdgq5zby8v4v2g3dd39qi6jq2"; }; } { - root = "github.com/hashicorp/go-version"; - src = fetchFromGitHub { - owner = "hashicorp"; - repo = "go-version"; - rev = "999359b6b7a041ce16e695d51e92145b83f01087"; - sha256 = "0z2bzphrdkaxh5vnvjh3g25d6cykchshwwbyqgji91mpgjd30pbm"; + goPackagePath = "github.com/bgentry/speakeasy"; + + src = fetchgit { + url = "https://github.com/bgentry/speakeasy"; + rev = "36e9cfdd690967f4f690c6edcc9ffacd006014a0"; + sha256 = "0grr82p10dk51l082xaqkpq3izj5bhby3l15gj866kngybfb4nzr"; }; } { - root = "github.com/hashicorp/yamux"; - src = fetchFromGitHub { - owner = "hashicorp"; - repo = "yamux"; - rev = "ae139c4ae7fe21e9d99459d2acc57967cebb6918"; - sha256 = "1p5h2wklj8lb1vnjnd5kw7cshfmiw7jmzw9radln955hzd5xzbnl"; + goPackagePath = "github.com/dgrijalva/jwt-go"; + + src = fetchgit { + url = "https://github.com/dgrijalva/jwt-go"; + rev = "f2193411bd642f7db03249fd79d5292c9b34916a"; + sha256 = "0nkzn8i5f7x3wyi7mhhj9vpdbkdjvrb9hhrw0fqy6vcghia6dhrj"; }; } { - root = "github.com/mitchellh/cli"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "cli"; - rev = "8102d0ed5ea2709ade1243798785888175f6e415"; - sha256 = "08mj1l94pww72jy34gk9a483hpic0rrackskfw13r3ycy997w7m2"; + goPackagePath = "github.com/digitalocean/godo"; + + src = fetchgit { + url = "https://github.com/digitalocean/godo"; + rev = "6ca5b770f203b82a0fca68d0941736458efa8a4f"; + sha256 = "00di15gdv47jfdr1l8cqphmlv5bzalxk7dk53g3mif7vwhs8749j"; }; } { - root = "github.com/mitchellh/mapstructure"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "mapstructure"; - rev = "281073eb9eb092240d33ef253c404f1cca550309"; - sha256 = "1zjx9fv29639sp1fn84rxs830z7gp7bs38yd5y1hl5adb8s5x1mh"; + goPackagePath = "github.com/dylanmei/iso8601"; + + src = fetchgit { + url = "https://github.com/dylanmei/iso8601"; + rev = "2075bf119b58e5576c6ed9f867b8f3d17f2e54d4"; + sha256 = "0px5aq4w96yyjii586h3049xm7rvw5r8w7ph3axhyismrqddqgx1"; }; } { - root = "github.com/mitchellh/osext"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "osext"; - rev = "0dd3f918b21bec95ace9dc86c7e70266cfc5c702"; - sha256 = "02pczqml6p1mnfdrygm3rs02g0r65qx8v1bi3x24dx8wv9dr5y23"; + goPackagePath = "github.com/dylanmei/winrmtest"; + + src = fetchgit { + url = "https://github.com/dylanmei/winrmtest"; + rev = "025617847eb2cf9bd1d851bc3b22ed28e6245ce5"; + sha256 = "1i0wq6r1vm3nhnia3ycm5l590gyia7cwh6971ppnn4rrdmvsw2qh"; }; } { - root = "github.com/mitchellh/panicwrap"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "panicwrap"; - rev = "45cbfd3bae250c7676c077fb275be1a2968e066a"; - sha256 = "0mbha0nz6zcgp2pny2x03chq1igf9ylpz55xxq8z8g2jl6cxaghn"; + goPackagePath = "github.com/go-ini/ini"; + + src = fetchgit { + url = "https://github.com/go-ini/ini"; + rev = "afbd495e5aaea13597b5e14fe514ddeaa4d76fc3"; + sha256 = "0dl5ibrrq2i887i0bf8a9m887rhnpgv6wmwyc1sj8a75c0yd02da"; }; } { - root = "github.com/mitchellh/prefixedio"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "prefixedio"; - rev = "89d9b535996bf0a185f85b59578f2e245f9e1724"; - sha256 = "0lc64rlizb412msd32am2fixkh0536pjv7czvgyw5fskn9kgk3y2"; + goPackagePath = "github.com/google/go-querystring"; + + src = fetchgit { + url = "https://github.com/google/go-querystring"; + rev = "2a60fc2ba6c19de80291203597d752e9ba58e4c0"; + sha256 = "117211606pv0p3p4cblpnirrrassprrvvcq2svwpplsq5vff1rka"; }; } { - root = "github.com/mitchellh/reflectwalk"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "reflectwalk"; - rev = "eecf4c70c626c7cfbb95c90195bc34d386c74ac6"; - sha256 = "1nm2ig7gwlmf04w7dbqd8d7p64z2030fnnfbgnd56nmd7dz8gpxq"; + goPackagePath = "github.com/hashicorp/atlas-go"; + + src = fetchgit { + url = "https://github.com/hashicorp/atlas-go"; + rev = "95fa852edca41c06c4ce526af4bb7dec4eaad434"; + sha256 = "002lpvxi6my8dk4d4ks091ad66bj6rnz4xchbzpqwvp7n8097aqz"; }; } { - root = "github.com/mitchellh/go-fs"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "go-fs"; - rev = "a34c1b9334e86165685a9449b782f20465eb8c69"; - sha256 = "11sy85p77ffmavpiichzybrfvjm1ilsi4clx98n3363arksavs5i"; + goPackagePath = "github.com/hashicorp/errwrap"; + + src = fetchgit { + url = "https://github.com/hashicorp/errwrap"; + rev = "7554cd9344cec97297fa6649b055a8c98c2a1e55"; + sha256 = "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf"; }; } { - root = "github.com/mitchellh/goamz"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "goamz"; - rev = "caaaea8b30ee15616494ee68abd5d8ebbbef05cf"; - sha256 = "0bshq69ir9h2nszbr74yvcg5wnd9a5skfmr9bgk014k9wwk7dc72"; + goPackagePath = "github.com/hashicorp/go-checkpoint"; + + src = fetchgit { + url = "https://github.com/hashicorp/go-checkpoint"; + rev = "e4b2dc34c0f698ee04750bf2035d8b9384233e1b"; + sha256 = "0qjfk1fh5zmn04yzxn98zam8j4ay5mzd5kryazqj01hh7szd0sh5"; }; } { - root = "github.com/mitchellh/multistep"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "multistep"; - rev = "162146fc57112954184d90266f4733e900ed05a5"; - sha256 = "0ydhbxziy9204qr43pjdh88y2jg34g2mhzdapjyfpf8a1rin6dn3"; + goPackagePath = "github.com/hashicorp/go-cleanhttp"; + + src = fetchgit { + url = "https://github.com/hashicorp/go-cleanhttp"; + rev = "875fb671b3ddc66f8e2f0acc33829c8cb989a38d"; + sha256 = "0ammv6gn9cmh6padaaw76wa6xvg22a9b3sw078v9chcvfk2bggha"; }; } { - root = "github.com/ActiveState/tail"; - src = fetchFromGitHub { - owner = "ActiveState"; - repo = "tail"; - rev = "4b368d1590196ade29993d6a0896591403180bbd"; - sha256 = "183y44skn75lkpsjd3zlbx8vc3b930p3nkpc1ybq3k50s4bzhsll"; + goPackagePath = "github.com/hashicorp/go-multierror"; + + src = fetchgit { + url = "https://github.com/hashicorp/go-multierror"; + rev = "d30f09973e19c1dfcd120b2d9c4f168e68d6b5d5"; + sha256 = "0dc02mvv11hvanh12nhw8jsislnxf6i4gkh6vcil0x23kj00z3iz"; }; } { - root = "google.golang.org/api"; + goPackagePath = "github.com/hashicorp/go-rootcerts"; + src = fetchgit { - url = "https://github.com/google/google-api-go-client.git"; - rev = "a5c3e2a4792aff40e59840d9ecdff0542a202a80"; - sha256 = "1kigddnbyrl9ddpj5rs8njvf1ck54ipi4q1282k0d6b3am5qfbj8"; + url = "https://github.com/hashicorp/go-rootcerts"; + rev = "6bb64b370b90e7ef1fa532be9e591a81c3493e00"; + sha256 = "1a81fcm1i0ji2iva0dcimiichgwpbcb7lx0vyaks87zj5wf04qy9"; }; } { - root = "golang.org/x/crypto"; + goPackagePath = "github.com/hashicorp/go-version"; + src = fetchgit { - url = "https://go.googlesource.com/crypto.git"; - rev = "81bf7719a6b7ce9b665598222362b50122dfc13b"; - sha256 = "0rwzc2ls842d0g588b5xik59srwzawch3nb1dlcqwm4a1132mvmr"; + url = "https://github.com/hashicorp/go-version"; + rev = "7e3c02b30806fa5779d3bdfc152ce4c6f40e7b38"; + sha256 = "0ibqaq6z02himzci4krbfhqdi8fw2gzj9a8z375nl3qbzdgzqnm7"; }; } { - root = "golang.org/x/oauth2"; + goPackagePath = "github.com/hashicorp/yamux"; + src = fetchgit { - url = "https://go.googlesource.com/oauth2.git"; - rev = "397fe7649477ff2e8ced8fc0b2696f781e53745a"; - sha256 = "0fza0l7iwh6llkq2yzqn7dxi138vab0da64lnghfj1p71fprjzn8"; + url = "https://github.com/hashicorp/yamux"; + rev = "df949784da9ed028ee76df44652e42d37a09d7e4"; + sha256 = "080bmbdaq88ri2pn63mcjc4kq2y2sy1742ypqfgrvwssa1ynvnhy"; }; } { - root = "golang.org/x/net"; + goPackagePath = "github.com/hpcloud/tail"; + src = fetchgit { - url = "https://go.googlesource.com/net.git"; - rev = "7654728e381988afd88e58cabfd6363a5ea91810"; - sha256 = "08i6kkzbckbc5k15bdlqkbird48zmc24qr505hlxlb11djjgdiml"; + url = "https://github.com/hpcloud/tail"; + rev = "1a0242e795eeefe54261ff308dc685f7d29cc58c"; + sha256 = "0hhr2962xmbqzbf2p79xfrzbmjm33h61fj5zlazj7a55bwxn688d"; }; } { - root = "google.golang.org/appengine"; + goPackagePath = "github.com/jmespath/go-jmespath"; + src = fetchgit { - url = "https://github.com/golang/appengine.git"; - rev = "cdd515334b113fdc9b35cb1e7a3b457eeb5ad5cf"; - sha256 = "0l0rddpfbddbi8kizg2n25w7bdhf99f0iz7ghwz7fq6k4rmq44ws"; + url = "https://github.com/jmespath/go-jmespath"; + rev = "c01cf91b011868172fdcd9f41838e80c9d716264"; + sha256 = "0lp2m33a6x2pjbv5xlbbcr48qri32s84hcgm3xmgvmrx6zyi74zg"; }; } { - root = "google.golang.org/cloud"; + goPackagePath = "github.com/kardianos/osext"; + src = fetchgit { - url = "https://github.com/GoogleCloudPlatform/gcloud-golang.git"; - rev = "e34a32f9b0ecbc0784865fb2d47f3818c09521d4"; - sha256 = "1rzac44kzhd7r6abdy5qyj69y64wy9r73vnxsdalfr5m0i55fqk4"; + url = "https://github.com/kardianos/osext"; + rev = "29ae4ffbc9a6fe9fb2bc5029050ce6996ea1d3bc"; + sha256 = "1mawalaz84i16njkz6f9fd5jxhcbxkbsjnav3cmqq2dncv2hyv8a"; }; } { - root = "github.com/golang/protobuf"; - src = fetchFromGitHub { - owner = "golang"; - repo = "protobuf"; - rev = "59b73b37c1e45995477aae817e4a653c89a858db"; - sha256 = "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"; + goPackagePath = "github.com/klauspost/compress"; + + src = fetchgit { + url = "https://github.com/klauspost/compress"; + rev = "f86d2e6d8a77c6a2c4e42a87ded21c6422f7557e"; + sha256 = "17f9zxrs2k8q5kghppjnbn0xzl3i4fgl4852kj8cg94b51s5ll9f"; }; } { - root = "github.com/mitchellh/gophercloud-fork-40444fb"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "gophercloud-fork-40444fb"; - rev = "40444fbc2b10960682b34e6822eb9179216e1ae1"; - sha256 = "06bm7hfi03c75npzy51wbl9qyln35c3kzj9yn2w4fhn0k9dia9s3"; + goPackagePath = "github.com/klauspost/cpuid"; + + src = fetchgit { + url = "https://github.com/klauspost/cpuid"; + rev = "349c675778172472f5e8f3a3e0fe187e302e5a10"; + sha256 = "1y7gqpcpcb29ws77328vfm30s8nsrbxyylfpb8ksb8wwg062yv6v"; }; } { - root = "github.com/racker/perigee"; - src = fetchFromGitHub { - owner = "racker"; - repo = "perigee"; - rev = "44a7879d89b7040bcdb51164a83292ef5bf9deec"; - sha256 = "04wscffagpbcfjs6br96n46aqy43cq6ndq16nlpvank0m98jaax0"; + goPackagePath = "github.com/klauspost/crc32"; + + src = fetchgit { + url = "https://github.com/klauspost/crc32"; + rev = "999f3125931f6557b991b2f8472172bdfa578d38"; + sha256 = "1sxnq3i7wvcdqx0l91jc04nf5584ym8dxzkz3xvivm8p7kz2xjns"; }; } { - root = "github.com/going/toolkit"; - src = fetchFromGitHub { - owner = "going"; - repo = "toolkit"; - rev = "5bff591dc40da25dcc875d3fa1a3373d74d45411"; - sha256 = "15gnlqignm7xcp2chrz7d7qqlibkbfrrsvbcysk8lrj9l7md8vjf"; + goPackagePath = "github.com/klauspost/pgzip"; + + src = fetchgit { + url = "https://github.com/klauspost/pgzip"; + rev = "47f36e165cecae5382ecf1ec28ebf7d4679e307d"; + sha256 = "00jcx3pdwxi4r2l3m4b8jb17b2srckz488cmjvd1vqkr85a0jp2x"; }; } { - root = "github.com/mitchellh/go-vnc"; - src = fetchFromGitHub { - owner = "mitchellh"; - repo = "go-vnc"; - rev = "723ed9867aed0f3209a81151e52ddc61681f0b01"; - sha256 = "0nlya2rbmwb3jycqsyah1pn4386712mfrfiprprkbzcna9q7lp1h"; + goPackagePath = "github.com/kr/fs"; + + src = fetchgit { + url = "https://github.com/kr/fs"; + rev = "2788f0dbd16903de03cb8186e5c7d97b69ad387b"; + sha256 = "1c0fipl4rsh0v5liq1ska1dl83v3llab4k6lm8mvrx9c4dyp71ly"; }; } { - root = "github.com/howeyc/fsnotify"; - src = fetchFromGitHub { - owner = "howeyc"; - repo = "fsnotify"; - rev = "4894fe7efedeeef21891033e1cce3b23b9af7ad2"; - sha256 = "09r3h200nbw8a4d3rn9wxxmgma2a8i6ssaplf3zbdc2ykizsq7mn"; + goPackagePath = "github.com/masterzen/simplexml"; + + src = fetchgit { + url = "https://github.com/masterzen/simplexml"; + rev = "95ba30457eb1121fa27753627c774c7cd4e90083"; + sha256 = "0pwsis1f5n4is0nmn6dnggymj32mldhbvihv8ikn3nglgxclz4kz"; }; } { - root = "gopkg.in/tomb.v1"; + goPackagePath = "github.com/masterzen/winrm"; + src = fetchgit { - url = "https://gopkg.in/tomb.v1.git"; - rev = "dd632973f1e7218eb1089048e0798ec9ae7dceb8"; - sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv"; + url = "https://github.com/masterzen/winrm"; + rev = "54ea5d01478cfc2afccec1504bd0dfcd8c260cfa"; + sha256 = "1d4khg7c4vw645id0x301zkgidm4ah6nkmiq52j8wsivi85yhn66"; }; } { - root = "github.com/vaughan0/go-ini"; - src = fetchFromGitHub { - owner = "vaughan0"; - repo = "go-ini"; - rev = "a98ad7ee00ec53921f08832bc06ecf7fd600e6a1"; - sha256 = "1l1isi3czis009d9k5awsj4xdxgbxn4n9yqjc1ac7f724x6jacfa"; + goPackagePath = "github.com/masterzen/xmlpath"; + + src = fetchgit { + url = "https://github.com/masterzen/xmlpath"; + rev = "13f4951698adc0fa9c1dda3e275d489a24201161"; + sha256 = "1y81h7ymk3dp3w3a2iy6qd1dkm323rkxa27dzxw8vwy888j5z8bk"; }; } { - root = "github.com/aws/aws-sdk-go"; - src = fetchFromGitHub { - owner = "aws"; - repo = "aws-sdk-go"; - rev = "f096b7d61df3d7d6d97f0e701f92616d1ea5420d"; - sha256 = "0z2fknqxdyb5vw4am46cn60m15p9fjsqzpzaj2pamp436l0cpjkw"; + goPackagePath = "github.com/mattn/go-isatty"; + + src = fetchgit { + url = "https://github.com/mattn/go-isatty"; + rev = "56b76bdf51f7708750eac80fa38b952bb9f32639"; + sha256 = "0l8lcp8gcqgy0g1cd89r8vk96nami6sp9cnkx60ms1dn6cqwf5n3"; }; } { - root = "github.com/digitalocean/godo"; - src = fetchFromGitHub { - owner = "digitalocean"; - repo = "godo"; - rev = "2a0d64a42bb60a95677748a4d5729af6184330b4"; - sha256 = "0854577b08fw9bjflk044ph16p15agxhh6xbzn71rhfvxg5yg5mi"; + goPackagePath = "github.com/mitchellh/cli"; + + src = fetchgit { + url = "https://github.com/mitchellh/cli"; + rev = "5c87c51cedf76a1737bf5ca3979e8644871598a6"; + sha256 = "1ajxzh3winjnmqhd4yn6b6f155vfzi0dszhzl4a00zb5pdppp1rd"; }; } { - root = "github.com/dylanmei/winrmtest"; - src = fetchFromGitHub { - owner = "dylanmei"; - repo = "winrmtest"; - rev = "025617847eb2cf9bd1d851bc3b22ed28e6245ce5"; - sha256 = "1i0wq6r1vm3nhnia3ycm5l590gyia7cwh6971ppnn4rrdmvsw2qh"; + goPackagePath = "github.com/mitchellh/go-fs"; + + src = fetchgit { + url = "https://github.com/mitchellh/go-fs"; + rev = "a34c1b9334e86165685a9449b782f20465eb8c69"; + sha256 = "11sy85p77ffmavpiichzybrfvjm1ilsi4clx98n3363arksavs5i"; }; } { - root = "github.com/klauspost/pgzip"; - src = fetchFromGitHub { - owner = "klauspost"; - repo = "pgzip"; - rev = "47f36e165cecae5382ecf1ec28ebf7d4679e307d"; - sha256 = "1bfka02xrhp4fg9pz2v4ppxa46b59bwy5n88c7hbbxqxm8z30yca"; + goPackagePath = "github.com/mitchellh/go-homedir"; + + src = fetchgit { + url = "https://github.com/mitchellh/go-homedir"; + rev = "d682a8f0cf139663a984ff12528da460ca963de9"; + sha256 = "0vsiby9fbkaz7q067wmc6s5pzgpq4gdfx66cj2a1lbdarf7j1kbs"; }; } { - root = "github.com/masterzen/winrm"; - src = fetchFromGitHub { - owner = "masterzen"; - repo = "winrm"; - rev = "54ea5d01478cfc2afccec1504bd0dfcd8c260cfa"; - sha256 = "0qzdmsjgcf5n0jzjf4gd22lhqwn9yagynk1izjz3978gr025p2zm"; + goPackagePath = "github.com/mitchellh/go-vnc"; + + src = fetchgit { + url = "https://github.com/mitchellh/go-vnc"; + rev = "723ed9867aed0f3209a81151e52ddc61681f0b01"; + sha256 = "0nlya2rbmwb3jycqsyah1pn4386712mfrfiprprkbzcna9q7lp1h"; }; } { - root = "github.com/google/go-querystring"; - src = fetchFromGitHub { - owner = "google"; - repo = "go-querystring"; - rev = "2a60fc2ba6c19de80291203597d752e9ba58e4c0"; - sha256 = "0raf6r3dd8rxxppzrbhp1y6k5csgfkfs7b0jylj65sbg0hbzxvbr"; + goPackagePath = "github.com/mitchellh/iochan"; + + src = fetchgit { + url = "https://github.com/mitchellh/iochan"; + rev = "87b45ffd0e9581375c491fef3d32130bb15c5bd7"; + sha256 = "1435kdcx3j1xgr6mm5c7w7hjx015jb20yfqlkp93q143hspf02fx"; }; } { - root = "github.com/go-ini/ini"; - src = fetchFromGitHub { - owner = "go-ini"; - repo = "ini"; - rev = "afbd495e5aaea13597b5e14fe514ddeaa4d76fc3"; - sha256 = "0xi8zr9qw38sdbv95c2ip31yczbm4axdvmj3ljyivn9xh2nbxfia"; + goPackagePath = "github.com/mitchellh/mapstructure"; + + src = fetchgit { + url = "https://github.com/mitchellh/mapstructure"; + rev = "281073eb9eb092240d33ef253c404f1cca550309"; + sha256 = "1zjx9fv29639sp1fn84rxs830z7gp7bs38yd5y1hl5adb8s5x1mh"; }; } { - root = "github.com/klauspost/compress"; - src = fetchFromGitHub { - owner = "klauspost"; - repo = "compress"; - rev = "112706bf3743c241303219f9c5ce2e6635f69221"; - sha256 = "1gyf5hf8wivbx6s99x2rxq2a335b49av2xb43nikgbzm4qn7win7"; + goPackagePath = "github.com/mitchellh/multistep"; + + src = fetchgit { + url = "https://github.com/mitchellh/multistep"; + rev = "162146fc57112954184d90266f4733e900ed05a5"; + sha256 = "0ydhbxziy9204qr43pjdh88y2jg34g2mhzdapjyfpf8a1rin6dn3"; }; } { - root = "github.com/masterzen/simplexml"; - src = fetchFromGitHub { - owner = "masterzen"; - repo = "simplexml"; - rev = "95ba30457eb1121fa27753627c774c7cd4e90083"; - sha256 = "0pwsis1f5n4is0nmn6dnggymj32mldhbvihv8ikn3nglgxclz4kz"; + goPackagePath = "github.com/mitchellh/packer"; + + src = fetchgit { + url = "https://github.com/mitchellh/packer"; + rev = "4e5f65131b5491ab44ff8aa0626abe4a85597ac0"; + sha256 = "1a61f022h4ygnkp1lyr7vhq5w32a3f061dymgkqmz4c3b8fzcc10"; }; } { - root = "github.com/masterzen/xmlpath"; - src = fetchFromGitHub { - owner = "masterzen"; - repo = "xmlpath"; - rev = "13f4951698adc0fa9c1dda3e275d489a24201161"; - sha256 = "1y81h7ymk3dp3w3a2iy6qd1dkm323rkxa27dzxw8vwy888j5z8bk"; + goPackagePath = "github.com/mitchellh/panicwrap"; + + src = fetchgit { + url = "https://github.com/mitchellh/panicwrap"; + rev = "a1e50bc201f387747a45ffff020f1af2d8759e88"; + sha256 = "0w5y21psgrl1afsap613c3qw84ik7zhnalnv3bf6r51hyv187y69"; }; } { - root = "github.com/jmespath/go-jmespath"; - src = fetchFromGitHub { - owner = "jmespath"; - repo = "go-jmespath"; - rev = "c01cf91b011868172fdcd9f41838e80c9d716264"; - sha256 = "0gfrqwl648qngp77g8m1g9g7difggq2cac4ydjw9bpx4bd7mw1rw"; + goPackagePath = "github.com/mitchellh/prefixedio"; + + src = fetchgit { + url = "https://github.com/mitchellh/prefixedio"; + rev = "6e6954073784f7ee67b28f2d22749d6479151ed7"; + sha256 = "0an2pnnda33ns94v7x0sv9kmsnk62r8xm0cj4d69f2p63r85fdp6"; }; } { - root = "github.com/klauspost/cpuid"; - src = fetchFromGitHub { - owner = "klauspost"; - repo = "cpuid"; - rev = "349c675778172472f5e8f3a3e0fe187e302e5a10"; - sha256 = "1s8baj42k66ny77qkm3n06kwayk4srwf4b9ss42612f3h86ka5i2"; + goPackagePath = "github.com/mitchellh/reflectwalk"; + + src = fetchgit { + url = "https://github.com/mitchellh/reflectwalk"; + rev = "eecf4c70c626c7cfbb95c90195bc34d386c74ac6"; + sha256 = "1nm2ig7gwlmf04w7dbqd8d7p64z2030fnnfbgnd56nmd7dz8gpxq"; }; } { - root = "github.com/nu7hatch/gouuid"; - src = fetchFromGitHub { - owner = "nu7hatch"; - repo = "gouuid"; + goPackagePath = "github.com/nu7hatch/gouuid"; + + src = fetchgit { + url = "https://github.com/nu7hatch/gouuid"; rev = "179d4d0c4d8d407a32af483c2354df1d2c91e6c3"; - sha256 = "1isyfix5w1wm26y3a15ha3nnpsxqaxz5ngq06hnh6c6y0inl2fwj"; + sha256 = "175alsrjb2a1qzwp1l323vwwpirzaj95yfqqfi780698myhpb52k"; }; } { - root = "github.com/klauspost/crc32"; - src = fetchFromGitHub { - owner = "klauspost"; - repo = "crc32"; - rev = "999f3125931f6557b991b2f8472172bdfa578d38"; - sha256 = "00ws3hrszxdnyj0cjk9b8b44xc8x5hizm0h22x6m3bb4c5b487wv"; + goPackagePath = "github.com/packer-community/winrmcp"; + + src = fetchgit { + url = "https://github.com/packer-community/winrmcp"; + rev = "f1bcf36a69fa2945e65dd099eee11b560fbd3346"; + sha256 = "0pj5gfbmx507lp1w3gfn23x0rn0x5rih9nqij9g8d9c4m1sx3275"; }; } { - root = "github.com/pierrec/lz4"; - src = fetchFromGitHub { - owner = "pierrec"; - repo = "lz4"; + goPackagePath = "github.com/pierrec/lz4"; + + src = fetchgit { + url = "https://github.com/pierrec/lz4"; rev = "383c0d87b5dd7c090d3cddefe6ff0c2ffbb88470"; sha256 = "0l23bmzqfvgh61zlikj6iakg0kz7lybs8zf0nscylskl2hlr09rp"; }; } { - root = "github.com/packer-community/winrmcp"; - src = fetchFromGitHub { - owner = "packer-community"; - repo = "winrmcp"; - rev = "3d184cea22ee1c41ec1697e0d830ff0c78f7ea97"; - sha256 = "0g2rwwhykm1z099gwkg1nmb1ggnizqlm2pbmy3qsdvjnl5246ca4"; + goPackagePath = "github.com/pierrec/xxHash"; + + src = fetchgit { + url = "https://github.com/pierrec/xxHash"; + rev = "5a004441f897722c627870a981d02b29924215fa"; + sha256 = "146ibrgvgh61jhbbv9wks0mabkci3s0m68sg6shmlv1yixkw6gja"; }; } { - root = "github.com/dylanmei/iso8601"; - src = fetchFromGitHub { - owner = "dylanmei"; - repo = "iso8601"; - rev = "2075bf119b58e5576c6ed9f867b8f3d17f2e54d4"; - sha256 = "0px5aq4w96yyjii586h3049xm7rvw5r8w7ph3axhyismrqddqgx1"; + goPackagePath = "github.com/pkg/sftp"; + + src = fetchgit { + url = "https://github.com/pkg/sftp"; + rev = "e84cc8c755ca39b7b64f510fe1fffc1b51f210a5"; + sha256 = "0v6g9j9pnkqz72x5409y8gd8ycniziydvsjb4298dkd21d3b94dg"; }; } { - root = "github.com/pierrec/xxHash"; - src = fetchFromGitHub { - owner = "pierrec"; - repo = "xxHash"; - rev = "5a004441f897722c627870a981d02b29924215fa"; - sha256 = "146ibrgvgh61jhbbv9wks0mabkci3s0m68sg6shmlv1yixkw6gja"; + goPackagePath = "github.com/rackspace/gophercloud"; + + src = fetchgit { + url = "https://github.com/rackspace/gophercloud"; + rev = "53d1dc4400e1ebcd37a0e01d8c1fe2f4db3b99d2"; + sha256 = "0rdyljj395k1w7xnxw1i76w29fgl517mvs7bsqll35lss2gbhan2"; }; } { - root = "github.com/satori/go.uuid"; - src = fetchFromGitHub { - owner = "satori"; - repo = "go.uuid"; + goPackagePath = "github.com/satori/go.uuid"; + + src = fetchgit { + url = "https://github.com/satori/go.uuid"; rev = "d41af8bb6a7704f00bc3b7cba9355ae6a5a80048"; sha256 = "0lw8k39s7hab737rn4nngpbsganrniiv7px6g41l6f6vci1skyn2"; }; } { - root = "github.com/rackspace/gophercloud"; - src = fetchFromGitHub { - owner = "rackspace"; - repo = "gophercloud"; - rev = "680aa02616313d8399abc91f17a444cf9292f0e1"; - sha256 = "0pxzvhh6l1gfn31k6g8fz3x4b6mz88cx2rgpims0ys5cl212zrp1"; + goPackagePath = "github.com/tent/http-link-go"; + + src = fetchgit { + url = "https://github.com/tent/http-link-go"; + rev = "ac974c61c2f990f4115b119354b5e0b47550e888"; + sha256 = "0iwq842pvp5y77cr25yanj1cgqzmkz1aw6jzgjrrmlqqkdad5z8c"; }; } { - root = "gopkg.in/fsnotify.v0"; - src = fetchFromGitHub { - owner = "go-fsnotify"; - repo = "fsnotify"; - rev = "ea925a0a47d225b2ca7f9932b01d2ed4f3ec74f6"; - sha256 = "15wqjpkfzsxnaxbz6y4r91hw6812g3sc4ipagxw1bya9klbnkdc9"; + goPackagePath = "github.com/ugorji/go"; + + src = fetchgit { + url = "https://github.com/ugorji/go"; + rev = "646ae4a518c1c3be0739df898118d9bccf993858"; + sha256 = "0njncpdbh115l5mxyks08jh91kdmy0mvbmxj9mr1psv5k97gf0pn"; }; } { - root = "github.com/tent/http-link-go"; - src = fetchFromGitHub { - owner = "tent"; - repo = "http-link-go"; - rev = "ac974c61c2f990f4115b119354b5e0b47550e888"; - sha256 = "1fph21b6vp4cm73fkkykffggi57m656x9fd1k369fr6jbvq5fffj"; + goPackagePath = "golang.org/x/crypto"; + + src = fetchgit { + url = "https://go.googlesource.com/crypto"; + rev = "1f22c0103821b9390939b6776727195525381532"; + sha256 = "05ahvn9g9cj7797n8ryfxv2g26v3lx1pza9d9pg97iw0rvar9i1h"; }; } - ]; + { + goPackagePath = "golang.org/x/net"; -in + src = fetchgit { + url = "https://go.googlesource.com/net"; + rev = "6ccd6698c634f5d835c40c1c31848729e0cecda1"; + sha256 = "05c7kdjkvf7hrdiv1k12nyss6s8chhakqn1adxbrrahr6rl1nhpj"; + }; + } + { + goPackagePath = "golang.org/x/oauth2"; -stdenv.mkDerivation rec { - name = "go-deps"; + src = fetchgit { + url = "https://go.googlesource.com/oauth2"; + rev = "8a57ed94ffd43444c0879fe75701732a38afc985"; + sha256 = "10pxnbsy1lnx7a1x6g3cna5gdm11aal1r446dpmpgj94xiw96mxv"; + }; + } + { + goPackagePath = "google.golang.org/api"; - buildCommand = - lib.concatStrings - (map (dep: '' - mkdir -p $out/src/`dirname ${dep.root}` - ln -s ${dep.src} $out/src/${dep.root} - '') goDeps); + src = fetchgit { + url = "https://code.googlesource.com/google-api-go-client"; + rev = "ddff2aff599105a55549cf173852507dfa094b7f"; + sha256 = "03058zh0v997fxmlvd8r4m63r3z0fzg6fval6wnxw3wq22m7h3yx"; + }; + } + { + goPackagePath = "google.golang.org/cloud"; + + src = fetchgit { + url = "https://code.googlesource.com/gocloud"; + rev = "5a3b06f8b5da3b7c3a93da43163b872c86c509ef"; + sha256 = "03zrw3mgh82gvfgz17k97n8hivnvvplc42c7vyr76i90n1mv29g7"; + }; + } + { + goPackagePath = "gopkg.in/fsnotify.v1"; + + src = fetchgit { + url = "https://gopkg.in/fsnotify.v1"; + rev = "8611c35ab31c1c28aa903d33cf8b6e44a399b09e"; + sha256 = "17a7z88860hhmbgmpc2si1n67s8zk3vzwv5r4wyhrsljcq0bcv9q"; + }; + } + { + goPackagePath = "gopkg.in/tomb.v1"; + + src = fetchgit { + url = "https://gopkg.in/tomb.v1"; + rev = "dd632973f1e7218eb1089048e0798ec9ae7dceb8"; + sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv"; + }; + } + { + goPackagePath = "gopkg.in/xmlpath.v2"; + + src = fetchgit { + url = "https://gopkg.in/xmlpath.v2"; + rev = "860cbeca3ebcc600db0b213c0e83ad6ce91f5739"; + sha256 = "0jgvd0y78fir4vkcj8acs0pdvlc0xr7i7cspbkm2yjm8wv23p63h"; + }; + } + ]; } -- cgit 1.4.1 From 479a40182a523bece48bb9c280b311ba5bdaadc9 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 12 May 2016 23:41:13 +0200 Subject: nghttp2: 1.9.2 -> 1.10.0 --- pkgs/development/libraries/nghttp2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/nghttp2/default.nix b/pkgs/development/libraries/nghttp2/default.nix index 29175fbb7d455..b690a55bb9285 100644 --- a/pkgs/development/libraries/nghttp2/default.nix +++ b/pkgs/development/libraries/nghttp2/default.nix @@ -7,12 +7,12 @@ stdenv.mkDerivation rec { name = "nghttp2-${version}"; - version = "1.9.2"; + version = "1.10.0"; # Don't use fetchFromGitHub since this needs a bootstrap curl src = fetchurl { url = "https://github.com/nghttp2/nghttp2/releases/download/v${version}/nghttp2-${version}.tar.bz2"; - sha256 = "1jnms0mmf73cwdqvbzpdyi974f8xq7p8bxgba2ippw70pz8y0ac0"; + sha256 = "1m95j3lhxp6k16aa2m03rsky13nmj8ky1kk96cwl88vbsrliz4mh"; }; # Configure script searches for a symbol which does not exist in jemalloc on Darwin -- cgit 1.4.1 From 7a2accbf5a198a6dbae3cf5c5a619a93e121daef Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 12 May 2016 23:41:31 +0200 Subject: jemalloc: 4.0.3 -> 4.1.1 --- pkgs/development/libraries/jemalloc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/jemalloc/default.nix b/pkgs/development/libraries/jemalloc/default.nix index 4a4bc0392290e..9b54ce482394a 100644 --- a/pkgs/development/libraries/jemalloc/default.nix +++ b/pkgs/development/libraries/jemalloc/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "jemalloc-4.0.3"; + name = "jemalloc-4.1.1"; src = fetchurl { url = "http://www.canonware.com/download/jemalloc/${name}.tar.bz2"; - sha256 = "1mpnfaniaybv8kh7yjqq2g595l2i08m7adg238k5igzf61n6ixzi"; + sha256 = "1bmdr51wxiir595k2r6z9a7rcgm42kkgnr586xir7vdcndr3pwf8"; }; meta = with stdenv.lib; { -- cgit 1.4.1 From 468d35fc8e2f397e1b94aa939d91780f031f86a2 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 12 May 2016 23:51:32 +0200 Subject: perl: 5.22.1 -> 5.22.2 --- pkgs/development/interpreters/perl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/perl/default.nix b/pkgs/development/interpreters/perl/default.nix index a853ca4eb777f..d3ee18e2ac874 100644 --- a/pkgs/development/interpreters/perl/default.nix +++ b/pkgs/development/interpreters/perl/default.nix @@ -125,8 +125,8 @@ in rec { }; perl522 = common { - version = "5.22.1"; - sha256 = "09wg24w5syyafyv87l6z8pxwz4bjgcdj996bx5844k6m9445sirb"; + version = "5.22.2"; + sha256 = "1hl3v85ggm027v9h2ycas4z5i3401s2k2l3qpnw8q5mahmiikbc1"; }; } -- cgit 1.4.1 From d51056383731b41a027778249e356bacc46a9385 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 13 May 2016 17:23:23 +0200 Subject: oraclejdk8: jmc is only available in jdk, not in jre --- pkgs/development/compilers/oraclejdk/jdk-linux-base.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix index 79d962cd7ceb9..775971821aaef 100644 --- a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix +++ b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix @@ -165,8 +165,10 @@ let result = stdenv.mkDerivation rec { EOF # Oracle Java Mission Control needs to know where libgtk-x11 and related is - wrapProgram "$out/bin/jmc" \ - --suffix-each LD_LIBRARY_PATH ':' "${rpath}" \ + if test -n "$installjdk"; then + wrapProgram "$out/bin/jmc" \ + --suffix-each LD_LIBRARY_PATH ':' "${rpath}" + fi ''; inherit installjdk pluginSupport; -- cgit 1.4.1 From 9e56f3a9b50d56afd26440f697ac73bd73eaf2ee Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 13 May 2016 17:23:43 +0200 Subject: oraclejdk8: 8u91 -> 8u92 --- pkgs/development/compilers/oraclejdk/jdk8-linux.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/oraclejdk/jdk8-linux.nix b/pkgs/development/compilers/oraclejdk/jdk8-linux.nix index 0a9792f2b4a64..d6d783b8a309f 100644 --- a/pkgs/development/compilers/oraclejdk/jdk8-linux.nix +++ b/pkgs/development/compilers/oraclejdk/jdk8-linux.nix @@ -1,9 +1,9 @@ import ./jdk-linux-base.nix { productVersion = "8"; - patchVersion = "91"; + patchVersion = "92"; downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html; - sha256_i686 = "0lndni81vfpz2l6zb8zsshaavk0483q5jc8yzj4fdjv6wnshbkay"; - sha256_x86_64 = "0lkm3fz1vdi69f34sysavvh3abx603j1frc9hxvr08pwvmm536vg"; + sha256_i686 = "095j2hh2xas05jajy4qdj9hxq3k460x4m12rcaxkaxw754imj0vj"; + sha256_x86_64 = "11wrqd3qbkhimbw9n4g9i0635pjhhnijwxyid7lvjv26kdgg58vr"; jceName = "jce_policy-8.zip"; jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html; sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk"; -- cgit 1.4.1 From 4d750ae2c7e73154bd8af94f112b220b017f0de2 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 13 May 2016 00:07:42 +0200 Subject: php: 7.0.5 -> 7.0.6 --- pkgs/development/interpreters/php/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index 8c51cd2b3a8c2..5856604c53da6 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -302,8 +302,8 @@ in { }; php70 = generic { - version = "7.0.5"; - sha256 = "1s8xnnxwq5big2rnbp3w7zw7wh5d5ra9p2q9bxwylds5wrzsy29c"; + version = "7.0.6"; + sha256 = "1dr9cglqvw3n1ln1fmkmp16lmwz2dd2n2akl3s68ap4nm69g3p8l"; }; } -- cgit 1.4.1 From 4a3a92d5c8996a713269ae6d8ab227b35df5f16b Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 12 May 2016 03:21:51 +0200 Subject: jenkins: 1.653 -> 2.3 --- pkgs/development/tools/continuous-integration/jenkins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index ca154469dfd02..827fb4e05a50e 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jenkins-${version}"; - version = "1.653"; + version = "2.3"; src = fetchurl { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; - sha256 = "1z24vddr8v64g4x3s7qx5n30sjcm2xpz7mn23zlc0n8lhnmkzqs8"; + sha256 = "0x59dbvh6y25ki5jy51djbfbhf8g2j3yd9f3n66f7bkdfw8p78g1"; }; meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; -- cgit 1.4.1 From 2d727237261d6702f55fc7ce0a982e53b2ce59bb Mon Sep 17 00:00:00 2001 From: vbgl Date: Fri, 13 May 2016 18:08:17 +0200 Subject: ocaml-batteries: 2.4.0 -> 2.5.2 (#15424) --- pkgs/development/ocaml-modules/batteries/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/ocaml-modules/batteries/default.nix b/pkgs/development/ocaml-modules/batteries/default.nix index ae4dcc9307651..0c01a946e5adf 100644 --- a/pkgs/development/ocaml-modules/batteries/default.nix +++ b/pkgs/development/ocaml-modules/batteries/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchzip, ocaml, findlib, qtest }: -let version = "2.4.0"; in +let version = "2.5.2"; in stdenv.mkDerivation { name = "ocaml-batteries-${version}"; src = fetchzip { url = "https://github.com/ocaml-batteries-team/batteries-included/archive/v${version}.tar.gz"; - sha256 = "0bxp5d05w1igwh9vcgvhd8sd6swf2ddsjphw0mkakdck9afnimmd"; + sha256 = "01v7sp8vsqlfrmpji5pkrsjl43r3q8hk1a4z4lmyy9y2i0fqwl07"; }; buildInputs = [ ocaml findlib qtest ]; -- cgit 1.4.1 From c40323558599a4762b9caa7b2d8482f409cf7938 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 14 May 2016 02:03:54 +0300 Subject: xgboost: init at 2016-05-14 --- pkgs/development/libraries/xgboost/default.nix | 30 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/python-packages.nix | 22 +++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 pkgs/development/libraries/xgboost/default.nix (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/xgboost/default.nix b/pkgs/development/libraries/xgboost/default.nix new file mode 100644 index 0000000000000..0006792ed2aa3 --- /dev/null +++ b/pkgs/development/libraries/xgboost/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchgit }: + +stdenv.mkDerivation rec { + name = "xgboost-${version}"; + version = "2016-05-14"; + + # needs submodules + src = fetchgit { + url = "https://github.com/dmlc/xgboost"; + rev = "9c26566eb09733423f821f139938ff4105c3775d"; + sha256 = "0nmhgl70mnc2igkfppdw2in66zdczzsqxrlsb4bknrglpp3axnm1"; + }; + + enableParallelBuilding = true; + + installPhase = '' + mkdir -p $out + cp -r include $out + install -Dm755 lib/libxgboost.so $out/lib/libxgboost.so + install -Dm755 xgboost $out/bin/xgboost + ''; + + meta = with stdenv.lib; { + description = "Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library"; + homepage = "https://github.com/dmlc/xgboost"; + license = licenses.apl20; + platforms = platforms.linux; + maintainers = with maintainers; [ abbradar ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b31b2b8c8fdbe..690dab41d4135 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9297,6 +9297,8 @@ in xalanc = callPackage ../development/libraries/xalanc {}; + xgboost = callPackage ../development/libraries/xgboost { }; + # Avoid using this. It isn't really a wrapper anymore, but we keep the name. xlibsWrapper = callPackage ../development/libraries/xlibs-wrapper { packages = [ diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c2eec6d9d2e82..1df9397f33e0b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -26610,6 +26610,28 @@ in modules // { }; }; + xgboost = buildPythonPackage rec { + name = "xgboost-${version}"; + + inherit (pkgs.xgboost) version src meta; + + propagatedBuildInputs = with self; [ scipy ]; + buildInputs = with self; [ nose ]; + + postPatch = '' + cd python-package + + cat <xgboost/libpath.py + def find_lib_path(): + return ["${pkgs.xgboost}/lib/libxgboost.so"] + EOF + ''; + + postInstall = '' + rm -rf $out/xgboost + ''; + }; + xkcdpass = buildPythonPackage rec { name = "xkcdpass-${version}"; version = "1.4.2"; -- cgit 1.4.1 From 4cb218b76ae70d237395677d318f52933062d5f8 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 14 May 2016 02:38:12 +0300 Subject: xgboost: fix license Looks like `nix-env -qaP --drv-path` is not enough and one need to either add `--json` too to catch problems like this... or just use `nox-review wip`. --- pkgs/development/libraries/xgboost/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/xgboost/default.nix b/pkgs/development/libraries/xgboost/default.nix index 0006792ed2aa3..afe4ce4448b16 100644 --- a/pkgs/development/libraries/xgboost/default.nix +++ b/pkgs/development/libraries/xgboost/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library"; homepage = "https://github.com/dmlc/xgboost"; - license = licenses.apl20; + license = licenses.asl20; platforms = platforms.linux; maintainers = with maintainers; [ abbradar ]; }; -- cgit 1.4.1 From 4ed271893f05acd172ed5e246f7b8d90ef9e2adb Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 14 May 2016 04:04:41 +0300 Subject: pythonPackages.pygobject{,3}: let python.buildEnv detect it --- pkgs/development/python-modules/pygobject/3.nix | 2 ++ pkgs/development/python-modules/pygobject/default.nix | 2 ++ 2 files changed, 4 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/python-modules/pygobject/3.nix b/pkgs/development/python-modules/pygobject/3.nix index 6a58550e7c58c..77a5299064698 100644 --- a/pkgs/development/python-modules/pygobject/3.nix +++ b/pkgs/development/python-modules/pygobject/3.nix @@ -13,6 +13,8 @@ stdenv.mkDerivation rec { buildInputs = [ python pkgconfig glib gobjectIntrospection ]; propagatedBuildInputs = [ pycairo cairo ]; + passthru.pythonPath = []; + meta = { homepage = http://live.gnome.org/PyGObject; description = "Python bindings for Glib"; diff --git a/pkgs/development/python-modules/pygobject/default.nix b/pkgs/development/python-modules/pygobject/default.nix index fb2df329fbc1b..b5cad09d9e15b 100644 --- a/pkgs/development/python-modules/pygobject/default.nix +++ b/pkgs/development/python-modules/pygobject/default.nix @@ -20,6 +20,8 @@ stdenv.mkDerivation rec { buildInputs = [ python pkgconfig glib ]; + passthru.pythonPath = []; + # in a "normal" setup, pygobject and pygtk are installed into the # same site-packages: we need a pth file for both. pygtk.py would be # used to select a specific version, in our setup it should have no -- cgit 1.4.1 From 38ef2df4a66faf492c717cbb9fe57591e6c8845f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 14 May 2016 04:22:50 +0300 Subject: pythonPackages.pyqt{,5}: let python.buildEnv detect it --- pkgs/development/python-modules/pyqt/4.x.nix | 2 ++ pkgs/development/python-modules/pyqt/5.x.nix | 2 ++ 2 files changed, 4 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/python-modules/pyqt/4.x.nix b/pkgs/development/python-modules/pyqt/4.x.nix index 31294c8dc98d4..b2d5b93d9f784 100644 --- a/pkgs/development/python-modules/pyqt/4.x.nix +++ b/pkgs/development/python-modules/pyqt/4.x.nix @@ -40,6 +40,8 @@ stdenv.mkDerivation { enableParallelBuilding = true; + passthru.pythonPath = []; + meta = { description = "Python bindings for Qt"; license = "GPL"; diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix index 0e5f5604a9886..71fb5cb36570b 100644 --- a/pkgs/development/python-modules/pyqt/5.x.nix +++ b/pkgs/development/python-modules/pyqt/5.x.nix @@ -53,4 +53,6 @@ in stdenv.mkDerivation { ''; enableParallelBuilding = true; + + passthru.pythonPath = []; } -- cgit 1.4.1 From c6a61092e78873ff0300e1660838194693a53911 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 14 May 2016 04:29:22 +0300 Subject: pythonPackages.sip: let python.buildEnv detect it --- pkgs/development/python-modules/sip/4.16.nix | 2 ++ pkgs/development/python-modules/sip/default.nix | 2 ++ 2 files changed, 4 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/python-modules/sip/4.16.nix b/pkgs/development/python-modules/sip/4.16.nix index adb6c7ef80d68..2861816885f31 100644 --- a/pkgs/development/python-modules/sip/4.16.nix +++ b/pkgs/development/python-modules/sip/4.16.nix @@ -16,6 +16,8 @@ if isPyPy then throw "sip not supported for interpreter ${python.executable}" el buildInputs = [ python ]; + passthru.pythonPath = []; + meta = with stdenv.lib; { description = "Creates C++ bindings for Python modules"; homepage = "http://www.riverbankcomputing.co.uk/"; diff --git a/pkgs/development/python-modules/sip/default.nix b/pkgs/development/python-modules/sip/default.nix index cf3a0149844bb..6c455b3bb1bd3 100644 --- a/pkgs/development/python-modules/sip/default.nix +++ b/pkgs/development/python-modules/sip/default.nix @@ -19,6 +19,8 @@ if isPyPy then throw "sip not supported for interpreter ${python.executable}" el buildInputs = [ python ]; + passthru.pythonPath = []; + meta = with stdenv.lib; { description = "Creates C++ bindings for Python modules"; homepage = "http://www.riverbankcomputing.co.uk/"; -- cgit 1.4.1 From f8bdd7969d1af9b1f4ab5f968fae336190c1ae1c Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 9 May 2016 14:56:41 +0200 Subject: gd: 2.0.35 -> 2.1.1 Upstream claims 2.1 is fully API compatible with 2.0 https://libgd.github.io/release-2.1.0.html https://libgd.github.io/release-2.1.1.html Also includes meta updates, adds pkg-config to the build environment, for proper detection of dependencies, and adds optional support for tiff and xpm image formats. --- pkgs/development/libraries/gd/default.nix | 35 +++++++++++++++++++------------ pkgs/top-level/all-packages.nix | 5 ++++- 2 files changed, 26 insertions(+), 14 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/gd/default.nix b/pkgs/development/libraries/gd/default.nix index 7c3c53626b5d4..c58bd11bc6459 100644 --- a/pkgs/development/libraries/gd/default.nix +++ b/pkgs/development/libraries/gd/default.nix @@ -1,21 +1,30 @@ -{stdenv, fetchurl, zlib, libpng, freetype, libjpeg, fontconfig}: +{ stdenv, fetchurl +, pkgconfig +, zlib +, libjpeg +, libpng +, libtiff ? null +, libXpm ? null +, fontconfig +, freetype +}: -stdenv.mkDerivation { - name = "gd-2.0.35"; +stdenv.mkDerivation rec { + name = "gd-${version}"; + version = "2.1.1"; src = fetchurl { - url = http://www.libgd.org/releases/gd-2.0.35.tar.bz2; - sha256 = "1y80lcmb8qbzf0a28841zxhq9ndfapmh2fsrqfd9lalxfj8288mz"; + url = "https://github.com/libgd/libgd/releases/download/${name}/libgd-${version}.tar.xz"; + sha256 = "11djy9flzxczphigqgp7fbbblbq35gqwwhn9xfcckawlapa1xnls"; }; - - buildInputs = [zlib libpng freetype]; - - propagatedBuildInputs = [libjpeg fontconfig]; # urgh - configureFlags = "--without-x"; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ zlib fontconfig freetype libjpeg libpng libtiff libXpm ]; - meta = { - homepage = http://www.libgd.org/; - description = "An open source code library for the dynamic creation of images by programmers"; + meta = with stdenv.lib; { + homepage = https://libgd.github.io/; + description = "A dynamic image creation library"; + license = licenses.free; # some custom license + platforms = platforms.unix; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 690dab41d4135..7908a6381f911 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6963,7 +6963,10 @@ in gettext = callPackage ../development/libraries/gettext { }; - gd = callPackage ../development/libraries/gd { }; + gd = callPackage ../development/libraries/gd { + libtiff = null; + libXpm = null; + }; gdal = callPackage ../development/libraries/gdal { }; -- cgit 1.4.1 From 220836d06650076cbb4d879e5bb8efddd3ce1bcd Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 13 May 2016 17:12:07 +0200 Subject: gd: apply patch for CVE-2016-3074 from upstream Source: https://github.com/libgd/libgd/commit/2bb97f407c1145c850416a3bfbcc8cf124e68a19.patch The original patch contains binary data, however, which is not supported by `patch`; we could use `git apply` here, of course, but it was simpler to just copy-paste only the fix into a separate file and include it in the repo. --- pkgs/development/libraries/gd/CVE-2016-3074.patch | 13 +++++++++++++ pkgs/development/libraries/gd/default.nix | 6 +++++- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/libraries/gd/CVE-2016-3074.patch (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/gd/CVE-2016-3074.patch b/pkgs/development/libraries/gd/CVE-2016-3074.patch new file mode 100644 index 0000000000000..76994697729bf --- /dev/null +++ b/pkgs/development/libraries/gd/CVE-2016-3074.patch @@ -0,0 +1,13 @@ +diff --git a/src/gd_gd2.c b/src/gd_gd2.c +index 6f28461..a50b33d 100644 +--- a/src/gd_gd2.c ++++ b/src/gd_gd2.c +@@ -165,6 +165,8 @@ _gd2GetHeader (gdIOCtxPtr in, int *sx, int *sy, + if (gdGetInt (&cidx[i].size, in) != 1) { + goto fail2; + }; ++ if (cidx[i].offset < 0 || cidx[i].size < 0) ++ goto fail2; + }; + *chunkIdx = cidx; + }; diff --git a/pkgs/development/libraries/gd/default.nix b/pkgs/development/libraries/gd/default.nix index c58bd11bc6459..bf3b63db399bd 100644 --- a/pkgs/development/libraries/gd/default.nix +++ b/pkgs/development/libraries/gd/default.nix @@ -12,12 +12,16 @@ stdenv.mkDerivation rec { name = "gd-${version}"; version = "2.1.1"; - + src = fetchurl { url = "https://github.com/libgd/libgd/releases/download/${name}/libgd-${version}.tar.xz"; sha256 = "11djy9flzxczphigqgp7fbbblbq35gqwwhn9xfcckawlapa1xnls"; }; + patches = [ + ./CVE-2016-3074.patch + ]; + nativeBuildInputs = [ pkgconfig ]; buildInputs = [ zlib fontconfig freetype libjpeg libpng libtiff libXpm ]; -- cgit 1.4.1 From 7e4db700dc40d065ec2d594ecca90dc50d2a8c73 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 14 May 2016 08:25:36 +0200 Subject: libksba: 1.3.3 -> 1.3.4 Contains a fix for https://access.redhat.com/security/cve/CVE-2016-4574 --- pkgs/development/libraries/libksba/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libksba/default.nix b/pkgs/development/libraries/libksba/default.nix index 26aa974a7eed1..9171471882ca3 100644 --- a/pkgs/development/libraries/libksba/default.nix +++ b/pkgs/development/libraries/libksba/default.nix @@ -1,18 +1,18 @@ { stdenv, fetchurl, libgpgerror }: stdenv.mkDerivation rec { - name = "libksba-1.3.3"; + name = "libksba-1.3.4"; src = fetchurl { url = "mirror://gnupg/libksba/${name}.tar.bz2"; - sha256 = "11kp3h9l3b8ikydkcdkwgx45r662zi30m26ra5llyhfh6kz5yzqc"; + sha256 = "0kxdb02z41cwm1xbwfwj9nbc0dzjhwyq8c475mlhhmpcxcy8ihpn"; }; propagatedBuildInputs = [ libgpgerror ]; meta = with stdenv.lib; { - homepage = http://www.gnupg.org; - description = "CMS and X.509 access library under development"; + homepage = https://www.gnupg.org; + description = "CMS and X.509 access library"; platforms = platforms.all; license = licenses.lgpl3; maintainers = with maintainers; [ wkennington ]; -- cgit 1.4.1 From 64f5845418a618c510e64c5daac7b194b4d9658e Mon Sep 17 00:00:00 2001 From: "Scott R. Parish" Date: Fri, 13 May 2016 23:16:03 -0700 Subject: glibc: patch 2.23 for CVE-2016-3075, CVE-2016-1234, CVE-2016-3706 This addresses the following security advisories: + CVE-2016-3075: Stack overflow in _nss_dns_getnetbyname_r + CVE-2016-1234: glob: buffer overflow with GLOB_ALTDIRFUNC due to incorrect NAME_MAX limit assumption + CVE-2016-3706: getaddrinfo: stack overflow in hostent conversion Patches cherry-picked from glibc's release/2.23/master branch. The "glob-simplify-interface.patch" was a dependency for "cve-2016-1234.patch". --- pkgs/development/libraries/glibc/common.nix | 5 + .../libraries/glibc/cve-2016-1234.patch | 372 +++++++++++++++++++++ .../libraries/glibc/cve-2016-3075.patch | 35 ++ .../libraries/glibc/cve-2016-3706.patch | 181 ++++++++++ .../libraries/glibc/glob-simplify-interface.patch | 216 ++++++++++++ 5 files changed, 809 insertions(+) create mode 100644 pkgs/development/libraries/glibc/cve-2016-1234.patch create mode 100644 pkgs/development/libraries/glibc/cve-2016-3075.patch create mode 100644 pkgs/development/libraries/glibc/cve-2016-3706.patch create mode 100644 pkgs/development/libraries/glibc/glob-simplify-interface.patch (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix index 893f65c3e205f..a189edb9832df 100644 --- a/pkgs/development/libraries/glibc/common.nix +++ b/pkgs/development/libraries/glibc/common.nix @@ -49,6 +49,11 @@ stdenv.mkDerivation ({ "/bin:/usr/bin", which is inappropriate on NixOS machines. This patch extends the search path by "/run/current-system/sw/bin". */ ./fix_path_attribute_in_getconf.patch + + ./cve-2016-3075.patch + ./glob-simplify-interface.patch + ./cve-2016-1234.patch + ./cve-2016-3706.patch ]; postPatch = diff --git a/pkgs/development/libraries/glibc/cve-2016-1234.patch b/pkgs/development/libraries/glibc/cve-2016-1234.patch new file mode 100644 index 0000000000000..d98577868a9c0 --- /dev/null +++ b/pkgs/development/libraries/glibc/cve-2016-1234.patch @@ -0,0 +1,372 @@ +commit c87db3fcbdf890990b44d956621763538c878cd3 +Author: Florian Weimer +Date: Wed May 4 12:09:35 2016 +0200 + + CVE-2016-1234: glob: Do not copy d_name field of struct dirent [BZ #19779] + + Instead, we store the data we need from the return value of + readdir in an object of the new type struct readdir_result. + This type is independent of the layout of struct dirent. + + (cherry picked from commit 5171f3079f2cc53e0548fc4967361f4d1ce9d7ea) + +diff --git a/posix/bug-glob2.c b/posix/bug-glob2.c +index 0fdc5d0..5873e08 100644 +--- a/posix/bug-glob2.c ++++ b/posix/bug-glob2.c +@@ -40,6 +40,17 @@ + # define PRINTF(fmt, args...) + #endif + ++#define LONG_NAME \ ++ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \ ++ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \ ++ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \ ++ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \ ++ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \ ++ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \ ++ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \ ++ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \ ++ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \ ++ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + static struct + { +@@ -58,6 +69,7 @@ static struct + { ".", 3, DT_DIR, 0755 }, + { "..", 3, DT_DIR, 0755 }, + { "a", 3, DT_REG, 0644 }, ++ { LONG_NAME, 3, DT_REG, 0644 }, + { "unreadable", 2, DT_DIR, 0111 }, + { ".", 3, DT_DIR, 0111 }, + { "..", 3, DT_DIR, 0755 }, +@@ -75,7 +87,7 @@ typedef struct + int level; + int idx; + struct dirent d; +- char room_for_dirent[NAME_MAX]; ++ char room_for_dirent[sizeof (LONG_NAME)]; + } my_DIR; + + +diff --git a/posix/glob.c b/posix/glob.c +index 9ae76ac..ea4b0b6 100644 +--- a/posix/glob.c ++++ b/posix/glob.c +@@ -24,7 +24,9 @@ + #include + #include + #include ++#include + #include ++#include + + /* Outcomment the following line for production quality code. */ + /* #define NDEBUG 1 */ +@@ -73,69 +75,8 @@ + # endif /* HAVE_VMSDIR_H */ + #endif + +- +-/* When used in the GNU libc the symbol _DIRENT_HAVE_D_TYPE is available +- if the `d_type' member for `struct dirent' is available. +- HAVE_STRUCT_DIRENT_D_TYPE plays the same role in GNULIB. */ +-#if defined _DIRENT_HAVE_D_TYPE || defined HAVE_STRUCT_DIRENT_D_TYPE +-/* True if the directory entry D must be of type T. */ +-# define DIRENT_MUST_BE(d, t) ((d)->d_type == (t)) +- +-/* True if the directory entry D might be a symbolic link. */ +-# define DIRENT_MIGHT_BE_SYMLINK(d) \ +- ((d)->d_type == DT_UNKNOWN || (d)->d_type == DT_LNK) +- +-/* True if the directory entry D might be a directory. */ +-# define DIRENT_MIGHT_BE_DIR(d) \ +- ((d)->d_type == DT_DIR || DIRENT_MIGHT_BE_SYMLINK (d)) +- +-#else /* !HAVE_D_TYPE */ +-# define DIRENT_MUST_BE(d, t) false +-# define DIRENT_MIGHT_BE_SYMLINK(d) true +-# define DIRENT_MIGHT_BE_DIR(d) true +-#endif /* HAVE_D_TYPE */ +- +-/* If the system has the `struct dirent64' type we use it internally. */ +-#if defined _LIBC && !defined COMPILE_GLOB64 +- +-# if (defined POSIX || defined WINDOWS32) && !defined __GNU_LIBRARY__ +-# define CONVERT_D_INO(d64, d32) +-# else +-# define CONVERT_D_INO(d64, d32) \ +- (d64)->d_ino = (d32)->d_ino; +-# endif +- +-# ifdef _DIRENT_HAVE_D_TYPE +-# define CONVERT_D_TYPE(d64, d32) \ +- (d64)->d_type = (d32)->d_type; +-# else +-# define CONVERT_D_TYPE(d64, d32) +-# endif +- +-# define CONVERT_DIRENT_DIRENT64(d64, d32) \ +- strcpy ((d64)->d_name, (d32)->d_name); \ +- CONVERT_D_INO (d64, d32) \ +- CONVERT_D_TYPE (d64, d32) +-#endif +- +- +-#if (defined POSIX || defined WINDOWS32) && !defined __GNU_LIBRARY__ +-/* Posix does not require that the d_ino field be present, and some +- systems do not provide it. */ +-# define REAL_DIR_ENTRY(dp) 1 +-#else +-# define REAL_DIR_ENTRY(dp) (dp->d_ino != 0) +-#endif /* POSIX */ +- + #include + #include +- +-/* NAME_MAX is usually defined in or . */ +-#include +-#ifndef NAME_MAX +-# define NAME_MAX (sizeof (((struct dirent *) 0)->d_name)) +-#endif +- + #include + + #ifdef _LIBC +@@ -180,8 +121,111 @@ + + static const char *next_brace_sub (const char *begin, int flags) __THROWNL; + ++/* A representation of a directory entry which does not depend on the ++ layout of struct dirent, or the size of ino_t. */ ++struct readdir_result ++{ ++ const char *name; ++# if defined _DIRENT_HAVE_D_TYPE || defined HAVE_STRUCT_DIRENT_D_TYPE ++ uint8_t type; ++# endif ++ bool skip_entry; ++}; ++ ++# if defined _DIRENT_HAVE_D_TYPE || defined HAVE_STRUCT_DIRENT_D_TYPE ++/* Initializer based on the d_type member of struct dirent. */ ++# define D_TYPE_TO_RESULT(source) (source)->d_type, ++ ++/* True if the directory entry D might be a symbolic link. */ ++static bool ++readdir_result_might_be_symlink (struct readdir_result d) ++{ ++ return d.type == DT_UNKNOWN || d.type == DT_LNK; ++} ++ ++/* True if the directory entry D might be a directory. */ ++static bool ++readdir_result_might_be_dir (struct readdir_result d) ++{ ++ return d.type == DT_DIR || readdir_result_might_be_symlink (d); ++} ++# else /* defined _DIRENT_HAVE_D_TYPE || defined HAVE_STRUCT_DIRENT_D_TYPE */ ++# define D_TYPE_TO_RESULT(source) ++ ++/* If we do not have type information, symbolic links and directories ++ are always a possibility. */ ++ ++static bool ++readdir_result_might_be_symlink (struct readdir_result d) ++{ ++ return true; ++} ++ ++static bool ++readdir_result_might_be_dir (struct readdir_result d) ++{ ++ return true; ++} ++ ++# endif /* defined _DIRENT_HAVE_D_TYPE || defined HAVE_STRUCT_DIRENT_D_TYPE */ ++ ++# if (defined POSIX || defined WINDOWS32) && !defined __GNU_LIBRARY__ ++/* Initializer for skip_entry. POSIX does not require that the d_ino ++ field be present, and some systems do not provide it. */ ++# define D_INO_TO_RESULT(source) false, ++# else ++# define D_INO_TO_RESULT(source) (source)->d_ino == 0, ++# endif ++ ++/* Construct an initializer for a struct readdir_result object from a ++ struct dirent *. No copy of the name is made. */ ++#define READDIR_RESULT_INITIALIZER(source) \ ++ { \ ++ source->d_name, \ ++ D_TYPE_TO_RESULT (source) \ ++ D_INO_TO_RESULT (source) \ ++ } ++ + #endif /* !defined _LIBC || !defined GLOB_ONLY_P */ + ++/* Call gl_readdir on STREAM. This macro can be overridden to reduce ++ type safety if an old interface version needs to be supported. */ ++#ifndef GL_READDIR ++# define GL_READDIR(pglob, stream) ((pglob)->gl_readdir (stream)) ++#endif ++ ++/* Extract name and type from directory entry. No copy of the name is ++ made. If SOURCE is NULL, result name is NULL. Keep in sync with ++ convert_dirent64 below. */ ++static struct readdir_result ++convert_dirent (const struct dirent *source) ++{ ++ if (source == NULL) ++ { ++ struct readdir_result result = { NULL, }; ++ return result; ++ } ++ struct readdir_result result = READDIR_RESULT_INITIALIZER (source); ++ return result; ++} ++ ++#ifndef COMPILE_GLOB64 ++/* Like convert_dirent, but works on struct dirent64 instead. Keep in ++ sync with convert_dirent above. */ ++static struct readdir_result ++convert_dirent64 (const struct dirent64 *source) ++{ ++ if (source == NULL) ++ { ++ struct readdir_result result = { NULL, }; ++ return result; ++ } ++ struct readdir_result result = READDIR_RESULT_INITIALIZER (source); ++ return result; ++} ++#endif ++ ++ + #ifndef attribute_hidden + # define attribute_hidden + #endif +@@ -1538,55 +1582,36 @@ glob_in_dir (const char *pattern, const char *directory, int flags, + + while (1) + { +- const char *name; +-#if defined _LIBC && !defined COMPILE_GLOB64 +- struct dirent64 *d; +- union +- { +- struct dirent64 d64; +- char room [offsetof (struct dirent64, d_name[0]) +- + NAME_MAX + 1]; +- } +- d64buf; +- +- if (__glibc_unlikely (flags & GLOB_ALTDIRFUNC)) +- { +- struct dirent *d32 = (*pglob->gl_readdir) (stream); +- if (d32 != NULL) +- { +- CONVERT_DIRENT_DIRENT64 (&d64buf.d64, d32); +- d = &d64buf.d64; +- } +- else +- d = NULL; +- } +- else +- d = __readdir64 (stream); ++ struct readdir_result d; ++ { ++ if (__builtin_expect (flags & GLOB_ALTDIRFUNC, 0)) ++ d = convert_dirent (GL_READDIR (pglob, stream)); ++ else ++ { ++#ifdef COMPILE_GLOB64 ++ d = convert_dirent (__readdir (stream)); + #else +- struct dirent *d = (__builtin_expect (flags & GLOB_ALTDIRFUNC, 0) +- ? ((struct dirent *) +- (*pglob->gl_readdir) (stream)) +- : __readdir (stream)); ++ d = convert_dirent64 (__readdir64 (stream)); + #endif +- if (d == NULL) ++ } ++ } ++ if (d.name == NULL) + break; +- if (! REAL_DIR_ENTRY (d)) ++ if (d.skip_entry) + continue; + + /* If we shall match only directories use the information + provided by the dirent call if possible. */ +- if ((flags & GLOB_ONLYDIR) && !DIRENT_MIGHT_BE_DIR (d)) ++ if ((flags & GLOB_ONLYDIR) && !readdir_result_might_be_dir (d)) + continue; + +- name = d->d_name; +- +- if (fnmatch (pattern, name, fnm_flags) == 0) ++ if (fnmatch (pattern, d.name, fnm_flags) == 0) + { + /* If the file we found is a symlink we have to + make sure the target file exists. */ +- if (!DIRENT_MIGHT_BE_SYMLINK (d) +- || link_exists_p (dfd, directory, dirlen, name, pglob, +- flags)) ++ if (!readdir_result_might_be_symlink (d) ++ || link_exists_p (dfd, directory, dirlen, d.name, ++ pglob, flags)) + { + if (cur == names->count) + { +@@ -1606,7 +1631,7 @@ glob_in_dir (const char *pattern, const char *directory, int flags, + names = newnames; + cur = 0; + } +- names->name[cur] = strdup (d->d_name); ++ names->name[cur] = strdup (d.name); + if (names->name[cur] == NULL) + goto memory_error; + ++cur; +diff --git a/sysdeps/unix/sysv/linux/i386/glob64.c b/sysdeps/unix/sysv/linux/i386/glob64.c +index b4fcd1a..802c957 100644 +--- a/sysdeps/unix/sysv/linux/i386/glob64.c ++++ b/sysdeps/unix/sysv/linux/i386/glob64.c +@@ -1,3 +1,21 @@ ++/* Two glob variants with 64-bit support, for dirent64 and __olddirent64. ++ Copyright (C) 1998-2016 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, see ++ . */ ++ + #include + #include + #include +@@ -38,11 +56,15 @@ int __old_glob64 (const char *__pattern, int __flags, + + #undef dirent + #define dirent __old_dirent64 ++#undef GL_READDIR ++# define GL_READDIR(pglob, stream) \ ++ ((struct __old_dirent64 *) (pglob)->gl_readdir (stream)) + #undef __readdir + #define __readdir(dirp) __old_readdir64 (dirp) + #undef glob + #define glob(pattern, flags, errfunc, pglob) \ + __old_glob64 (pattern, flags, errfunc, pglob) ++#define convert_dirent __old_convert_dirent + #define glob_in_dir __old_glob_in_dir + #define GLOB_ATTRIBUTE attribute_compat_text_section + diff --git a/pkgs/development/libraries/glibc/cve-2016-3075.patch b/pkgs/development/libraries/glibc/cve-2016-3075.patch new file mode 100644 index 0000000000000..0da10167befe0 --- /dev/null +++ b/pkgs/development/libraries/glibc/cve-2016-3075.patch @@ -0,0 +1,35 @@ +commit 146b58d11fddbef15b888906e3be4f33900c416f +Author: Florian Weimer +Date: Tue Mar 29 12:57:56 2016 +0200 + + CVE-2016-3075: Stack overflow in _nss_dns_getnetbyname_r [BZ #19879] + + The defensive copy is not needed because the name may not alias the + output buffer. + + (cherry picked from commit 317b199b4aff8cfa27f2302ab404d2bb5032b9a4) + (cherry picked from commit 883dceebc8f11921a9890211a4e202e5be17562f) + +diff --git a/resolv/nss_dns/dns-network.c b/resolv/nss_dns/dns-network.c +index 2eb2f67..8f301a7 100644 +--- a/resolv/nss_dns/dns-network.c ++++ b/resolv/nss_dns/dns-network.c +@@ -118,17 +118,14 @@ _nss_dns_getnetbyname_r (const char *name, struct netent *result, + } net_buffer; + querybuf *orig_net_buffer; + int anslen; +- char *qbuf; + enum nss_status status; + + if (__res_maybe_init (&_res, 0) == -1) + return NSS_STATUS_UNAVAIL; + +- qbuf = strdupa (name); +- + net_buffer.buf = orig_net_buffer = (querybuf *) alloca (1024); + +- anslen = __libc_res_nsearch (&_res, qbuf, C_IN, T_PTR, net_buffer.buf->buf, ++ anslen = __libc_res_nsearch (&_res, name, C_IN, T_PTR, net_buffer.buf->buf, + 1024, &net_buffer.ptr, NULL, NULL, NULL, NULL); + if (anslen < 0) + { diff --git a/pkgs/development/libraries/glibc/cve-2016-3706.patch b/pkgs/development/libraries/glibc/cve-2016-3706.patch new file mode 100644 index 0000000000000..cf9fb06035564 --- /dev/null +++ b/pkgs/development/libraries/glibc/cve-2016-3706.patch @@ -0,0 +1,181 @@ +commit 1a8a7c12950a0026a3c406a7cb1608f96aa1460e +Author: Florian Weimer +Date: Fri Apr 29 10:35:34 2016 +0200 + + CVE-2016-3706: getaddrinfo: stack overflow in hostent conversion [BZ #20010] + + When converting a struct hostent response to struct gaih_addrtuple, the + gethosts macro (which is called from gaih_inet) used alloca, without + malloc fallback for large responses. This commit changes this code to + use calloc unconditionally. + + This commit also consolidated a second hostent-to-gaih_addrtuple + conversion loop (in gaih_inet) to use the new conversion function. + + (cherry picked from commit 4ab2ab03d4351914ee53248dc5aef4a8c88ff8b9) + +diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c +index 1ef3f20..fed2d3b 100644 +--- a/sysdeps/posix/getaddrinfo.c ++++ b/sysdeps/posix/getaddrinfo.c +@@ -168,9 +168,58 @@ gaih_inet_serv (const char *servicename, const struct gaih_typeproto *tp, + return 0; + } + ++/* Convert struct hostent to a list of struct gaih_addrtuple objects. ++ h_name is not copied, and the struct hostent object must not be ++ deallocated prematurely. *RESULT must be NULL or a pointer to an ++ object allocated using malloc, which is freed. */ ++static bool ++convert_hostent_to_gaih_addrtuple (const struct addrinfo *req, ++ int family, ++ struct hostent *h, ++ struct gaih_addrtuple **result) ++{ ++ free (*result); ++ *result = NULL; ++ ++ /* Count the number of addresses in h->h_addr_list. */ ++ size_t count = 0; ++ for (char **p = h->h_addr_list; *p != NULL; ++p) ++ ++count; ++ ++ /* Report no data if no addresses are available, or if the incoming ++ address size is larger than what we can store. */ ++ if (count == 0 || h->h_length > sizeof (((struct gaih_addrtuple) {}).addr)) ++ return true; ++ ++ struct gaih_addrtuple *array = calloc (count, sizeof (*array)); ++ if (array == NULL) ++ return false; ++ ++ for (size_t i = 0; i < count; ++i) ++ { ++ if (family == AF_INET && req->ai_family == AF_INET6) ++ { ++ /* Perform address mapping. */ ++ array[i].family = AF_INET6; ++ memcpy(array[i].addr + 3, h->h_addr_list[i], sizeof (uint32_t)); ++ array[i].addr[2] = htonl (0xffff); ++ } ++ else ++ { ++ array[i].family = family; ++ memcpy (array[i].addr, h->h_addr_list[i], h->h_length); ++ } ++ array[i].next = array + i + 1; ++ } ++ array[0].name = h->h_name; ++ array[count - 1].next = NULL; ++ ++ *result = array; ++ return true; ++} ++ + #define gethosts(_family, _type) \ + { \ +- int i; \ + int herrno; \ + struct hostent th; \ + struct hostent *h; \ +@@ -219,36 +268,23 @@ gaih_inet_serv (const char *servicename, const struct gaih_typeproto *tp, + } \ + else if (h != NULL) \ + { \ +- for (i = 0; h->h_addr_list[i]; i++) \ ++ /* Make sure that addrmem can be freed. */ \ ++ if (!malloc_addrmem) \ ++ addrmem = NULL; \ ++ if (!convert_hostent_to_gaih_addrtuple (req, _family,h, &addrmem)) \ + { \ +- if (*pat == NULL) \ +- { \ +- *pat = __alloca (sizeof (struct gaih_addrtuple)); \ +- (*pat)->scopeid = 0; \ +- } \ +- uint32_t *addr = (*pat)->addr; \ +- (*pat)->next = NULL; \ +- (*pat)->name = i == 0 ? strdupa (h->h_name) : NULL; \ +- if (_family == AF_INET && req->ai_family == AF_INET6) \ +- { \ +- (*pat)->family = AF_INET6; \ +- addr[3] = *(uint32_t *) h->h_addr_list[i]; \ +- addr[2] = htonl (0xffff); \ +- addr[1] = 0; \ +- addr[0] = 0; \ +- } \ +- else \ +- { \ +- (*pat)->family = _family; \ +- memcpy (addr, h->h_addr_list[i], sizeof(_type)); \ +- } \ +- pat = &((*pat)->next); \ ++ _res.options |= old_res_options & RES_USE_INET6; \ ++ result = -EAI_SYSTEM; \ ++ goto free_and_return; \ + } \ ++ *pat = addrmem; \ ++ /* The conversion uses malloc unconditionally. */ \ ++ malloc_addrmem = true; \ + \ + if (localcanon != NULL && canon == NULL) \ + canon = strdupa (localcanon); \ + \ +- if (_family == AF_INET6 && i > 0) \ ++ if (_family == AF_INET6 && *pat != NULL) \ + got_ipv6 = true; \ + } \ + } +@@ -612,44 +648,16 @@ gaih_inet (const char *name, const struct gaih_service *service, + { + if (h != NULL) + { +- int i; +- /* We found data, count the number of addresses. */ +- for (i = 0; h->h_addr_list[i]; ++i) +- ; +- if (i > 0 && *pat != NULL) +- --i; +- +- if (__libc_use_alloca (alloca_used +- + i * sizeof (struct gaih_addrtuple))) +- addrmem = alloca_account (i * sizeof (struct gaih_addrtuple), +- alloca_used); +- else +- { +- addrmem = malloc (i +- * sizeof (struct gaih_addrtuple)); +- if (addrmem == NULL) +- { +- result = -EAI_MEMORY; +- goto free_and_return; +- } +- malloc_addrmem = true; +- } +- +- /* Now convert it into the list. */ +- struct gaih_addrtuple *addrfree = addrmem; +- for (i = 0; h->h_addr_list[i]; ++i) ++ /* We found data, convert it. */ ++ if (!convert_hostent_to_gaih_addrtuple ++ (req, AF_INET, h, &addrmem)) + { +- if (*pat == NULL) +- { +- *pat = addrfree++; +- (*pat)->scopeid = 0; +- } +- (*pat)->next = NULL; +- (*pat)->family = AF_INET; +- memcpy ((*pat)->addr, h->h_addr_list[i], +- h->h_length); +- pat = &((*pat)->next); ++ result = -EAI_MEMORY; ++ goto free_and_return; + } ++ *pat = addrmem; ++ /* The conversion uses malloc unconditionally. */ ++ malloc_addrmem = true; + } + } + else diff --git a/pkgs/development/libraries/glibc/glob-simplify-interface.patch b/pkgs/development/libraries/glibc/glob-simplify-interface.patch new file mode 100644 index 0000000000000..647cca8b3a64e --- /dev/null +++ b/pkgs/development/libraries/glibc/glob-simplify-interface.patch @@ -0,0 +1,216 @@ +commit 68302147ee061c69eb447e243ad9a18ef4cfbc4c +Author: Florian Weimer +Date: Fri Apr 29 09:33:07 2016 +0200 + + glob: Simplify the interface for the GLOB_ALTDIRFUNC callback gl_readdir + + Previously, application code had to set up the d_namlen member if + the target supported it, involving conditional compilation. After + this change, glob will use the length of the string in d_name instead + of d_namlen to determine the file name length. All glibc targets + provide the d_type and d_ino members, and setting them as needed for + gl_readdir is straightforward. + + Changing the behavior with regards to d_ino is left to a future + cleanup. + + (cherry picked from commit 137fe72eca6923a00381a3ca9f0e7672c1f85e3f) + +diff --git a/manual/examples/mkdirent.c b/manual/examples/mkdirent.c +new file mode 100644 +index 0000000..f8400f4 +--- /dev/null ++++ b/manual/examples/mkdirent.c +@@ -0,0 +1,42 @@ ++/* Example for creating a struct dirent object for use with glob. ++ Copyright (C) 2016 Free Software Foundation, Inc. ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License ++ as published by the Free Software Foundation; either version 2 ++ of the License, or (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ GNU General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, if not, see . ++*/ ++ ++#include ++#include ++#include ++#include ++#include ++ ++struct dirent * ++mkdirent (const char *name) ++{ ++ size_t dirent_size = offsetof (struct dirent, d_name) + 1; ++ size_t name_length = strlen (name); ++ size_t total_size = dirent_size + name_length; ++ if (total_size < dirent_size) ++ { ++ errno = ENOMEM; ++ return NULL; ++ } ++ struct dirent *result = malloc (total_size); ++ if (result == NULL) ++ return NULL; ++ result->d_type = DT_UNKNOWN; ++ result->d_ino = 1; /* Do not skip this entry. */ ++ memcpy (result->d_name, name, name_length + 1); ++ return result; ++} +diff --git a/manual/pattern.texi b/manual/pattern.texi +index d1b9275..565e7eb 100644 +--- a/manual/pattern.texi ++++ b/manual/pattern.texi +@@ -237,7 +237,44 @@ function used to read the contents of a directory. It is used if the + @code{GLOB_ALTDIRFUNC} bit is set in the flag parameter. The type of + this field is @w{@code{struct dirent *(*) (void *)}}. + +-This is a GNU extension. ++An implementation of @code{gl_readdir} needs to initialize the following ++members of the @code{struct dirent} object: ++ ++@table @code ++@item d_type ++This member should be set to the file type of the entry if it is known. ++Otherwise, the value @code{DT_UNKNOWN} can be used. The @code{glob} ++function may use the specified file type to avoid callbacks in cases ++where the file type indicates that the data is not required. ++ ++@item d_ino ++This member needs to be non-zero, otherwise @code{glob} may skip the ++current entry and call the @code{gl_readdir} callback function again to ++retrieve another entry. ++ ++@item d_name ++This member must be set to the name of the entry. It must be ++null-terminated. ++@end table ++ ++The example below shows how to allocate a @code{struct dirent} object ++containing a given name. ++ ++@smallexample ++@include mkdirent.c.texi ++@end smallexample ++ ++The @code{glob} function reads the @code{struct dirent} members listed ++above and makes a copy of the file name in the @code{d_name} member ++immediately after the @code{gl_readdir} callback function returns. ++Future invocations of any of the callback functions may dealloacte or ++reuse the buffer. It is the responsibility of the caller of the ++@code{glob} function to allocate and deallocate the buffer, around the ++call to @code{glob} or using the callback functions. For example, an ++application could allocate the buffer in the @code{gl_readdir} callback ++function, and deallocate it in the @code{gl_closedir} callback function. ++ ++The @code{gl_readdir} member is a GNU extension. + + @item gl_opendir + The address of an alternative implementation of the @code{opendir} +diff --git a/posix/bug-glob2.c b/posix/bug-glob2.c +index ddf5ec9..0fdc5d0 100644 +--- a/posix/bug-glob2.c ++++ b/posix/bug-glob2.c +@@ -193,7 +193,7 @@ my_readdir (void *gdir) + return NULL; + } + +- dir->d.d_ino = dir->idx; ++ dir->d.d_ino = 1; /* glob should not skip this entry. */ + + #ifdef _DIRENT_HAVE_D_TYPE + dir->d.d_type = filesystem[dir->idx].type; +diff --git a/posix/glob.c b/posix/glob.c +index 0c04c3c..9ae76ac 100644 +--- a/posix/glob.c ++++ b/posix/glob.c +@@ -57,10 +57,8 @@ + + #if defined HAVE_DIRENT_H || defined __GNU_LIBRARY__ + # include +-# define NAMLEN(dirent) strlen((dirent)->d_name) + #else + # define dirent direct +-# define NAMLEN(dirent) (dirent)->d_namlen + # ifdef HAVE_SYS_NDIR_H + # include + # endif +@@ -76,12 +74,6 @@ + #endif + + +-/* In GNU systems, defines this macro for us. */ +-#ifdef _D_NAMLEN +-# undef NAMLEN +-# define NAMLEN(d) _D_NAMLEN(d) +-#endif +- + /* When used in the GNU libc the symbol _DIRENT_HAVE_D_TYPE is available + if the `d_type' member for `struct dirent' is available. + HAVE_STRUCT_DIRENT_D_TYPE plays the same role in GNULIB. */ +@@ -105,12 +97,6 @@ + + /* If the system has the `struct dirent64' type we use it internally. */ + #if defined _LIBC && !defined COMPILE_GLOB64 +-# if defined HAVE_DIRENT_H || defined __GNU_LIBRARY__ +-# define CONVERT_D_NAMLEN(d64, d32) +-# else +-# define CONVERT_D_NAMLEN(d64, d32) \ +- (d64)->d_namlen = (d32)->d_namlen; +-# endif + + # if (defined POSIX || defined WINDOWS32) && !defined __GNU_LIBRARY__ + # define CONVERT_D_INO(d64, d32) +@@ -127,8 +113,7 @@ + # endif + + # define CONVERT_DIRENT_DIRENT64(d64, d32) \ +- memcpy ((d64)->d_name, (d32)->d_name, NAMLEN (d32) + 1); \ +- CONVERT_D_NAMLEN (d64, d32) \ ++ strcpy ((d64)->d_name, (d32)->d_name); \ + CONVERT_D_INO (d64, d32) \ + CONVERT_D_TYPE (d64, d32) + #endif +@@ -1554,7 +1539,6 @@ glob_in_dir (const char *pattern, const char *directory, int flags, + while (1) + { + const char *name; +- size_t len; + #if defined _LIBC && !defined COMPILE_GLOB64 + struct dirent64 *d; + union +@@ -1622,12 +1606,10 @@ glob_in_dir (const char *pattern, const char *directory, int flags, + names = newnames; + cur = 0; + } +- len = NAMLEN (d); +- names->name[cur] = (char *) malloc (len + 1); ++ names->name[cur] = strdup (d->d_name); + if (names->name[cur] == NULL) + goto memory_error; +- *((char *) mempcpy (names->name[cur++], name, len)) +- = '\0'; ++ ++cur; + ++nfound; + } + } +diff --git a/posix/tst-gnuglob.c b/posix/tst-gnuglob.c +index 992b997..b7b859b 100644 +--- a/posix/tst-gnuglob.c ++++ b/posix/tst-gnuglob.c +@@ -211,7 +211,7 @@ my_readdir (void *gdir) + return NULL; + } + +- dir->d.d_ino = dir->idx; ++ dir->d.d_ino = 1; /* glob should not skip this entry. */ + + #ifdef _DIRENT_HAVE_D_TYPE + dir->d.d_type = filesystem[dir->idx].type; -- cgit 1.4.1 From ea018f83390a353be4c9634b7fae7aae3c147069 Mon Sep 17 00:00:00 2001 From: Brandon Kase Date: Sun, 20 Mar 2016 00:29:47 -0700 Subject: racerd: init at 0.1.1 Needed for Rust YouCompleteMe support --- pkgs/development/tools/rust/racerd/default.nix | 34 ++++++++++++++++++++++ pkgs/misc/vim-plugins/default.nix | 6 +++- .../vim2nix/additional-nix-code/youcompleteme | 4 +++ pkgs/top-level/all-packages.nix | 2 ++ 4 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/tools/rust/racerd/default.nix (limited to 'pkgs/development') diff --git a/pkgs/development/tools/rust/racerd/default.nix b/pkgs/development/tools/rust/racerd/default.nix new file mode 100644 index 0000000000000..e315ab38344b3 --- /dev/null +++ b/pkgs/development/tools/rust/racerd/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchgit, rustPlatform, makeWrapper }: + +with rustPlatform; + +buildRustPackage rec { + name = "racerd-${version}"; + version = "0.1.1"; + src = fetchgit { + url = "git://github.com/jwilm/racerd.git"; + rev = "dcbb7885e84eb5e2fbb2072e185701ad1abbd93a"; + sha256 = "18c6a1x0li5yxif9qqnsnyas6if0m6srbqh0h0nywgx0lm8bpgly"; + }; + + doCheck = false; + + depsSha256 = "0ca0lc8mm8kczll5m03n5fwsr0540c2xbfi4nn9ksn0s4sap50yn"; + + buildInputs = [ makeWrapper ]; + + RUST_SRC_PATH = ''${rustc.src}/src''; + + installPhase = '' + mkdir -p $out/bin + cp -p target/release/racerd $out/bin/ + wrapProgram $out/bin/racerd --set RUST_SRC_PATH "$RUST_SRC_PATH" + ''; + + meta = with stdenv.lib; { + description = "JSON/HTTP Server based on racer for adding Rust support to editors and IDEs"; + homepage = "https://github.com/jwilm/racerd"; + license = licenses.asl20; + platforms = platforms.all; + }; +} diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 1bc2570f1577e..fcb5ebba9d818 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -1,7 +1,7 @@ # 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_38, zip -, vim_configurable, vimPlugins, xkb_switch, git +, vim_configurable, vimPlugins, xkb_switch, git, racerdRust , Cocoa ? null }: @@ -953,6 +953,10 @@ rec { llvmPackages_38.llvm ] ++ stdenv.lib.optional stdenv.isDarwin Cocoa; + propogatedBuildInputs = [ + racerdRust + ]; + buildPhase = '' patchShebangs . substituteInPlace plugin/youcompleteme.vim \ diff --git a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme index cb90adfdc3971..12bcf53f1e046 100644 --- a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme +++ b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme @@ -4,6 +4,10 @@ llvmPackages.llvm ] ++ stdenv.lib.optional stdenv.isDarwin Cocoa; + propogatedBuildInputs = [ + racerdRust + ]; + buildPhase = '' patchShebangs . substituteInPlace plugin/youcompleteme.vim \ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 690dab41d4135..a2635b3f4587d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6309,6 +6309,8 @@ in racerRust = callPackage ../development/tools/rust/racer { }; + racerdRust = callPackage ../development/tools/rust/racerd { }; + radare = callPackage ../development/tools/analysis/radare { inherit (gnome) vte; lua = lua5; -- cgit 1.4.1 From bf2834a10578e2eb2c8fad669b1ce42cf7871272 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 14 May 2016 16:12:21 +0200 Subject: pyexiv2: 0.3.0 -> 0.3.2 --- pkgs/development/python-modules/pyexiv2/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/python-modules/pyexiv2/default.nix b/pkgs/development/python-modules/pyexiv2/default.nix index ab086aed3bf91..d4402ec9ebd52 100644 --- a/pkgs/development/python-modules/pyexiv2/default.nix +++ b/pkgs/development/python-modules/pyexiv2/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, python, exiv2, scons, boost }: -let version = "0.3.0"; in +let version = "0.3.2"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "pyexiv2-${version}"; src = fetchurl { - url = "http://launchpad.net/pyexiv2/0.3.x/0.3/+download/pyexiv2-0.3.0.tar.bz2"; - sha256 = "1y7r2z0ja166cx8fmykq7gaif02drknqqbxaf18fhv9nmgz4jrg9"; + url = "http://launchpad.net/pyexiv2/0.3.x/0.3.2/+download/${name}.tar.bz2"; + sha256 = "09r1ga6kj5cnmrldpkqzvdhh7xi7aad9g4fbcr1gawgsd9y13g0a"; }; buildPhase = '' -- cgit 1.4.1 From db7bf64e31933a4c07e3e34fd8d94259a54d7160 Mon Sep 17 00:00:00 2001 From: robbinch Date: Sun, 15 May 2016 06:28:59 +0800 Subject: haskellPackages.tinc: 20160419 -> 20160511 (#15457) --- pkgs/development/tools/haskell/tinc/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/haskell/tinc/default.nix b/pkgs/development/tools/haskell/tinc/default.nix index 44491fa0ef98f..faf1bd6d9bde7 100644 --- a/pkgs/development/tools/haskell/tinc/default.nix +++ b/pkgs/development/tools/haskell/tinc/default.nix @@ -7,12 +7,12 @@ }: mkDerivation { pname = "tinc"; - version = "20160419"; + version = "20160511"; src = fetchFromGitHub { owner = "sol"; repo = "tinc"; - rev = "b9f7cc1076098b1f99f20655052c9fd34598d891"; - sha256 = "1f0k7a4vxdd2cd2h5qwska9hfw7ig6q2rx87d09fg2xlix96g81r"; + rev = "405af997c182b89edfc9656612c32616e98c7862"; + sha256 = "0zryw3abp64922dnk6jss58lq4k7ijwbbn35zh5vbg3ns8307k6b"; }; isLibrary = false; isExecutable = true; -- cgit 1.4.1 From e5177a9642111b644157abb3cd9a94d7bed69a32 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sun, 15 May 2016 06:17:52 +0200 Subject: libxkbcommon: 0.5.0 -> 0.6.1 and ... - added license - added myself as a maintainer --- pkgs/development/libraries/libxkbcommon/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libxkbcommon/default.nix b/pkgs/development/libraries/libxkbcommon/default.nix index 2bf7bbaabb319..7cfccfe05f747 100644 --- a/pkgs/development/libraries/libxkbcommon/default.nix +++ b/pkgs/development/libraries/libxkbcommon/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, yacc, flex, xkeyboard_config, libxcb }: stdenv.mkDerivation rec { - name = "libxkbcommon-0.5.0"; + name = "libxkbcommon-0.6.1"; src = fetchurl { url = "http://xkbcommon.org/download/${name}.tar.xz"; - sha256 = "176ii5dn2wh74q48sd8ac37ljlvgvp5f506glr96z6ibfhj7igch"; + sha256 = "0q47xa1szlxwgvwmhv4b7xwawnykz1hnc431d84nj8dlh2q8f22v"; }; outputs = [ "dev" "out" ]; @@ -20,8 +20,10 @@ stdenv.mkDerivation rec { sed -i 's/,--version-script=.*$//' Makefile ''; - meta = { + meta = with stdenv.lib; { description = "A library to handle keyboard descriptions"; homepage = http://xkbcommon.org; + license = licenses.mit; + maintainers = with maintainers; [ garbas ]; }; } -- cgit 1.4.1 From 4aa0e50388b24ba24e20ced9d271082307aa0cfc Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sun, 15 May 2016 06:52:29 +0200 Subject: libmpack: init at 1.0.2 --- pkgs/development/libraries/libmpack/default.nix | 25 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 3 +++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/development/libraries/libmpack/default.nix (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libmpack/default.nix b/pkgs/development/libraries/libmpack/default.nix new file mode 100644 index 0000000000000..d127531b1e01f --- /dev/null +++ b/pkgs/development/libraries/libmpack/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchFromGitHub, libtool }: + +stdenv.mkDerivation rec { + name = "libmpack-${version}"; + version = "1.0.2"; + src = fetchFromGitHub { + owner = "tarruda"; + repo = "libmpack"; + rev = version; + sha256 = "0s391vyz1gv4j95zdyvxspw7c0xq7d7b4fh0yxrgqqqp5js1rlj0"; + }; + buildInputs = [ libtool ]; + installPhase = '' + mkdir -p $out/lib/libmpack + cp -R build/* $out/lib/libmpack + rm -rf $out/lib/libmpack/debug + ''; + meta = with stdenv.lib; { + description = "Simple implementation of msgpack in C"; + homepage = "https://github.com/tarruda/libmpack/"; + license = licenses.mit; + maintainers = with maintainers; [ lovek323 ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9f71ae4246596..b967ca4b38b5e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2282,6 +2282,8 @@ in libtorrent = callPackage ../tools/networking/p2p/libtorrent { }; + libmpack = callPackage ../development/libraries/libmpack { }; + libiberty = callPackage ../development/libraries/libiberty { }; libiberty_static = callPackage ../development/libraries/libiberty { staticBuild = true; }; @@ -14404,6 +14406,7 @@ in gtkvnc = gtkvnc.override { enableGTK3 = true; }; spice_gtk = spice_gtk.override { enableGTK3 = true; }; }; + virtmanager = callPackage ../applications/virtualization/virt-manager { inherit (gnome) gnome_python; vte = gnome3.vte; -- cgit 1.4.1 From edaecb41db05b512614ca0be10782790ea86a149 Mon Sep 17 00:00:00 2001 From: Sebastián Bernardo Galkin Date: Sat, 14 May 2016 17:37:10 -0700 Subject: postgis: fix build after output splits Fixes #15236 Two changes were needed: - pg_config from postgresql package wasn't reporting the correct location for the pgxs extension system, after the output split - json_c is now split in dev and out outputs, postgis configure doesn't find the library location properly Closes #15470 --- pkgs/development/libraries/postgis/default.nix | 4 ++++ pkgs/servers/sql/postgresql/default.nix | 7 +++++++ pkgs/servers/sql/postgresql/hardcode-pgxs-path.patch | 17 +++++++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 pkgs/servers/sql/postgresql/hardcode-pgxs-path.patch (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/postgis/default.nix b/pkgs/development/libraries/postgis/default.nix index 5f41eb61c29be..f3e2312f48451 100644 --- a/pkgs/development/libraries/postgis/default.nix +++ b/pkgs/development/libraries/postgis/default.nix @@ -89,6 +89,10 @@ in rec { sha256 = "02gsi1cm63kf0r7881444lrkzdjqhhpz9a5zav3al0q24nq01r8g"; sql_srcs = ["postgis.sql" "spatial_ref_sys.sql"]; builtInputs = [gdal json_c pkgconfig]; + + # postgis config directory assumes /include /lib from the same root for json-c library + NIX_LDFLAGS = "-L${stdenv.lib.getLib json_c}/lib"; + dontDisableStatic = true; preConfigure = '' sed -i 's@/usr/bin/file@${file}/bin/file@' configure diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix index 5fec92a5bf8af..bd7b8fd3dea0f 100644 --- a/pkgs/servers/sql/postgresql/default.nix +++ b/pkgs/servers/sql/postgresql/default.nix @@ -32,12 +32,19 @@ let patches = [ (if lib.versionAtLeast version "9.4" then ./disable-resolve_symlinks-94.patch else ./disable-resolve_symlinks.patch) ./less-is-more.patch + ./hardcode-pgxs-path.patch ]; installTargets = [ "install-world" ]; LC_ALL = "C"; + postConfigure = + '' + # Hardcode the path to pgxs so pg_config returns the path in $out + substituteInPlace "src/bin/pg_config/pg_config.c" --replace HARDCODED_PGXS_PATH $out/lib + ''; + postInstall = '' moveToOutput "lib/pgxs" "$out" # looks strange, but not deleting it diff --git a/pkgs/servers/sql/postgresql/hardcode-pgxs-path.patch b/pkgs/servers/sql/postgresql/hardcode-pgxs-path.patch new file mode 100644 index 0000000000000..355813ffe20e2 --- /dev/null +++ b/pkgs/servers/sql/postgresql/hardcode-pgxs-path.patch @@ -0,0 +1,17 @@ +--- a/src/bin/pg_config/pg_config.c ++++ b/src/bin/pg_config/pg_config.c +@@ -220,11 +220,13 @@ show_sysconfdir(bool all) + static void + show_pgxs(bool all) + { +- char path[MAXPGPATH]; ++ char path[MAXPGPATH] = "HARDCODED_PGXS_PATH"; + + if (all) + printf("PGXS = "); ++ /* commented out to be able to point to nix $out path + get_pkglib_path(mypath, path); ++ */ + strlcat(path, "/pgxs/src/makefiles/pgxs.mk", sizeof(path)); + cleanup_path(path); + printf("%s\n", path); -- cgit 1.4.1 From 49cf9b902ac26a7389aae5fe9c5ba5099e721a2a Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 15 May 2016 12:56:08 +0200 Subject: help2man: 1.47.3 -> 1.47.4 --- pkgs/development/tools/misc/help2man/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/misc/help2man/default.nix b/pkgs/development/tools/misc/help2man/default.nix index 8f687908017f1..6839335245fca 100644 --- a/pkgs/development/tools/misc/help2man/default.nix +++ b/pkgs/development/tools/misc/help2man/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, perl, gettext, LocaleGettext, makeWrapper }: stdenv.mkDerivation rec { - name = "help2man-1.47.3"; + name = "help2man-1.47.4"; src = fetchurl { url = "mirror://gnu/help2man/${name}.tar.xz"; -- cgit 1.4.1 From 6400283c09357aac11e703de6d073153eb5171eb Mon Sep 17 00:00:00 2001 From: Julien Dehos Date: Sun, 15 May 2016 00:13:31 +0200 Subject: cpputest: init at 3.7.2 --- lib/maintainers.nix | 1 + pkgs/development/libraries/cpputest/default.nix | 19 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 22 insertions(+) create mode 100644 pkgs/development/libraries/cpputest/default.nix (limited to 'pkgs/development') diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 7d3e9192339e5..41fdf48153d9a 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -179,6 +179,7 @@ joelteon = "Joel Taylor "; jpbernardy = "Jean-Philippe Bernardy "; jraygauthier = "Raymond Gauthier "; + juliendehos = "Julien Dehos "; jwiegley = "John Wiegley "; jwilberding = "Jordan Wilberding "; jzellner = "Jeff Zellner "; diff --git a/pkgs/development/libraries/cpputest/default.nix b/pkgs/development/libraries/cpputest/default.nix new file mode 100644 index 0000000000000..6494a0428e0a8 --- /dev/null +++ b/pkgs/development/libraries/cpputest/default.nix @@ -0,0 +1,19 @@ +{stdenv, fetchurl}: + +stdenv.mkDerivation rec { + version = "3.7.2"; + name = "cpputest-${version}"; + + src = fetchurl { + url = "https://github.com/cpputest/cpputest/releases/download/${version}/${name}.tar.gz"; + sha256 = "0lwn226d8mrppdyzcvr08vsnnp6h0mpy5kz5a475ish87az00pcc"; + }; + + meta = { + homepage = "http://cpputest.github.io/"; + description = "Unit testing and mocking framework for C/C++"; + platforms = stdenv.lib.platforms.linux ; + license = stdenv.lib.licenses.bsd3; + maintainers = [ stdenv.lib.maintainers.juliendehos ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4c1bcd6ad4171..b8cec5ffa9dbc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6723,6 +6723,8 @@ in cppunit = callPackage ../development/libraries/cppunit { }; + cpputest = callPackage ../development/libraries/cpputest { }; + cracklib = callPackage ../development/libraries/cracklib { }; cryptopp = callPackage ../development/libraries/crypto++ { }; -- cgit 1.4.1 From 913e869f8d44d67f5bc73e609a5b165c451f4983 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sat, 14 May 2016 03:24:34 +0200 Subject: remove python32 due to pip 8.1.2 not supporting python 3.2 anymore --- .../interpreters/python/3.2/default.nix | 105 --------------------- .../interpreters/python/3.2/setup-hook.sh | 15 --- .../interpreters/python/docs/3.0-html.nix | 18 ---- .../interpreters/python/docs/3.0-pdf-a4.nix | 18 ---- .../interpreters/python/docs/3.0-pdf-letter.nix | 18 ---- .../interpreters/python/docs/3.0-text.nix | 18 ---- .../interpreters/python/docs/3.1-html.nix | 18 ---- .../interpreters/python/docs/3.1-pdf-a4.nix | 18 ---- .../interpreters/python/docs/3.1-pdf-letter.nix | 18 ---- .../interpreters/python/docs/3.1-text.nix | 18 ---- .../interpreters/python/docs/3.2-html.nix | 18 ---- .../interpreters/python/docs/3.2-pdf-a4.nix | 18 ---- .../interpreters/python/docs/3.2-pdf-letter.nix | 18 ---- .../interpreters/python/docs/3.2-text.nix | 18 ---- .../interpreters/python/docs/default.nix | 36 ------- pkgs/top-level/all-packages.nix | 5 - 16 files changed, 377 deletions(-) delete mode 100644 pkgs/development/interpreters/python/3.2/default.nix delete mode 100644 pkgs/development/interpreters/python/3.2/setup-hook.sh delete mode 100644 pkgs/development/interpreters/python/docs/3.0-html.nix delete mode 100644 pkgs/development/interpreters/python/docs/3.0-pdf-a4.nix delete mode 100644 pkgs/development/interpreters/python/docs/3.0-pdf-letter.nix delete mode 100644 pkgs/development/interpreters/python/docs/3.0-text.nix delete mode 100644 pkgs/development/interpreters/python/docs/3.1-html.nix delete mode 100644 pkgs/development/interpreters/python/docs/3.1-pdf-a4.nix delete mode 100644 pkgs/development/interpreters/python/docs/3.1-pdf-letter.nix delete mode 100644 pkgs/development/interpreters/python/docs/3.1-text.nix delete mode 100644 pkgs/development/interpreters/python/docs/3.2-html.nix delete mode 100644 pkgs/development/interpreters/python/docs/3.2-pdf-a4.nix delete mode 100644 pkgs/development/interpreters/python/docs/3.2-pdf-letter.nix delete mode 100644 pkgs/development/interpreters/python/docs/3.2-text.nix (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/python/3.2/default.nix b/pkgs/development/interpreters/python/3.2/default.nix deleted file mode 100644 index 8a2d24d76f985..0000000000000 --- a/pkgs/development/interpreters/python/3.2/default.nix +++ /dev/null @@ -1,105 +0,0 @@ -{ stdenv, fetchurl -, bzip2 -, db -, gdbm -, libX11, xproto -, ncurses -, openssl -, readline -, sqlite -, tcl, tk -, zlib -, callPackage -, self -}: - -assert readline != null -> ncurses != null; - -with stdenv.lib; - -let - majorVersion = "3.2"; - version = "${majorVersion}.6"; - - buildInputs = filter (p: p != null) [ - zlib bzip2 gdbm sqlite db readline ncurses openssl tcl tk libX11 xproto - ]; -in -stdenv.mkDerivation { - name = "python3-${version}"; - pythonVersion = majorVersion; - inherit majorVersion version; - - src = fetchurl { - url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"; - sha256 = "1p3vvvh3qw8avq959hdl6bq5d6r7mbhrnigqzgx6mllzh40va4hx"; - }; - - NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s"; - - preConfigure = '' - for i in /usr /sw /opt /pkg; do # improve purity - substituteInPlace ./setup.py --replace $i /no-such-path - done - ${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''} - - configureFlagsArray=( --enable-shared --with-threads --with-wide-unicode - CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}" - LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" - ) - ''; - - setupHook = ./setup-hook.sh; - - postInstall = '' - # needed for some packages, especially packages that backport functionality - # to 2.x from 3.x - for item in $out/lib/python${majorVersion}/test/*; do - if [[ "$item" != */test_support.py* ]]; then - rm -rf "$item" - else - echo $item - fi - done - touch $out/lib/python${majorVersion}/test/__init__.py - ln -s "$out/include/python${majorVersion}m" "$out/include/python${majorVersion}" - paxmark E $out/bin/python${majorVersion} - ''; - - passthru = rec { - zlibSupport = zlib != null; - sqliteSupport = sqlite != null; - dbSupport = db != null; - buildEnv = callPackage ../wrapper.nix { python = self; }; - readlineSupport = readline != null; - opensslSupport = openssl != null; - tkSupport = (tk != null) && (tcl != null) && (libX11 != null) && (xproto != null); - libPrefix = "python${majorVersion}"; - executable = "python3.2m"; - isPy3 = true; - isPy32 = true; - is_py3k = true; # deprecated - sitePackages = "lib/${libPrefix}/site-packages"; - interpreter = "${self}/bin/${executable}"; - }; - - enableParallelBuilding = true; - - meta = { - homepage = "http://python.org"; - description = "a high-level dynamically-typed programming language"; - longDescription = '' - Python is a remarkably powerful dynamic programming language that - is used in a wide variety of application domains. Some of its key - distinguishing features include: clear, readable syntax; strong - introspection capabilities; intuitive object orientation; natural - expression of procedural code; full modularity, supporting - hierarchical packages; exception-based error handling; and very - high level dynamic data types. - ''; - license = stdenv.lib.licenses.psfl; - platforms = stdenv.lib.platforms.all; - maintainers = with stdenv.lib.maintainers; [ simons chaoflow cstrahan ]; - }; -} diff --git a/pkgs/development/interpreters/python/3.2/setup-hook.sh b/pkgs/development/interpreters/python/3.2/setup-hook.sh deleted file mode 100644 index e8215ef9877cc..0000000000000 --- a/pkgs/development/interpreters/python/3.2/setup-hook.sh +++ /dev/null @@ -1,15 +0,0 @@ -addPythonPath() { - addToSearchPathWithCustomDelimiter : PYTHONPATH $1/lib/python3.2/site-packages -} - -toPythonPath() { - local paths="$1" - local result= - for i in $paths; do - p="$i/lib/python3.2/site-packages" - result="${result}${result:+:}$p" - done - echo $result -} - -envHooks+=(addPythonPath) diff --git a/pkgs/development/interpreters/python/docs/3.0-html.nix b/pkgs/development/interpreters/python/docs/3.0-html.nix deleted file mode 100644 index fb793da3e5ff1..0000000000000 --- a/pkgs/development/interpreters/python/docs/3.0-html.nix +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ stdenv, fetchurl, lib }: - -stdenv.mkDerivation rec { - name = "python30-docs-html-3.0.1"; - src = fetchurl { - url = http://docs.python.org/ftp/python/doc/3.0.1/python-3.0.1-docs-html.tar.bz2; - sha256 = "0ybjnhg8qfr9kc4axm5xlghkz9dmsg6b1caj6m4gz28q89vggv3c"; - }; - installPhase = '' - mkdir -p $out/share/doc/python30 - cp -R ./ $out/share/doc/python30/html - ''; - meta = { - maintainers = [ lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/interpreters/python/docs/3.0-pdf-a4.nix b/pkgs/development/interpreters/python/docs/3.0-pdf-a4.nix deleted file mode 100644 index e4b185a11c6bc..0000000000000 --- a/pkgs/development/interpreters/python/docs/3.0-pdf-a4.nix +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ stdenv, fetchurl, lib }: - -stdenv.mkDerivation rec { - name = "python30-docs-pdf-a4-3.0.1"; - src = fetchurl { - url = http://docs.python.org/ftp/python/doc/3.0.1/python-3.0.1-docs-pdf-a4.tar.bz2; - sha256 = "1qgcydqxxhy317lkzzs2v5as4hcwcblir8y3mdr173qsg51iggra"; - }; - installPhase = '' - mkdir -p $out/share/doc/python30 - cp -R ./ $out/share/doc/python30/pdf-a4 - ''; - meta = { - maintainers = [ lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/interpreters/python/docs/3.0-pdf-letter.nix b/pkgs/development/interpreters/python/docs/3.0-pdf-letter.nix deleted file mode 100644 index 1373ae21284b3..0000000000000 --- a/pkgs/development/interpreters/python/docs/3.0-pdf-letter.nix +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ stdenv, fetchurl, lib }: - -stdenv.mkDerivation rec { - name = "python30-docs-pdf-letter-3.0.1"; - src = fetchurl { - url = http://docs.python.org/ftp/python/doc/3.0.1/python-3.0.1-docs-pdf-letter.tar.bz2; - sha256 = "1x59q0k6fv55vvpsgr5xcq66k5zsd0f142cp6aa4rb6c81i31yml"; - }; - installPhase = '' - mkdir -p $out/share/doc/python30 - cp -R ./ $out/share/doc/python30/pdf-letter - ''; - meta = { - maintainers = [ lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/interpreters/python/docs/3.0-text.nix b/pkgs/development/interpreters/python/docs/3.0-text.nix deleted file mode 100644 index c37fa99f7c5b8..0000000000000 --- a/pkgs/development/interpreters/python/docs/3.0-text.nix +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ stdenv, fetchurl, lib }: - -stdenv.mkDerivation rec { - name = "python30-docs-text-3.0.1"; - src = fetchurl { - url = http://docs.python.org/ftp/python/doc/3.0.1/python-3.0.1-docs-text.tar.bz2; - sha256 = "12qlh9ywbnw50wk5siq7lmhr935dd16q3vjbii6gfv0g80b1byzx"; - }; - installPhase = '' - mkdir -p $out/share/doc/python30 - cp -R ./ $out/share/doc/python30/text - ''; - meta = { - maintainers = [ lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/interpreters/python/docs/3.1-html.nix b/pkgs/development/interpreters/python/docs/3.1-html.nix deleted file mode 100644 index 625aa181c63fd..0000000000000 --- a/pkgs/development/interpreters/python/docs/3.1-html.nix +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ stdenv, fetchurl, lib }: - -stdenv.mkDerivation rec { - name = "python31-docs-html-3.1.5"; - src = fetchurl { - url = http://docs.python.org/ftp/python/doc/3.1.5/python-3.1.5-docs-html.tar.bz2; - sha256 = "187shb92218k0i07hj9ak1kqbqjcxkivmwxlzj18v791l7x7qcpz"; - }; - installPhase = '' - mkdir -p $out/share/doc/python31 - cp -R ./ $out/share/doc/python31/html - ''; - meta = { - maintainers = [ lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/interpreters/python/docs/3.1-pdf-a4.nix b/pkgs/development/interpreters/python/docs/3.1-pdf-a4.nix deleted file mode 100644 index 564103dd101aa..0000000000000 --- a/pkgs/development/interpreters/python/docs/3.1-pdf-a4.nix +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ stdenv, fetchurl, lib }: - -stdenv.mkDerivation rec { - name = "python31-docs-pdf-a4-3.1.5"; - src = fetchurl { - url = http://docs.python.org/ftp/python/doc/3.1.5/python-3.1.5-docs-pdf-a4.tar.bz2; - sha256 = "0kbj6b43gnwlb1czkzmirasmc31j10plq0rlb9s9rh8phqnbmhx1"; - }; - installPhase = '' - mkdir -p $out/share/doc/python31 - cp -R ./ $out/share/doc/python31/pdf-a4 - ''; - meta = { - maintainers = [ lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/interpreters/python/docs/3.1-pdf-letter.nix b/pkgs/development/interpreters/python/docs/3.1-pdf-letter.nix deleted file mode 100644 index d6e3009f59c9a..0000000000000 --- a/pkgs/development/interpreters/python/docs/3.1-pdf-letter.nix +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ stdenv, fetchurl, lib }: - -stdenv.mkDerivation rec { - name = "python31-docs-pdf-letter-3.1.5"; - src = fetchurl { - url = http://docs.python.org/ftp/python/doc/3.1.5/python-3.1.5-docs-pdf-letter.tar.bz2; - sha256 = "0s202vrjfa8dnp3vpfjb21bmqym9wyj8jn2glgwjzk63z6fwb60i"; - }; - installPhase = '' - mkdir -p $out/share/doc/python31 - cp -R ./ $out/share/doc/python31/pdf-letter - ''; - meta = { - maintainers = [ lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/interpreters/python/docs/3.1-text.nix b/pkgs/development/interpreters/python/docs/3.1-text.nix deleted file mode 100644 index 3ce559e3ecc5a..0000000000000 --- a/pkgs/development/interpreters/python/docs/3.1-text.nix +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ stdenv, fetchurl, lib }: - -stdenv.mkDerivation rec { - name = "python31-docs-text-3.1.5"; - src = fetchurl { - url = http://docs.python.org/ftp/python/doc/3.1.5/python-3.1.5-docs-text.tar.bz2; - sha256 = "1jsfgfgdi1i2l3lhdk7ss5gwrcg3qhhh8syfrwz8xrv2klmmmn9b"; - }; - installPhase = '' - mkdir -p $out/share/doc/python31 - cp -R ./ $out/share/doc/python31/text - ''; - meta = { - maintainers = [ lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/interpreters/python/docs/3.2-html.nix b/pkgs/development/interpreters/python/docs/3.2-html.nix deleted file mode 100644 index 146901005489e..0000000000000 --- a/pkgs/development/interpreters/python/docs/3.2-html.nix +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ stdenv, fetchurl, lib }: - -stdenv.mkDerivation rec { - name = "python32-docs-html-3.2.3"; - src = fetchurl { - url = http://docs.python.org/ftp/python/doc/3.2.3/python-3.2.3-docs-html.tar.bz2; - sha256 = "058pryg0gn0rlpswkj1z0xvpr39s3ymx3dwqfhhf83w0mlysdm0x"; - }; - installPhase = '' - mkdir -p $out/share/doc/python32 - cp -R ./ $out/share/doc/python32/html - ''; - meta = { - maintainers = [ lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/interpreters/python/docs/3.2-pdf-a4.nix b/pkgs/development/interpreters/python/docs/3.2-pdf-a4.nix deleted file mode 100644 index 729101b2d0128..0000000000000 --- a/pkgs/development/interpreters/python/docs/3.2-pdf-a4.nix +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ stdenv, fetchurl, lib }: - -stdenv.mkDerivation rec { - name = "python32-docs-pdf-a4-3.2.3"; - src = fetchurl { - url = http://docs.python.org/ftp/python/doc/3.2.3/python-3.2.3-docs-pdf-a4.tar.bz2; - sha256 = "1lw1sbk3nx70k2zxgjc36ryvyzlxndzsvhrxyzdy9sjfhasyd807"; - }; - installPhase = '' - mkdir -p $out/share/doc/python32 - cp -R ./ $out/share/doc/python32/pdf-a4 - ''; - meta = { - maintainers = [ lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/interpreters/python/docs/3.2-pdf-letter.nix b/pkgs/development/interpreters/python/docs/3.2-pdf-letter.nix deleted file mode 100644 index da9b0ce4dccb9..0000000000000 --- a/pkgs/development/interpreters/python/docs/3.2-pdf-letter.nix +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ stdenv, fetchurl, lib }: - -stdenv.mkDerivation rec { - name = "python32-docs-pdf-letter-3.2.3"; - src = fetchurl { - url = http://docs.python.org/ftp/python/doc/3.2.3/python-3.2.3-docs-pdf-letter.tar.bz2; - sha256 = "199ibzslw3zrwjd49582vc5q6ghp5ig8zalvslawz0xkz1226wg2"; - }; - installPhase = '' - mkdir -p $out/share/doc/python32 - cp -R ./ $out/share/doc/python32/pdf-letter - ''; - meta = { - maintainers = [ lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/interpreters/python/docs/3.2-text.nix b/pkgs/development/interpreters/python/docs/3.2-text.nix deleted file mode 100644 index 3ceef2431f737..0000000000000 --- a/pkgs/development/interpreters/python/docs/3.2-text.nix +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated and will be overwritten by ./generate.sh - -{ stdenv, fetchurl, lib }: - -stdenv.mkDerivation rec { - name = "python32-docs-text-3.2.3"; - src = fetchurl { - url = http://docs.python.org/ftp/python/doc/3.2.3/python-3.2.3-docs-text.tar.bz2; - sha256 = "1jdc9rj2b4vsbvg5mq6vcdfa2b72avhhvjw7rn7k3kl521cvxs09"; - }; - installPhase = '' - mkdir -p $out/share/doc/python32 - cp -R ./ $out/share/doc/python32/text - ''; - meta = { - maintainers = [ lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/interpreters/python/docs/default.nix b/pkgs/development/interpreters/python/docs/default.nix index 16ade3af3f956..8f5fc810fb71a 100644 --- a/pkgs/development/interpreters/python/docs/default.nix +++ b/pkgs/development/interpreters/python/docs/default.nix @@ -7,15 +7,6 @@ pythonDocs = { python33 = import ./3.3-html.nix { inherit stdenv fetchurl lib; }; - python32 = import ./3.2-html.nix { - inherit stdenv fetchurl lib; - }; - python31 = import ./3.1-html.nix { - inherit stdenv fetchurl lib; - }; - python30 = import ./3.0-html.nix { - inherit stdenv fetchurl lib; - }; python27 = import ./2.7-html.nix { inherit stdenv fetchurl lib; }; @@ -28,15 +19,6 @@ pythonDocs = { python33 = import ./3.3-pdf-a4.nix { inherit stdenv fetchurl lib; }; - python32 = import ./3.2-pdf-a4.nix { - inherit stdenv fetchurl lib; - }; - python31 = import ./3.1-pdf-a4.nix { - inherit stdenv fetchurl lib; - }; - python30 = import ./3.0-pdf-a4.nix { - inherit stdenv fetchurl lib; - }; python27 = import ./2.7-pdf-a4.nix { inherit stdenv fetchurl lib; }; @@ -49,15 +31,6 @@ pythonDocs = { python33 = import ./3.3-pdf-letter.nix { inherit stdenv fetchurl lib; }; - python32 = import ./3.2-pdf-letter.nix { - inherit stdenv fetchurl lib; - }; - python31 = import ./3.1-pdf-letter.nix { - inherit stdenv fetchurl lib; - }; - python30 = import ./3.0-pdf-letter.nix { - inherit stdenv fetchurl lib; - }; python27 = import ./2.7-pdf-letter.nix { inherit stdenv fetchurl lib; }; @@ -70,15 +43,6 @@ pythonDocs = { python33 = import ./3.3-text.nix { inherit stdenv fetchurl lib; }; - python32 = import ./3.2-text.nix { - inherit stdenv fetchurl lib; - }; - python31 = import ./3.1-text.nix { - inherit stdenv fetchurl lib; - }; - python30 = import ./3.0-text.nix { - inherit stdenv fetchurl lib; - }; python27 = import ./2.7-text.nix { inherit stdenv fetchurl lib; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 983fea1bd577a..8a1a3c5a53612 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9583,11 +9583,6 @@ in self = python27Packages; })); - python32Packages = callPackage ./python-packages.nix { - python = python32; - self = python32Packages; - }; - python33Packages = callPackage ./python-packages.nix { python = python33; self = python33Packages; -- cgit 1.4.1 From 8484328a349d632ca18e2cbd7ffeb8e7c4a7610e Mon Sep 17 00:00:00 2001 From: Sebastian Jordan Date: Sun, 15 May 2016 13:36:01 +0200 Subject: guile-sdl2: init at 0.1.0 --- lib/maintainers.nix | 1 + .../guile-modules/guile-sdl2/default.nix | 47 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 50 insertions(+) create mode 100644 pkgs/development/guile-modules/guile-sdl2/default.nix (limited to 'pkgs/development') diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 41fdf48153d9a..b01823507bd65 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -328,6 +328,7 @@ schmitthenner = "Fabian Schmitthenner "; schristo = "Scott Christopher "; scolobb = "Sergiu Ivanov "; + seppeljordan = "Sebastian Jordan "; sepi = "Raffael Mancini "; sheenobu = "Sheena Artrip "; sheganinans = "Aistis Raulinaitis "; diff --git a/pkgs/development/guile-modules/guile-sdl2/default.nix b/pkgs/development/guile-modules/guile-sdl2/default.nix new file mode 100644 index 0000000000000..5a166f3703ee6 --- /dev/null +++ b/pkgs/development/guile-modules/guile-sdl2/default.nix @@ -0,0 +1,47 @@ +{ stdenv, + SDL2, + SDL2_image, + SDL2_ttf, + SDL2_mixer, + autoconf, + automake, + fetchgit, + guile, + libtool, + pkgconfig, + buildEnv + }: +stdenv.mkDerivation rec { + name = "guile-sdl2-${version}"; + version = "0.1.0"; + buildInputs = [ autoconf + automake + SDL2 + SDL2_image + SDL2_ttf + SDL2_mixer + libtool + guile + pkgconfig ]; + src = fetchgit { + url = "git://dthompson.us/guile-sdl2.git"; + rev = "048f80ddb5c6b03b87bba199a99a6f22d911bfff"; + sha256 = "1wbx157xd8lsv4vs8igqy3qw8yym5r5s7z94an18kwbf89npmf5d"; + }; + preConfigurePhases = [ "bootstrapPhase" ]; + bootstrapPhase = '' + ./bootstrap + ''; + configureFlags = [ "--with-libsdl2-prefix=${SDL2}" + "--with-libsdl2-image-prefix=${SDL2_image}" + "--with-libsdl2-ttf-prefix=${SDL2_ttf}" + "--with-libsdl2-mixer-prefix=${SDL2_mixer}"]; + makeFlags = ["GUILE_AUTO_COMPILE=0"]; + meta = { + description = "Bindings to SDL2 for GNU Guile"; + homepage = "https://git.dthompson.us/guile-sdl2.git"; + license = stdenv.lib.licenses.gpl3; + maintainers = [ stdenv.lib.maintainers.seppeljordan ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 687119b8bcc0d..f98cd24d17525 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5770,6 +5770,8 @@ in guile-sdl = callPackage ../development/guile-modules/guile-sdl { }; + guile-sdl2 = callPackage ../development/guile-modules/guile-sdl2 { }; + guile-xcb = callPackage ../development/guile-modules/guile-xcb { }; pharo-vms = callPackage_i686 ../development/pharo/vm { }; -- cgit 1.4.1 From 85148e8ed29d5f8210a54f4e4a3465462724542e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 15 May 2016 23:19:09 +0200 Subject: webkitgtk212x: add missing X library inputs Conservatively added to buildInputs, but not really sure why libXdmcp is native. @bendlas? --- pkgs/development/libraries/webkitgtk/2.12.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/webkitgtk/2.12.nix b/pkgs/development/libraries/webkitgtk/2.12.nix index 70467a253600a..d57ec6ded782d 100644 --- a/pkgs/development/libraries/webkitgtk/2.12.nix +++ b/pkgs/development/libraries/webkitgtk/2.12.nix @@ -46,7 +46,8 @@ stdenv.mkDerivation rec { gtk2 wayland libwebp enchant libnotify libxml2 libsecret libxslt harfbuzz libpthreadstubs gst-plugins-base libxkbcommon epoxy at_spi2_core - ] ++ optional enableGeoLocation geoclue2; + ] ++ optional enableGeoLocation geoclue2 + ++ (with xlibs; [ libXt libXtst ]); propagatedBuildInputs = [ libsoup gtk3 -- cgit 1.4.1 From ff0c5fa7aa21d3f31f631d887b88b5b3126c3b2e Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 15 May 2016 22:21:34 +0200 Subject: SlimerJS: 0.9.6.2015.08.20 -> 0.10.0 (git->release) --- pkgs/development/tools/slimerjs/default.nix | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/slimerjs/default.nix b/pkgs/development/tools/slimerjs/default.nix index add85805500aa..1228484fc65e3 100644 --- a/pkgs/development/tools/slimerjs/default.nix +++ b/pkgs/development/tools/slimerjs/default.nix @@ -3,13 +3,11 @@ let s = # Generated upstream information rec { baseName="slimerjs"; - version="0.9.6.2015.08.20"; + version="0.10.0"; name="${baseName}-${version}"; - hash="0wry296iv63bmvm3qbkbgk42nbs80cbir0kv27v0ah5f6kvjc9cq"; - #url="http://download.slimerjs.org/releases/0.9.6/slimerjs-0.9.6.zip"; - url = "https://github.com/laurentj/slimerjs.git"; - rev = "87e0ff1d666897754a914131d8f1744195ee4d7a"; - sha256="0ifgr8pi40id7vcv8ipc754bys22bhij0kkhd691285x19f52alc"; + hash="1yqs4f90bp8vxa7n8y1a3hi9hd7374hq9qa44xgfb4l5kn6h1f40"; + url="http://download.slimerjs.org/releases/0.10.0/slimerjs-0.10.0.zip"; + sha256="1yqs4f90bp8vxa7n8y1a3hi9hd7374hq9qa44xgfb4l5kn6h1f40"; }; buildInputs = [ unzip zip @@ -18,12 +16,12 @@ in stdenv.mkDerivation { inherit (s) name version; inherit buildInputs; - #src = fetchurl { - # inherit (s) url sha256; - #}; - src = fetchgit { - inherit (s) url sha256 rev; + src = fetchurl { + inherit (s) url sha256; }; + #src = fetchgit { + # inherit (s) url sha256 rev; + #}; preConfigure = '' test -d src && cd src test -f omni.ja || zip omni.ja -r */ -- cgit 1.4.1 From 40fd39e88e0b85792c83b09421941f06081119ce Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 15 May 2016 22:23:22 +0200 Subject: libre: 0.4.15 -> 0.4.16 --- pkgs/development/libraries/libre/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libre/default.nix b/pkgs/development/libraries/libre/default.nix index 243b4b9420ae4..3038b9f83d368 100644 --- a/pkgs/development/libraries/libre/default.nix +++ b/pkgs/development/libraries/libre/default.nix @@ -1,10 +1,10 @@ {stdenv, fetchurl, zlib, openssl}: stdenv.mkDerivation rec { - version = "0.4.15"; + version = "0.4.16"; name = "libre-${version}"; src=fetchurl { url = "http://www.creytiv.com/pub/re-${version}.tar.gz"; - sha256 = "0yvjc3hvjk29irdii2h1hpq4cg9l1c71jfvglz67y1pc89z63yax"; + sha256 = "0aabz9hjw47xqis2xr3rvxw1slpig4hq9wkl8fbdpgq2fgrzqdmw"; }; buildInputs = [zlib openssl]; makeFlags = [ -- cgit 1.4.1 From 4b979eef29d69d631e68a0614a25f976d34a67fd Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Mon, 16 May 2016 10:09:02 +0300 Subject: atlas: put the name suffix where it belongs --- pkgs/development/libraries/science/math/atlas/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/science/math/atlas/default.nix b/pkgs/development/libraries/science/math/atlas/default.nix index 1fa48ffea91c7..23f12e7cf7628 100644 --- a/pkgs/development/libraries/science/math/atlas/default.nix +++ b/pkgs/development/libraries/science/math/atlas/default.nix @@ -49,7 +49,7 @@ let in stdenv.mkDerivation { - name = "atlas-${version}" + optionalString withLapack "-with-lapack"; + name = "atlas${optionalString withLapack "-with-lapack"}-${version}"; src = fetchurl { url = "mirror://sourceforge/math-atlas/atlas${version}.tar.bz2"; -- cgit 1.4.1 From 58ec2d47eafb3bb754790037852411b3eb15116f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 15 May 2016 13:37:29 +0200 Subject: Python 3.3: be explicit about buildInputs --- pkgs/development/interpreters/python/3.3/default.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix index 60d56597ea0f8..be770a85a1ecd 100644 --- a/pkgs/development/interpreters/python/3.3/default.nix +++ b/pkgs/development/interpreters/python/3.3/default.nix @@ -32,6 +32,8 @@ stdenv.mkDerivation { pythonVersion = majorVersion; inherit majorVersion version; + inherit buildInputs; + src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"; sha256 = "0gsxpgd5p4mwd01gw501vsyahncyw3h9836ypkr3y32kgazy89jj"; -- cgit 1.4.1 From 56e96b8b10ec2552eacb8c76a7df0960517f213b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 15 May 2016 13:37:51 +0200 Subject: Python 3.4: be explicit about buildInputs --- pkgs/development/interpreters/python/3.4/default.nix | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/python/3.4/default.nix b/pkgs/development/interpreters/python/3.4/default.nix index 517dfc3d8b273..1f6a929f9cdc8 100644 --- a/pkgs/development/interpreters/python/3.4/default.nix +++ b/pkgs/development/interpreters/python/3.4/default.nix @@ -27,15 +27,27 @@ let fullVersion = "${version}"; buildInputs = filter (p: p != null) [ - zlib bzip2 lzma gdbm sqlite db readline ncurses openssl tcl tk libX11 xproto - ]; + zlib + bzip2 + lzma + gdbm + sqlite + db + readline + ncurses + openssl + tcl + tk + libX11 + xproto + ] ++ optionals stdenv.isDarwin [ CF configd ]; in stdenv.mkDerivation { name = "python3-${fullVersion}"; pythonVersion = majorVersion; inherit majorVersion version; - buildInputs = optionals stdenv.isDarwin [ CF configd ]; + inherit buildInputs; src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz"; -- cgit 1.4.1 From 91834cfe3e332903ae05723b638726811b09b233 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 15 May 2016 13:38:02 +0200 Subject: Python 3.5: be explicit about buildInputs --- pkgs/development/interpreters/python/3.5/default.nix | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix index 15e02d1ab3edd..91ad8fda8068a 100644 --- a/pkgs/development/interpreters/python/3.5/default.nix +++ b/pkgs/development/interpreters/python/3.5/default.nix @@ -27,15 +27,27 @@ let fullVersion = "${version}"; buildInputs = filter (p: p != null) [ - zlib bzip2 lzma gdbm sqlite db readline ncurses openssl tcl tk libX11 xproto - ]; + zlib + bzip2 + lzma + gdbm + sqlite + db + readline + ncurses + openssl + tcl + tk + libX11 + xproto + ] ++ optionals stdenv.isDarwin [ CF configd ]; in stdenv.mkDerivation { name = "python3-${fullVersion}"; pythonVersion = majorVersion; inherit majorVersion version; - buildInputs = optionals stdenv.isDarwin [ CF configd ]; + inherit buildInputs; src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz"; -- cgit 1.4.1 From 903582798636ac406dbe7b82c502d59fba7b4293 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 16 May 2016 08:08:50 -0500 Subject: ats2: 0.2.6 -> 0.2.7 --- pkgs/development/compilers/ats2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/ats2/default.nix b/pkgs/development/compilers/ats2/default.nix index 8b4ea36330c0a..51b3cf11823f1 100644 --- a/pkgs/development/compilers/ats2/default.nix +++ b/pkgs/development/compilers/ats2/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "ats2-${version}"; - version = "0.2.6"; + version = "0.2.7"; src = fetchurl { url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz"; - sha256 = "0hfaw8mrxrmb9kdbz5sp4nfjsmncmq6zqwm1n2x2p6arn0za6y9i"; + sha256 = "1w9cncahv0vkqsj4vlfnn7bn61jvgxgjhk7wbppcm3yhb48pkmda"; }; buildInputs = [ gmp ]; -- cgit 1.4.1 From 3583e2a24de4c417bdeace1d2a86b4c981b0cfd6 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 13:13:51 +0200 Subject: complexity: 1.3 -> 1.10 --- pkgs/development/tools/misc/complexity/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/misc/complexity/default.nix b/pkgs/development/tools/misc/complexity/default.nix index 35c332f287734..60a0370e86e21 100644 --- a/pkgs/development/tools/misc/complexity/default.nix +++ b/pkgs/development/tools/misc/complexity/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "complexity-${version}"; - version = "1.3"; + version = "1.10"; src = fetchurl { url = "mirror://gnu/complexity/${name}.tar.gz"; - sha256 = "19bc64sxpqd5rqylqaa7dijz2x7qp2b0dg3ah3fb3qbcvd8b4wgy"; + sha256 = "1vfns9xm7w0wrz12a3w15slrqnrfh6qxk15nv7qkj3irll3ff522"; }; buildInputs = [ autogen ]; -- cgit 1.4.1 From 48f94e2aea5b3b55f32f12e4b5c413d101d56bdb Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 13:13:57 +0200 Subject: cloog: 0.18.3 -> 0.18.4 --- pkgs/development/libraries/cloog/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/cloog/default.nix b/pkgs/development/libraries/cloog/default.nix index 55f7059717010..5da29273a8be7 100644 --- a/pkgs/development/libraries/cloog/default.nix +++ b/pkgs/development/libraries/cloog/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv, gmp, isl }: stdenv.mkDerivation rec { - name = "cloog-0.18.3"; + name = "cloog-0.18.4"; src = fetchurl { url = "http://www.bastoul.net/cloog/pages/download/count.php3?url=./${name}.tar.gz"; - sha256 = "0d4pqs4rs1qx0302wpv06ww1nwyg4yv5cw9qpfzxz36b19s6q326"; + sha256 = "03km1aqaiy3sbqc2f046ms9x0mlmacxlvs5rxsvjj8nf20vxynij"; }; buildInputs = [ gmp ]; -- cgit 1.4.1 From 673b6d6d019210f01b4292a7e65377b5f7c2e004 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 13:14:02 +0200 Subject: bwidget: 1.9.8 -> 1.9.10 --- pkgs/development/libraries/bwidget/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/bwidget/default.nix b/pkgs/development/libraries/bwidget/default.nix index ed670e61243d0..72b60391f4fd2 100644 --- a/pkgs/development/libraries/bwidget/default.nix +++ b/pkgs/development/libraries/bwidget/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "bwidget-${version}"; - version = "1.9.8"; + version = "1.9.10"; src = fetchurl { url = "mirror://sourceforge/tcllib/bwidget-${version}.tar.gz"; - sha256 = "055kpl3ghznk028jnhzsa3p48qgipckfzn2liwq932crxviicl2l"; + sha256 = "025lmriaq4qqy99lh826wx2cnqqgxn7srz4m3q06bl6r9ch15hr6"; }; dontBuild = true; -- cgit 1.4.1 From 950764f9f845f9428b2375ff4a44be0d4fe104b8 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 13:15:30 +0200 Subject: gdcm: 2.4.4 -> 2.4.6 --- pkgs/development/libraries/gdcm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/gdcm/default.nix b/pkgs/development/libraries/gdcm/default.nix index 4663f7aac2247..0ca281b0722f2 100644 --- a/pkgs/development/libraries/gdcm/default.nix +++ b/pkgs/development/libraries/gdcm/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, cmake }: stdenv.mkDerivation rec { - version = "2.4.4"; + version = "2.4.6"; name = "gdcm-${version}"; src = fetchurl { url = "mirror://sourceforge/gdcm/${name}.tar.bz2"; - sha256 = "07svgp7c928sw712gq6rx4h0c6wp2kr1n8fmxjlzb031l51jzkf5"; + sha256 = "0rgqgkjyqgld0hpa311z8cddp42v9ihzidyanwyxqpv3jmcrlsfk"; }; dontUseCmakeBuildDir = true; -- cgit 1.4.1 From 26361453689952838856c7a5cb6e60a243e0769b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 13:16:37 +0200 Subject: incrtcl: 3.4.1 -> 4.0.4 --- pkgs/development/libraries/incrtcl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/incrtcl/default.nix b/pkgs/development/libraries/incrtcl/default.nix index e6474abf11c11..a8f29b60c2b09 100644 --- a/pkgs/development/libraries/incrtcl/default.nix +++ b/pkgs/development/libraries/incrtcl/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "incrtcl-${version}"; - version = "3.4.1"; + version = "4.0.4"; src = fetchurl { - url = mirror://sourceforge/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itcl3.4.1.tar.gz; - sha256 = "0s457j9mn3c1wjj43iwy3zwhyz980jlyqn3s9487da9dwwn86c2k"; + url = mirror://sourceforge/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itcl4.0.4.tar.gz; + sha256 = "1ppc9b13cvmc6rp77k7dl2zb26xk0z30vxygmr4h1xr2r8w091k3"; }; buildInputs = [ tcl ]; -- cgit 1.4.1 From 8f2eb1b7ff652513e804817a44e4c40760ae4bd6 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 13:16:41 +0200 Subject: http-parser: 2.6.1 -> 2.7.0 --- pkgs/development/libraries/http-parser/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/http-parser/default.nix b/pkgs/development/libraries/http-parser/default.nix index 6dd8efddaa65d..ddbcc3a26c290 100644 --- a/pkgs/development/libraries/http-parser/default.nix +++ b/pkgs/development/libraries/http-parser/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, gyp, utillinux, python, fixDarwinDylibNames }: let - version = "2.6.1"; + version = "2.7.0"; in stdenv.mkDerivation { name = "http-parser-${version}"; src = fetchurl { url = "https://github.com/joyent/http-parser/archive/v${version}.tar.gz"; - sha256 = "1b9ahv77zryx1z6j7sax2asx0gj209wh2244q9crj7hj14h8bkj8"; + sha256 = "0rqij6v6wv1giwx4prfa082kw1nka5d9vlb06zkc8mwszq1vzidh"; }; patches = [ ./build-shared.patch ]; -- cgit 1.4.1 From 81a3a5b3d44c277d19af416ed7491e0c64e6894d Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 13:16:45 +0200 Subject: guile_ncurses: 1.4 -> 1.7 --- pkgs/development/guile-modules/guile-ncurses/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/guile-modules/guile-ncurses/default.nix b/pkgs/development/guile-modules/guile-ncurses/default.nix index f6b946dfd4cc5..a5f12e2cfe319 100644 --- a/pkgs/development/guile-modules/guile-ncurses/default.nix +++ b/pkgs/development/guile-modules/guile-ncurses/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv, guile, ncurses, libffi }: stdenv.mkDerivation rec { - name = "guile-ncurses-1.4"; + name = "guile-ncurses-1.7"; src = fetchurl { url = "mirror://gnu/guile-ncurses/${name}.tar.gz"; - sha256 = "070wl664lsm14hb6y9ch97x9q6cns4k6nxgdzbdzi5byixn74899"; + sha256 = "153vv75gb7l62sp3666rc97i63rnaqbx2rjar7d9b5w81fhwv4r5"; }; buildInputs = [ guile ncurses libffi ]; -- cgit 1.4.1 From 3c8681646d26ff961ff72949e33ad81f372f7333 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 13:18:56 +0200 Subject: soundtouch: 1.8.0 -> 1.9.2 --- pkgs/development/libraries/soundtouch/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/soundtouch/default.nix b/pkgs/development/libraries/soundtouch/default.nix index dcb09af84f95a..14eb5a24056f7 100644 --- a/pkgs/development/libraries/soundtouch/default.nix +++ b/pkgs/development/libraries/soundtouch/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { pName = "soundtouch"; - name = "${pName}-1.8.0"; + name = "${pName}-1.9.2"; src = fetchurl { url = "http://www.surina.net/soundtouch/${name}.tar.gz"; - sha256 = "3d4161d74ca25c5a98c69dbb8ea10fd2be409ba1a3a0bf81db407c4c261f166b"; + sha256 = "04y5l56yn4jvwpv9mn1p3m2vi5kdym9xpdac8pmhwhl13r8qdsya"; }; buildInputs = [ autoconf automake libtool ]; -- cgit 1.4.1 From 17cf80dfb5990f144c25901ba193dd2350e63663 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 13:19:10 +0200 Subject: log4cplus: 1.1.2 -> 1.2.0 --- pkgs/development/libraries/log4cplus/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/log4cplus/default.nix b/pkgs/development/libraries/log4cplus/default.nix index 9d07f033eda0b..6d63e8367f792 100644 --- a/pkgs/development/libraries/log4cplus/default.nix +++ b/pkgs/development/libraries/log4cplus/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl }: let - name = "log4cplus-1.1.2"; + name = "log4cplus-1.2.0"; in stdenv.mkDerivation { inherit name; src = fetchurl { url = "mirror://sourceforge/log4cplus/${name}.tar.bz2"; - sha256 = "14zdfaxnxjrnfdjipmcrvsqp8pj1s4wscphvg4jvbp3kd34mcvf4"; + sha256 = "1fb3g9l12sps3mv4xjiql2kcvj439mww3skz735y7113cnlcf338"; }; meta = { -- cgit 1.4.1 From e958e827fe3bd29f628426402c00cd8648977f42 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 13:19:17 +0200 Subject: libgit2: 0.23.2 -> 0.24.1 --- pkgs/development/libraries/git2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/git2/default.nix b/pkgs/development/libraries/git2/default.nix index 3cf429ab1d739..3e9e0bea8e3b4 100644 --- a/pkgs/development/libraries/git2/default.nix +++ b/pkgs/development/libraries/git2/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, pkgconfig, cmake, zlib, python, libssh2, openssl, http-parser, libiconv }: stdenv.mkDerivation (rec { - version = "0.23.2"; + version = "0.24.1"; name = "libgit2-${version}"; src = fetchurl { name = "${name}.tar.gz"; url = "https://github.com/libgit2/libgit2/tarball/v${version}"; - sha256 = "1d3901bmgvdnmzrx21afi1d0llsqmca3ckj942p0i2wpdpr1kbcp"; + sha256 = "0rw80480dx2f6a2wbb1bwixygg1iwq3r7vwhxdmkkf4lpxd35jhd"; }; cmakeFlags = "-DTHREADSAFE=ON"; -- cgit 1.4.1 From da998cffcdc27c13822d0cc713cb93cb94824ee0 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 16 May 2016 14:10:29 -0400 Subject: gsasl: Maintain, fix gssapi support --- pkgs/development/libraries/gsasl/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/gsasl/default.nix b/pkgs/development/libraries/gsasl/default.nix index 1ca5d019b2203..720ff06ceaa50 100644 --- a/pkgs/development/libraries/gsasl/default.nix +++ b/pkgs/development/libraries/gsasl/default.nix @@ -1,4 +1,4 @@ -{ fetchurl, stdenv, gss, libidn, krb5Full }: +{ fetchurl, stdenv, gss, libidn, kerberos }: stdenv.mkDerivation rec { name = "gsasl-1.8.0"; @@ -8,11 +8,9 @@ stdenv.mkDerivation rec { sha256 = "1rci64cxvcfr8xcjpqc4inpfq7aw4snnsbf5xz7d30nhvv8n40ii"; }; - buildInputs = [ libidn ] - ++ stdenv.lib.optional (!stdenv.isDarwin) gss - ++ stdenv.lib.optional stdenv.isDarwin krb5Full; + buildInputs = [ libidn kerberos ]; - configureFlags = stdenv.lib.optionalString stdenv.isDarwin "--with-gssapi-impl=mit"; + configureFlags = "--with-gssapi-impl=mit"; doCheck = true; @@ -29,7 +27,7 @@ stdenv.mkDerivation rec { homepage = http://www.gnu.org/software/gsasl/; license = stdenv.lib.licenses.gpl3Plus; - maintainers = with stdenv.lib.maintainers; [ ]; + maintainers = with stdenv.lib.maintainers; [ shlevy ]; platforms = stdenv.lib.platforms.all; }; } -- cgit 1.4.1 From 2159ea5e4cb78493a15202fdd902af1dd43887d3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 16 May 2016 18:39:12 +0200 Subject: include-what-you-use: 0.5 -> 0.6 * Added mappings for Qt 5.4. * Added better analysis of uses in macros. * Added --no_comments switch to suppress why-comments. * Fixed bug with global namespace qualifier on friend declarations. * Fixed bug in fix_includes.py generating invalid diff output. --- pkgs/development/tools/analysis/include-what-you-use/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/analysis/include-what-you-use/default.nix b/pkgs/development/tools/analysis/include-what-you-use/default.nix index 374f0fee3f110..bd3f33d169a16 100644 --- a/pkgs/development/tools/analysis/include-what-you-use/default.nix +++ b/pkgs/development/tools/analysis/include-what-you-use/default.nix @@ -3,10 +3,10 @@ stdenv.mkDerivation rec { name = "include-what-you-use-${version}"; # Also bump llvmPackages in all-packages.nix to the supported version! - version = "0.5"; + version = "0.6"; src = fetchurl { - sha256 = "19pwhgwvfr86n8ks099p9r02v7zh8d3qs7g7snzkhpdgq1azww85"; + sha256 = "0n3z4pfbby0rl338irbs4yvcmjfnza82xg9a8r9amyl0bkfasbxb"; url = "${meta.homepage}/downloads/${name}.src.tar.gz"; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 351b3a781d3cc..9b614b8e83dac 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6169,7 +6169,7 @@ in }; include-what-you-use = callPackage ../development/tools/analysis/include-what-you-use { - llvmPackages = llvmPackages_37; + llvmPackages = llvmPackages_38; }; indent = callPackage ../development/tools/misc/indent { }; -- cgit 1.4.1 From 2b3e99458723d61bd911bd9885a1645d6b1b55c0 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 16 May 2016 19:00:49 +0200 Subject: webkitgtk212x: move libXdmcp to buildInputs --- pkgs/development/libraries/webkitgtk/2.12.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/webkitgtk/2.12.nix b/pkgs/development/libraries/webkitgtk/2.12.nix index d57ec6ded782d..313f67b1b6aca 100644 --- a/pkgs/development/libraries/webkitgtk/2.12.nix +++ b/pkgs/development/libraries/webkitgtk/2.12.nix @@ -40,14 +40,14 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake perl python ruby bison gperf sqlite pkgconfig gettext gobjectIntrospection - ] ++ (with xlibs; [ libXdmcp ]); + ]; buildInputs = [ gtk2 wayland libwebp enchant libnotify libxml2 libsecret libxslt harfbuzz libpthreadstubs gst-plugins-base libxkbcommon epoxy at_spi2_core ] ++ optional enableGeoLocation geoclue2 - ++ (with xlibs; [ libXt libXtst ]); + ++ (with xlibs; [ libXdmcp libXt libXtst ]); propagatedBuildInputs = [ libsoup gtk3 -- cgit 1.4.1 From 8e462995ba6deaeec9fd6dc6d3b9a110c08e5955 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 16 May 2016 22:30:20 +0200 Subject: Bring my stdenv.lib.maintainers user name in line with my github nick. --- lib/maintainers.nix | 2 +- pkgs/applications/audio/audacious/default.nix | 2 +- pkgs/applications/editors/emacs-24/default.nix | 2 +- pkgs/applications/editors/emacs-25/default.nix | 2 +- .../editors/emacs-modes/haskell/default.nix | 2 +- .../editors/emacs-modes/icicles/default.nix | 2 - .../editors/emacs-modes/let-alist/default.nix | 1 - .../editors/emacs-modes/maude/default.nix | 2 +- pkgs/applications/graphics/gocr/default.nix | 2 - .../graphics/sane/backends/generic.nix | 2 +- pkgs/applications/graphics/sane/frontends.nix | 2 +- pkgs/applications/graphics/sane/xsane.nix | 2 +- pkgs/applications/misc/fetchmail/default.nix | 2 +- pkgs/applications/misc/grip/default.nix | 2 +- pkgs/applications/misc/ikiwiki/default.nix | 2 +- pkgs/applications/misc/jbidwatcher/default.nix | 1 - pkgs/applications/misc/xpdf/default.nix | 2 +- .../networking/cluster/hadoop/default.nix | 1 - pkgs/applications/networking/esniper/default.nix | 2 +- .../networking/sniffers/wireshark/default.nix | 2 +- .../applications/networking/sync/rsync/default.nix | 2 +- pkgs/applications/office/antiword/default.nix | 2 +- pkgs/applications/office/gnucash/2.6.nix | 2 +- pkgs/applications/office/gnucash/default.nix | 2 +- pkgs/applications/office/ledger/2.6.3.nix | 2 +- pkgs/applications/office/ledger/default.nix | 2 +- .../science/astronomy/celestia/default.nix | 2 +- .../science/astronomy/gravit/default.nix | 1 - .../science/astronomy/stellarium/default.nix | 2 +- .../science/electronics/tkgate/1.x.nix | 2 +- pkgs/applications/science/math/R/default.nix | 2 +- .../science/math/eukleides/default.nix | 2 +- pkgs/applications/science/math/maxima/default.nix | 2 +- pkgs/applications/science/math/pssp/default.nix | 1 - .../applications/science/math/wxmaxima/default.nix | 2 +- .../version-management/cvs/default.nix | 2 - .../git-and-tools/git/default.nix | 2 +- .../git-and-tools/stgit/default.nix | 2 +- .../git-and-tools/topgit/default.nix | 2 +- .../version-management/rcs/default.nix | 2 +- pkgs/development/compilers/aldor/default.nix | 1 - pkgs/development/compilers/gcc/4.8/default.nix | 2 +- pkgs/development/compilers/gcc/4.9/default.nix | 2 +- pkgs/development/compilers/gcc/5/default.nix | 2 +- pkgs/development/compilers/gcc/6/default.nix | 2 +- pkgs/development/compilers/ghc/6.12.3.nix | 2 +- pkgs/development/compilers/ghc/7.0.4.nix | 2 +- pkgs/development/compilers/ghc/7.10.2.nix | 2 +- pkgs/development/compilers/ghc/7.10.3.nix | 2 +- pkgs/development/compilers/ghc/7.2.2.nix | 2 +- pkgs/development/compilers/ghc/7.4.2.nix | 2 +- pkgs/development/compilers/ghc/7.6.3.nix | 2 +- pkgs/development/compilers/ghc/7.8.3.nix | 2 +- pkgs/development/compilers/ghc/7.8.4.nix | 2 +- pkgs/development/compilers/ghc/8.0.1.nix | 2 +- pkgs/development/compilers/ghc/head.nix | 2 +- pkgs/development/compilers/gprolog/default.nix | 2 +- pkgs/development/compilers/jhc/default.nix | 2 +- pkgs/development/compilers/swi-prolog/default.nix | 2 +- pkgs/development/compilers/yap/default.nix | 2 +- .../haskell-modules/configuration-hackage2nix.yaml | 2 +- .../haskell-modules/hackage-packages.nix | 72 +++++++++++----------- pkgs/development/interpreters/erlang/R16.nix | 2 - pkgs/development/interpreters/erlang/R17.nix | 2 - pkgs/development/interpreters/lua-5/5.1.nix | 1 - pkgs/development/interpreters/lua-5/5.2.nix | 1 - pkgs/development/interpreters/lua-5/5.3.nix | 1 - pkgs/development/interpreters/maude/default.nix | 2 +- .../interpreters/python/2.6/default.nix | 2 +- .../interpreters/python/2.7/default.nix | 2 +- .../interpreters/python/3.3/default.nix | 2 +- .../interpreters/python/3.4/default.nix | 2 +- .../interpreters/python/3.5/default.nix | 2 +- pkgs/development/libraries/adns/default.nix | 2 +- pkgs/development/libraries/boost/generic.nix | 2 +- pkgs/development/libraries/buddy/default.nix | 2 +- pkgs/development/libraries/cppunit/default.nix | 1 - pkgs/development/libraries/cyrus-sasl/default.nix | 1 - pkgs/development/libraries/gmp/5.1.x.nix | 2 +- pkgs/development/libraries/gmp/6.x.nix | 2 +- pkgs/development/libraries/mesa/default.nix | 2 +- pkgs/development/libraries/nlopt/default.nix | 1 - pkgs/development/libraries/openssl/default.nix | 2 +- pkgs/development/libraries/pcre/default.nix | 1 - .../libraries/science/math/liblapack/3.5.0.nix | 2 - .../libraries/science/math/liblapack/default.nix | 2 - pkgs/development/libraries/tbb/default.nix | 2 +- pkgs/development/libraries/tecla/default.nix | 2 +- pkgs/development/mobile/flashtool/default.nix | 1 - .../tools/analysis/cppcheck/default.nix | 2 +- .../tools/build-managers/gnumake/4.1/default.nix | 1 - .../tools/build-managers/scons/default.nix | 1 - .../tools/documentation/doxygen/default.nix | 1 - .../tools/haskell/cabal2nix/cabal2nix.nix | 2 +- .../haskell/cabal2nix/distribution-nixpkgs.nix | 2 +- .../tools/haskell/cabal2nix/hackage2nix.nix | 2 +- pkgs/development/tools/misc/astyle/default.nix | 1 - .../tools/misc/automake/automake-1.13.x.nix | 2 - .../tools/misc/automake/automake-1.14.x.nix | 2 - .../tools/misc/automake/automake-1.15.x.nix | 2 - pkgs/development/tools/misc/ctags/default.nix | 1 - pkgs/development/tools/misc/distcc/default.nix | 2 +- pkgs/development/tools/parsing/bison/2.x.nix | 1 - pkgs/development/tools/parsing/bison/3.x.nix | 1 - pkgs/games/banner/default.nix | 2 +- pkgs/games/stockfish/default.nix | 2 +- pkgs/misc/cups/default.nix | 2 +- pkgs/misc/cups/drivers/splix/default.nix | 2 +- pkgs/os-specific/linux/ipsec-tools/default.nix | 2 - pkgs/os-specific/linux/libsmbios/default.nix | 2 - pkgs/os-specific/linux/lxc/default.nix | 2 +- pkgs/os-specific/linux/pmtools/default.nix | 2 - pkgs/os-specific/linux/systemd/default.nix | 3 +- pkgs/servers/dns/bind/default.nix | 2 +- pkgs/servers/http/apache-httpd/2.2.nix | 2 +- pkgs/servers/http/apache-httpd/2.4.nix | 2 +- .../http/apache-modules/mod_fastcgi/default.nix | 2 +- .../http/apache-modules/mod_wsgi/default.nix | 2 - pkgs/servers/http/mini-httpd/default.nix | 2 +- pkgs/servers/mail/dovecot/default.nix | 2 +- pkgs/servers/mail/mailman/default.nix | 2 +- pkgs/servers/mail/petidomo/default.nix | 2 +- pkgs/servers/mail/spamassassin/default.nix | 2 +- pkgs/shells/bash-completion/default.nix | 2 +- pkgs/shells/bash/default.nix | 2 +- pkgs/tools/admin/analog/default.nix | 2 +- pkgs/tools/backup/duplicity/default.nix | 2 +- pkgs/tools/compression/lzip/default.nix | 2 - pkgs/tools/compression/pigz/default.nix | 2 - pkgs/tools/filesystems/archivemount/default.nix | 2 - pkgs/tools/filesystems/davfs2/default.nix | 2 +- pkgs/tools/graphics/asymptote/default.nix | 2 +- pkgs/tools/graphics/editres/default.nix | 1 - pkgs/tools/graphics/graphviz/2.32.nix | 2 +- pkgs/tools/graphics/graphviz/default.nix | 2 +- pkgs/tools/graphics/mscgen/default.nix | 2 +- pkgs/tools/misc/fileschanged/default.nix | 1 - pkgs/tools/misc/screen/default.nix | 2 +- pkgs/tools/misc/youtube-dl/default.nix | 2 +- pkgs/tools/networking/mpack/default.nix | 1 - pkgs/tools/networking/nbd/default.nix | 2 +- pkgs/tools/networking/p2p/libtorrent/default.nix | 2 +- pkgs/tools/networking/p2p/rtorrent/default.nix | 2 +- pkgs/tools/networking/p2p/tahoe-lafs/default.nix | 2 +- pkgs/tools/networking/pdsh/default.nix | 2 +- pkgs/tools/networking/vpnc/default.nix | 1 - pkgs/tools/security/gnupg/21.nix | 2 +- pkgs/tools/security/tcpcrypt/default.nix | 2 - pkgs/tools/system/hardlink/default.nix | 2 - pkgs/tools/system/htop/default.nix | 2 +- pkgs/tools/system/ipmitool/default.nix | 2 - pkgs/tools/system/smartmontools/default.nix | 2 +- pkgs/tools/system/tree/default.nix | 2 +- pkgs/tools/typesetting/tex/texlive/moderncv.nix | 2 - .../typesetting/tex/texlive/moderntimeline.nix | 2 - 155 files changed, 143 insertions(+), 213 deletions(-) (limited to 'pkgs/development') diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 976219bc0942f..e106c3036f9fa 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -334,7 +334,7 @@ sheganinans = "Aistis Raulinaitis "; shell = "Shell Turner "; shlevy = "Shea Levy "; - simons = "Peter Simons "; + peti = "Peter Simons "; simonvandel = "Simon Vandel Sillesen "; sjagoe = "Simon Jagoe "; sjmackenzie = "Stewart Mackenzie "; diff --git a/pkgs/applications/audio/audacious/default.nix b/pkgs/applications/audio/audacious/default.nix index 9476fbaf33599..4046d839f7d89 100644 --- a/pkgs/applications/audio/audacious/default.nix +++ b/pkgs/applications/audio/audacious/default.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation { meta = { description = "Audio player"; homepage = http://audacious-media-player.org/; - maintainers = with stdenv.lib.maintainers; [ eelco simons ]; + maintainers = with stdenv.lib.maintainers; [ eelco ]; platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/applications/editors/emacs-24/default.nix b/pkgs/applications/editors/emacs-24/default.nix index 6359bd7bde182..7f765b9afc855 100644 --- a/pkgs/applications/editors/emacs-24/default.nix +++ b/pkgs/applications/editors/emacs-24/default.nix @@ -83,7 +83,7 @@ stdenv.mkDerivation rec { description = "GNU Emacs 24, the extensible, customizable text editor"; homepage = http://www.gnu.org/software/emacs/; license = licenses.gpl3Plus; - maintainers = with maintainers; [ chaoflow lovek323 simons the-kenny jwiegley ]; + maintainers = with maintainers; [ chaoflow lovek323 peti the-kenny jwiegley ]; platforms = platforms.all; longDescription = '' diff --git a/pkgs/applications/editors/emacs-25/default.nix b/pkgs/applications/editors/emacs-25/default.nix index 993436241291f..f798843639cb3 100644 --- a/pkgs/applications/editors/emacs-25/default.nix +++ b/pkgs/applications/editors/emacs-25/default.nix @@ -83,7 +83,7 @@ stdenv.mkDerivation rec { description = "GNU Emacs 25 (pre), the extensible, customizable text editor"; homepage = http://www.gnu.org/software/emacs/; license = licenses.gpl3Plus; - maintainers = with maintainers; [ chaoflow lovek323 simons the-kenny jwiegley ]; + maintainers = with maintainers; [ chaoflow lovek323 peti the-kenny jwiegley ]; platforms = platforms.all; longDescription = '' diff --git a/pkgs/applications/editors/emacs-modes/haskell/default.nix b/pkgs/applications/editors/emacs-modes/haskell/default.nix index 67d1d71c5ee0c..df34a47a6b3c5 100644 --- a/pkgs/applications/editors/emacs-modes/haskell/default.nix +++ b/pkgs/applications/editors/emacs-modes/haskell/default.nix @@ -34,6 +34,6 @@ stdenv.mkDerivation { description = "Haskell mode for Emacs"; platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/applications/editors/emacs-modes/icicles/default.nix b/pkgs/applications/editors/emacs-modes/icicles/default.nix index 1a145e1b64866..d70b9955c9821 100644 --- a/pkgs/applications/editors/emacs-modes/icicles/default.nix +++ b/pkgs/applications/editors/emacs-modes/icicles/default.nix @@ -36,7 +36,5 @@ stdenv.mkDerivation { homepage = "http://www.emacswiki.org/emacs/Icicles"; description = "Enhance Emacs minibuffer input with cycling and powerful completion"; license = stdenv.lib.licenses.gpl2Plus; - - maintainers = with stdenv.lib.maintainers; [ simons ]; }; } diff --git a/pkgs/applications/editors/emacs-modes/let-alist/default.nix b/pkgs/applications/editors/emacs-modes/let-alist/default.nix index 863e9f95d95ef..e90d6cf210d7f 100644 --- a/pkgs/applications/editors/emacs-modes/let-alist/default.nix +++ b/pkgs/applications/editors/emacs-modes/let-alist/default.nix @@ -22,6 +22,5 @@ stdenv.mkDerivation rec { homepage = "http://elpa.gnu.org/packages/let-alist.html"; description = "Easily let-bind values of an assoc-list by their names"; license = stdenv.lib.licenses.gpl3Plus; - maintainers = with stdenv.lib.maintainers; [ simons ]; }; } diff --git a/pkgs/applications/editors/emacs-modes/maude/default.nix b/pkgs/applications/editors/emacs-modes/maude/default.nix index 57c2b2890be76..70693d039c588 100644 --- a/pkgs/applications/editors/emacs-modes/maude/default.nix +++ b/pkgs/applications/editors/emacs-modes/maude/default.nix @@ -15,6 +15,6 @@ stdenv.mkDerivation { description = "Emacs mode for the programming language Maude"; license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.all; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/applications/graphics/gocr/default.nix b/pkgs/applications/graphics/gocr/default.nix index 919b9fcc4c3c4..0a1059c6a47c9 100644 --- a/pkgs/applications/graphics/gocr/default.nix +++ b/pkgs/applications/graphics/gocr/default.nix @@ -16,8 +16,6 @@ stdenv.mkDerivation rec { homepage = "http://jocr.sourceforge.net/"; description = "GPL Optical Character Recognition"; license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/applications/graphics/sane/backends/generic.nix b/pkgs/applications/graphics/sane/backends/generic.nix index e457ba29d975d..33470ea0c00ed 100644 --- a/pkgs/applications/graphics/sane/backends/generic.nix +++ b/pkgs/applications/graphics/sane/backends/generic.nix @@ -70,7 +70,7 @@ stdenv.mkDerivation { homepage = "http://www.sane-project.org/"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ nckx simons ]; + maintainers = with maintainers; [ nckx peti ]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/graphics/sane/frontends.nix b/pkgs/applications/graphics/sane/frontends.nix index d7b0662205590..7e9e6fc0099be 100644 --- a/pkgs/applications/graphics/sane/frontends.nix +++ b/pkgs/applications/graphics/sane/frontends.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { description = "Scanner Access Now Easy"; license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/applications/graphics/sane/xsane.nix b/pkgs/applications/graphics/sane/xsane.nix index 751f31f73f299..b3a432c96dfda 100644 --- a/pkgs/applications/graphics/sane/xsane.nix +++ b/pkgs/applications/graphics/sane/xsane.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { homepage = http://www.sane-project.org/; description = "Graphical scanning frontend for sane"; license = stdenv.lib.licenses.gpl2Plus; - maintainers = with stdenv.lib.maintainers; [viric simons]; + maintainers = with stdenv.lib.maintainers; [viric peti]; platforms = with stdenv.lib.platforms; linux; }; } diff --git a/pkgs/applications/misc/fetchmail/default.nix b/pkgs/applications/misc/fetchmail/default.nix index 57d677395b412..2c9aaeda98fe4 100644 --- a/pkgs/applications/misc/fetchmail/default.nix +++ b/pkgs/applications/misc/fetchmail/default.nix @@ -28,6 +28,6 @@ stdenv.mkDerivation { ''; platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/applications/misc/grip/default.nix b/pkgs/applications/misc/grip/default.nix index 39621536e688e..dc180adde65a0 100644 --- a/pkgs/applications/misc/grip/default.nix +++ b/pkgs/applications/misc/grip/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { homepage = "http://nostatic.org/grip"; license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.marcweber stdenv.lib.maintainers.simons ]; + maintainers = with stdenv.lib.maintainers; [ marcweber peti ]; platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/ikiwiki/default.nix b/pkgs/applications/misc/ikiwiki/default.nix index 3e35b7bde4b84..810c7f2586ffa 100644 --- a/pkgs/applications/misc/ikiwiki/default.nix +++ b/pkgs/applications/misc/ikiwiki/default.nix @@ -86,6 +86,6 @@ stdenv.mkDerivation { license = stdenv.lib.licenses.gpl2Plus; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/applications/misc/jbidwatcher/default.nix b/pkgs/applications/misc/jbidwatcher/default.nix index f204a9fc0ef9a..e4b362ec25d43 100644 --- a/pkgs/applications/misc/jbidwatcher/default.nix +++ b/pkgs/applications/misc/jbidwatcher/default.nix @@ -45,6 +45,5 @@ stdenv.mkDerivation rec { ''; platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/applications/misc/xpdf/default.nix b/pkgs/applications/misc/xpdf/default.nix index e677164ecf484..f11d5e6d70091 100644 --- a/pkgs/applications/misc/xpdf/default.nix +++ b/pkgs/applications/misc/xpdf/default.nix @@ -38,6 +38,6 @@ stdenv.mkDerivation { description = "viewer for Portable Document Format (PDF) files"; platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/applications/networking/cluster/hadoop/default.nix b/pkgs/applications/networking/cluster/hadoop/default.nix index baa13254f234e..96d263a525e29 100644 --- a/pkgs/applications/networking/cluster/hadoop/default.nix +++ b/pkgs/applications/networking/cluster/hadoop/default.nix @@ -46,6 +46,5 @@ stdenv.mkDerivation rec { ''; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/applications/networking/esniper/default.nix b/pkgs/applications/networking/esniper/default.nix index cf895ac5cf424..cc66976b3badf 100644 --- a/pkgs/applications/networking/esniper/default.nix +++ b/pkgs/applications/networking/esniper/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation { description = "Simple, lightweight tool for sniping eBay auctions"; homepage = http://esniper.sourceforge.net; license = licenses.gpl2; - maintainers = with maintainers; [ lovek323 simons ]; + maintainers = with maintainers; [ lovek323 peti ]; platforms = platforms.all; }; } diff --git a/pkgs/applications/networking/sniffers/wireshark/default.nix b/pkgs/applications/networking/sniffers/wireshark/default.nix index 9f810e2c5c651..59ded4b3b9a42 100644 --- a/pkgs/applications/networking/sniffers/wireshark/default.nix +++ b/pkgs/applications/networking/sniffers/wireshark/default.nix @@ -69,6 +69,6 @@ stdenv.mkDerivation { ''; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ simons bjornfor fpletz ]; + maintainers = with stdenv.lib.maintainers; [ bjornfor fpletz ]; }; } diff --git a/pkgs/applications/networking/sync/rsync/default.nix b/pkgs/applications/networking/sync/rsync/default.nix index b65eb43351ef0..53b723f5ec2a4 100644 --- a/pkgs/applications/networking/sync/rsync/default.nix +++ b/pkgs/applications/networking/sync/rsync/default.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation rec { meta = base.meta // { description = "A fast incremental file transfer utility"; - maintainers = with stdenv.lib.maintainers; [ simons ehmry kampfschlaefer ]; + maintainers = with stdenv.lib.maintainers; [ peti ehmry kampfschlaefer ]; }; } diff --git a/pkgs/applications/office/antiword/default.nix b/pkgs/applications/office/antiword/default.nix index ea36d59eea7c8..4ec939a01290a 100644 --- a/pkgs/applications/office/antiword/default.nix +++ b/pkgs/applications/office/antiword/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation { description = "Convert MS Word documents to plain text or PostScript"; license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/applications/office/gnucash/2.6.nix b/pkgs/applications/office/gnucash/2.6.nix index 844ef92770891..2bc073300e6c1 100644 --- a/pkgs/applications/office/gnucash/2.6.nix +++ b/pkgs/applications/office/gnucash/2.6.nix @@ -103,7 +103,7 @@ stdenv.mkDerivation rec { homepage = http://www.gnucash.org/; - maintainers = [ stdenv.lib.maintainers.simons stdenv.lib.maintainers.iElectric ]; + maintainers = [ stdenv.lib.maintainers.peti stdenv.lib.maintainers.iElectric ]; platforms = stdenv.lib.platforms.gnu; }; } diff --git a/pkgs/applications/office/gnucash/default.nix b/pkgs/applications/office/gnucash/default.nix index ead347e483ffc..8dbb70b008843 100644 --- a/pkgs/applications/office/gnucash/default.nix +++ b/pkgs/applications/office/gnucash/default.nix @@ -77,7 +77,7 @@ stdenv.mkDerivation rec { homepage = http://www.gnucash.org/; - maintainers = [ stdenv.lib.maintainers.simons stdenv.lib.maintainers.iElectric ]; + maintainers = [ stdenv.lib.maintainers.peti stdenv.lib.maintainers.iElectric ]; platforms = stdenv.lib.platforms.gnu; }; } diff --git a/pkgs/applications/office/ledger/2.6.3.nix b/pkgs/applications/office/ledger/2.6.3.nix index 69015dfb2d7ba..7b15ec347a923 100644 --- a/pkgs/applications/office/ledger/2.6.3.nix +++ b/pkgs/applications/office/ledger/2.6.3.nix @@ -32,6 +32,6 @@ stdenv.mkDerivation rec { ''; platforms = stdenv.lib.platforms.all; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/applications/office/ledger/default.nix b/pkgs/applications/office/ledger/default.nix index 350bb4d713cfa..205b502a17f1d 100644 --- a/pkgs/applications/office/ledger/default.nix +++ b/pkgs/applications/office/ledger/default.nix @@ -40,6 +40,6 @@ stdenv.mkDerivation { ''; platforms = stdenv.lib.platforms.all; - maintainers = with stdenv.lib.maintainers; [ simons the-kenny jwiegley ]; + maintainers = with stdenv.lib.maintainers; [ peti the-kenny jwiegley ]; }; } diff --git a/pkgs/applications/science/astronomy/celestia/default.nix b/pkgs/applications/science/astronomy/celestia/default.nix index f2407e1a8333f..971c19e9c3d19 100644 --- a/pkgs/applications/science/astronomy/celestia/default.nix +++ b/pkgs/applications/science/astronomy/celestia/default.nix @@ -72,6 +72,6 @@ stdenv.mkDerivation { license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/applications/science/astronomy/gravit/default.nix b/pkgs/applications/science/astronomy/gravit/default.nix index 85339a86733e0..19fa277341a5e 100644 --- a/pkgs/applications/science/astronomy/gravit/default.nix +++ b/pkgs/applications/science/astronomy/gravit/default.nix @@ -28,6 +28,5 @@ stdenv.mkDerivation rec { ''; platforms = stdenv.lib.platforms.mesaPlatforms; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/applications/science/astronomy/stellarium/default.nix b/pkgs/applications/science/astronomy/stellarium/default.nix index 7798b1bef6c10..618a594c8cc52 100644 --- a/pkgs/applications/science/astronomy/stellarium/default.nix +++ b/pkgs/applications/science/astronomy/stellarium/default.nix @@ -23,6 +23,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.linux; # should be mesaPlatforms, but we don't have qt on darwin - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/applications/science/electronics/tkgate/1.x.nix b/pkgs/applications/science/electronics/tkgate/1.x.nix index c62ecdcd1e2a4..61d03173e0ba9 100644 --- a/pkgs/applications/science/electronics/tkgate/1.x.nix +++ b/pkgs/applications/science/electronics/tkgate/1.x.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { description = "Event driven digital circuit simulator with a TCL/TK-based graphical editor"; homepage = "http://www.tkgate.org/"; license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; hydraPlatforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/applications/science/math/R/default.nix b/pkgs/applications/science/math/R/default.nix index 2ca2cab3afd8c..430c6629df2a4 100644 --- a/pkgs/applications/science/math/R/default.nix +++ b/pkgs/applications/science/math/R/default.nix @@ -102,6 +102,6 @@ stdenv.mkDerivation rec { platforms = stdenv.lib.platforms.all; hydraPlatforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/applications/science/math/eukleides/default.nix b/pkgs/applications/science/math/eukleides/default.nix index fdf5c1bd83153..879ad96a93675 100644 --- a/pkgs/applications/science/math/eukleides/default.nix +++ b/pkgs/applications/science/math/eukleides/default.nix @@ -32,6 +32,6 @@ stdenv.mkDerivation { ''; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/applications/science/math/maxima/default.nix b/pkgs/applications/science/math/maxima/default.nix index 4497356a29f81..21d3c656d3045 100644 --- a/pkgs/applications/science/math/maxima/default.nix +++ b/pkgs/applications/science/math/maxima/default.nix @@ -49,6 +49,6 @@ stdenv.mkDerivation { ''; platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/applications/science/math/pssp/default.nix b/pkgs/applications/science/math/pssp/default.nix index 6a8f9e5900030..4a126797d6971 100644 --- a/pkgs/applications/science/math/pssp/default.nix +++ b/pkgs/applications/science/math/pssp/default.nix @@ -35,6 +35,5 @@ stdenv.mkDerivation rec { ''; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/applications/science/math/wxmaxima/default.nix b/pkgs/applications/science/math/wxmaxima/default.nix index 8af49621dd98e..2000a1e511702 100644 --- a/pkgs/applications/science/math/wxmaxima/default.nix +++ b/pkgs/applications/science/math/wxmaxima/default.nix @@ -30,6 +30,6 @@ stdenv.mkDerivation { license = stdenv.lib.licenses.gpl2; homepage = http://wxmaxima.sourceforge.net; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/applications/version-management/cvs/default.nix b/pkgs/applications/version-management/cvs/default.nix index e9de202a8092f..b0e0f334e4d0e 100644 --- a/pkgs/applications/version-management/cvs/default.nix +++ b/pkgs/applications/version-management/cvs/default.nix @@ -23,8 +23,6 @@ stdenv.mkDerivation { meta = { homepage = "http://cvs.nongnu.org"; description = "Concurrent Versions System - a source control system"; - platforms = stdenv.lib.platforms.all; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } 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 84af1a2fcbb23..93a59228411d1 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -165,6 +165,6 @@ stdenv.mkDerivation { ''; platforms = stdenv.lib.platforms.all; - maintainers = with stdenv.lib.maintainers; [ simons the-kenny wmertens ]; + maintainers = with stdenv.lib.maintainers; [ peti the-kenny wmertens ]; }; } diff --git a/pkgs/applications/version-management/git-and-tools/stgit/default.nix b/pkgs/applications/version-management/git-and-tools/stgit/default.nix index f6966f92eb2f3..f572dbcf92384 100644 --- a/pkgs/applications/version-management/git-and-tools/stgit/default.nix +++ b/pkgs/applications/version-management/git-and-tools/stgit/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { description = "A patch manager implemented on top of Git"; license = "GPL"; - maintainers = with stdenv.lib.maintainers; [ simons the-kenny ]; + maintainers = with stdenv.lib.maintainers; [ the-kenny ]; platforms = stdenv.lib.platforms.unix; }; } diff --git a/pkgs/applications/version-management/git-and-tools/topgit/default.nix b/pkgs/applications/version-management/git-and-tools/topgit/default.nix index 6ffcad27dc7fa..441c28bd45beb 100644 --- a/pkgs/applications/version-management/git-and-tools/topgit/default.nix +++ b/pkgs/applications/version-management/git-and-tools/topgit/default.nix @@ -21,6 +21,6 @@ stdenv.mkDerivation rec { description = "TopGit manages large amount of interdependent topic branches"; license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ marcweber simons ]; + maintainers = with stdenv.lib.maintainers; [ marcweber ]; }; } diff --git a/pkgs/applications/version-management/rcs/default.nix b/pkgs/applications/version-management/rcs/default.nix index 44f72c3f0fe7c..ed69f4a422027 100644 --- a/pkgs/applications/version-management/rcs/default.nix +++ b/pkgs/applications/version-management/rcs/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { ''; license = stdenv.lib.licenses.gpl3Plus; - maintainers = with stdenv.lib.maintainers; [ eelco simons ]; + maintainers = with stdenv.lib.maintainers; [ eelco ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/compilers/aldor/default.nix b/pkgs/development/compilers/aldor/default.nix index 1c915fb5a1d21..bcdeb2f19e818 100644 --- a/pkgs/development/compilers/aldor/default.nix +++ b/pkgs/development/compilers/aldor/default.nix @@ -45,7 +45,6 @@ stdenv.mkDerivation { and powerful properties of functional, object-oriented and aspect-oriented styles. ''; - maintainers = [ stdenv.lib.maintainers.simons ]; platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/development/compilers/gcc/4.8/default.nix b/pkgs/development/compilers/gcc/4.8/default.nix index 09e3751580c51..5089f703d5edf 100644 --- a/pkgs/development/compilers/gcc/4.8/default.nix +++ b/pkgs/development/compilers/gcc/4.8/default.nix @@ -515,7 +515,7 @@ stdenv.mkDerivation ({ compiler used in the GNU system including the GNU/Linux variant. ''; - maintainers = with stdenv.lib.maintainers; [ viric simons ]; + maintainers = with stdenv.lib.maintainers; [ viric peti ]; # gnatboot is not available out of linux platforms, so we disable the darwin build # for the gnat (ada compiler). diff --git a/pkgs/development/compilers/gcc/4.9/default.nix b/pkgs/development/compilers/gcc/4.9/default.nix index 2d568980fd451..2124136482367 100644 --- a/pkgs/development/compilers/gcc/4.9/default.nix +++ b/pkgs/development/compilers/gcc/4.9/default.nix @@ -522,7 +522,7 @@ stdenv.mkDerivation ({ compiler used in the GNU system including the GNU/Linux variant. ''; - maintainers = with stdenv.lib.maintainers; [ viric simons ]; + maintainers = with stdenv.lib.maintainers; [ viric peti ]; # gnatboot is not available out of linux platforms, so we disable the darwin build # for the gnat (ada compiler). diff --git a/pkgs/development/compilers/gcc/5/default.nix b/pkgs/development/compilers/gcc/5/default.nix index 20c60eac3097f..d7ff8fe99dfc1 100644 --- a/pkgs/development/compilers/gcc/5/default.nix +++ b/pkgs/development/compilers/gcc/5/default.nix @@ -515,7 +515,7 @@ stdenv.mkDerivation ({ compiler used in the GNU system including the GNU/Linux variant. ''; - maintainers = with stdenv.lib.maintainers; [ viric simons ]; + maintainers = with stdenv.lib.maintainers; [ viric peti ]; # gnatboot is not available out of linux platforms, so we disable the darwin build # for the gnat (ada compiler). diff --git a/pkgs/development/compilers/gcc/6/default.nix b/pkgs/development/compilers/gcc/6/default.nix index cbd4e1e340c9b..6ca0f2f59f44b 100644 --- a/pkgs/development/compilers/gcc/6/default.nix +++ b/pkgs/development/compilers/gcc/6/default.nix @@ -515,7 +515,7 @@ stdenv.mkDerivation ({ compiler used in the GNU system including the GNU/Linux variant. ''; - maintainers = with stdenv.lib.maintainers; [ viric simons ]; + maintainers = with stdenv.lib.maintainers; [ viric peti ]; # gnatboot is not available out of linux platforms, so we disable the darwin build # for the gnat (ada compiler). diff --git a/pkgs/development/compilers/ghc/6.12.3.nix b/pkgs/development/compilers/ghc/6.12.3.nix index 5c33a193c5013..6ee447be6507e 100644 --- a/pkgs/development/compilers/ghc/6.12.3.nix +++ b/pkgs/development/compilers/ghc/6.12.3.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://haskell.org/ghc"; description = "The Glasgow Haskell Compiler"; - maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ]; + maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ]; platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported. inherit (ghc.meta) license; broken = true; # broken by gcc 5.x: http://hydra.nixos.org/build/33627548 diff --git a/pkgs/development/compilers/ghc/7.0.4.nix b/pkgs/development/compilers/ghc/7.0.4.nix index 9152210b420d5..7442c5ca53c82 100644 --- a/pkgs/development/compilers/ghc/7.0.4.nix +++ b/pkgs/development/compilers/ghc/7.0.4.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { maintainers = [ stdenv.lib.maintainers.marcweber stdenv.lib.maintainers.andres - stdenv.lib.maintainers.simons + stdenv.lib.maintainers.peti ]; platforms = ["x86_64-linux" "i686-linux"]; # Darwin is not supported. inherit (ghc.meta) license; diff --git a/pkgs/development/compilers/ghc/7.10.2.nix b/pkgs/development/compilers/ghc/7.10.2.nix index d7f1e064030b4..aaf76d2ae40c8 100644 --- a/pkgs/development/compilers/ghc/7.10.2.nix +++ b/pkgs/development/compilers/ghc/7.10.2.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://haskell.org/ghc"; description = "The Glasgow Haskell Compiler"; - maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ]; + maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ]; inherit (ghc.meta) license platforms; }; diff --git a/pkgs/development/compilers/ghc/7.10.3.nix b/pkgs/development/compilers/ghc/7.10.3.nix index ce62a1277d364..2bed6d1487ad6 100644 --- a/pkgs/development/compilers/ghc/7.10.3.nix +++ b/pkgs/development/compilers/ghc/7.10.3.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://haskell.org/ghc"; description = "The Glasgow Haskell Compiler"; - maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ]; + maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ]; inherit (ghc.meta) license platforms; }; diff --git a/pkgs/development/compilers/ghc/7.2.2.nix b/pkgs/development/compilers/ghc/7.2.2.nix index a08745732f887..06f7cb9af2c4a 100644 --- a/pkgs/development/compilers/ghc/7.2.2.nix +++ b/pkgs/development/compilers/ghc/7.2.2.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { maintainers = [ stdenv.lib.maintainers.marcweber stdenv.lib.maintainers.andres - stdenv.lib.maintainers.simons + stdenv.lib.maintainers.peti ]; platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported. inherit (ghc.meta) license; diff --git a/pkgs/development/compilers/ghc/7.4.2.nix b/pkgs/development/compilers/ghc/7.4.2.nix index bf48e50b6b73e..c74461a064e6c 100644 --- a/pkgs/development/compilers/ghc/7.4.2.nix +++ b/pkgs/development/compilers/ghc/7.4.2.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { maintainers = [ stdenv.lib.maintainers.marcweber stdenv.lib.maintainers.andres - stdenv.lib.maintainers.simons + stdenv.lib.maintainers.peti ]; inherit (ghc.meta) license platforms; }; diff --git a/pkgs/development/compilers/ghc/7.6.3.nix b/pkgs/development/compilers/ghc/7.6.3.nix index af9fd3f8d93c0..6ee629cc98042 100644 --- a/pkgs/development/compilers/ghc/7.6.3.nix +++ b/pkgs/development/compilers/ghc/7.6.3.nix @@ -75,7 +75,7 @@ in stdenv.mkDerivation rec { maintainers = [ stdenv.lib.maintainers.marcweber stdenv.lib.maintainers.andres - stdenv.lib.maintainers.simons + stdenv.lib.maintainers.peti ]; inherit (ghc.meta) license platforms; }; diff --git a/pkgs/development/compilers/ghc/7.8.3.nix b/pkgs/development/compilers/ghc/7.8.3.nix index 706899a8f7ba0..55f8655c70093 100644 --- a/pkgs/development/compilers/ghc/7.8.3.nix +++ b/pkgs/development/compilers/ghc/7.8.3.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://haskell.org/ghc"; description = "The Glasgow Haskell Compiler"; - maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ]; + maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ]; inherit (ghc.meta) license platforms; }; diff --git a/pkgs/development/compilers/ghc/7.8.4.nix b/pkgs/development/compilers/ghc/7.8.4.nix index cdcc2cf0e75eb..6e10b1443c8f1 100644 --- a/pkgs/development/compilers/ghc/7.8.4.nix +++ b/pkgs/development/compilers/ghc/7.8.4.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation (rec { meta = { homepage = "http://haskell.org/ghc"; description = "The Glasgow Haskell Compiler"; - maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ]; + maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ]; inherit (ghc.meta) license platforms; }; diff --git a/pkgs/development/compilers/ghc/8.0.1.nix b/pkgs/development/compilers/ghc/8.0.1.nix index 092d9d7820a78..bb8a98d61b1f1 100644 --- a/pkgs/development/compilers/ghc/8.0.1.nix +++ b/pkgs/development/compilers/ghc/8.0.1.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://haskell.org/ghc"; description = "The Glasgow Haskell Compiler"; - maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ]; + maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ]; inherit (ghc.meta) license platforms; }; diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix index 00de233c0ec29..79234fd55abe1 100644 --- a/pkgs/development/compilers/ghc/head.nix +++ b/pkgs/development/compilers/ghc/head.nix @@ -72,7 +72,7 @@ in stdenv.mkDerivation rec { meta = { homepage = "http://haskell.org/ghc"; description = "The Glasgow Haskell Compiler"; - maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ]; + maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ]; inherit (ghc.meta) license platforms; }; diff --git a/pkgs/development/compilers/gprolog/default.nix b/pkgs/development/compilers/gprolog/default.nix index f2b5a04df9866..283bfedcf54e4 100644 --- a/pkgs/development/compilers/gprolog/default.nix +++ b/pkgs/development/compilers/gprolog/default.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { declarativity of logic programming. ''; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; platforms = stdenv.lib.platforms.gnu; }; } diff --git a/pkgs/development/compilers/jhc/default.nix b/pkgs/development/compilers/jhc/default.nix index 091b81b164161..213447bb7ec4f 100644 --- a/pkgs/development/compilers/jhc/default.nix +++ b/pkgs/development/compilers/jhc/default.nix @@ -22,6 +22,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.bsd3; platforms = stdenv.lib.platforms.linux; maintainers = with stdenv.lib.maintainers; - [ aforemny simons thoughtpolice ]; + [ aforemny peti thoughtpolice ]; }; } diff --git a/pkgs/development/compilers/swi-prolog/default.nix b/pkgs/development/compilers/swi-prolog/default.nix index 1f38198b30b5b..f9857fcc56902 100644 --- a/pkgs/development/compilers/swi-prolog/default.nix +++ b/pkgs/development/compilers/swi-prolog/default.nix @@ -27,6 +27,6 @@ stdenv.mkDerivation { license = "LGPL"; hydraPlatforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/development/compilers/yap/default.nix b/pkgs/development/compilers/yap/default.nix index 2482f2ac13167..021efbba34c1b 100644 --- a/pkgs/development/compilers/yap/default.nix +++ b/pkgs/development/compilers/yap/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { description = "A ISO-compatible high-performance Prolog compiler"; license = stdenv.lib.licenses.artistic2; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; platforms = stdenv.lib.platforms.linux; broken = !stdenv.is64bit; # the linux 32 bit build fails. }; diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 36e498d4be1bc..5a89cd0aed91d 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -59,7 +59,7 @@ extra-packages: - zlib < 0.6 # newer versions break cabal-install package-maintainers: - simons: + peti: - cabal2nix - cabal-install - funcmp diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index bbdaa79ae124d..2fb8e65450f97 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -47035,7 +47035,7 @@ self: { 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 ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "cabal-install_1_18_0_6" = callPackage @@ -47071,7 +47071,7 @@ self: { 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 ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "cabal-install_1_18_0_7" = callPackage @@ -47109,7 +47109,7 @@ self: { 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 ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "cabal-install_1_18_0_8" = callPackage @@ -47147,7 +47147,7 @@ self: { 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 ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "cabal-install_1_18_1_0" = callPackage @@ -47185,7 +47185,7 @@ self: { 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 ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "cabal-install_1_22_6_0" = callPackage @@ -47221,7 +47221,7 @@ self: { 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 ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "cabal-install_1_22_7_0" = callPackage @@ -47258,7 +47258,7 @@ self: { 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 ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "cabal-install_1_22_8_0" = callPackage @@ -47293,7 +47293,7 @@ self: { 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 ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "cabal-install" = callPackage @@ -47327,7 +47327,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The command-line interface for Cabal and Hackage"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "cabal-install_1_24_0_0" = callPackage @@ -47367,7 +47367,7 @@ self: { 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 ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "cabal-install-bundle" = callPackage @@ -48117,7 +48117,7 @@ self: { homepage = "http://github.com/NixOS/cabal2nix"; description = "Convert Cabal files into Nix build instructions"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "cabal2spec" = callPackage @@ -87198,7 +87198,7 @@ self: { homepage = "http://savannah.nongnu.org/projects/funcmp/"; description = "Functional MetaPost"; license = stdenv.lib.licenses.gpl3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "funcons-tools" = callPackage @@ -91278,7 +91278,7 @@ self: { license = stdenv.lib.licenses.gpl3; platforms = [ "i686-linux" "x86_64-linux" ]; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; @@ -91345,7 +91345,7 @@ self: { license = stdenv.lib.licenses.gpl3; platforms = [ "i686-linux" "x86_64-linux" ]; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; @@ -91412,7 +91412,7 @@ self: { license = stdenv.lib.licenses.gpl3; platforms = [ "i686-linux" "x86_64-linux" ]; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; @@ -91479,7 +91479,7 @@ self: { description = "manage files with git, without checking their contents into git"; license = stdenv.lib.licenses.gpl3; platforms = [ "i686-linux" "x86_64-linux" ]; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; @@ -99181,7 +99181,7 @@ self: { homepage = "http://github.com/peti/hackage-db"; description = "access Hackage's package database via Data.Map"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "hackage-diff" = callPackage @@ -112629,7 +112629,7 @@ self: { homepage = "http://github.com/peti/hledger-interest"; description = "computes interest for a given account"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "hledger-irr" = callPackage @@ -115725,7 +115725,7 @@ self: { homepage = "http://github.com/peti/hopenssl"; description = "FFI bindings to OpenSSL's EVP digest interface"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {inherit (pkgs) openssl;}; "hopfield" = callPackage @@ -118663,7 +118663,7 @@ self: { homepage = "http://github.com/peti/hsdns"; description = "Asynchronous DNS Resolver"; license = stdenv.lib.licenses.gpl3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {inherit (pkgs) adns;}; "hsdns-cache" = callPackage @@ -118758,7 +118758,7 @@ self: { homepage = "http://github.com/peti/hsemail"; description = "Internet Message Parsers"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "hsemail-ns" = callPackage @@ -121830,7 +121830,7 @@ self: { homepage = "http://github.com/peti/hsyslog"; description = "FFI interface to syslog(3) from POSIX.1-2001"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "hszephyr" = callPackage @@ -132421,7 +132421,7 @@ self: { homepage = "http://github.com/peti/jailbreak-cabal"; description = "Strip version restrictions from build dependencies in Cabal files"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "jalaali" = callPackage @@ -138598,7 +138598,7 @@ self: { homepage = "https://github.com/peti/language-nix#readme"; description = "Data types and useful functions to represent and manipulate the Nix language"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "language-objc" = callPackage @@ -203311,7 +203311,7 @@ self: { description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "stack_0_1_3_1" = callPackage @@ -203380,7 +203380,7 @@ self: { description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "stack_0_1_4_1" = callPackage @@ -203450,7 +203450,7 @@ self: { description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "stack_0_1_5_0" = callPackage @@ -203520,7 +203520,7 @@ self: { description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "stack_0_1_6_0" = callPackage @@ -203590,7 +203590,7 @@ self: { description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "stack_0_1_8_0" = callPackage @@ -203660,7 +203660,7 @@ self: { description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "stack_0_1_10_0" = callPackage @@ -203731,7 +203731,7 @@ self: { description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "stack_0_1_10_1" = callPackage @@ -203802,7 +203802,7 @@ self: { description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "stack_1_0_0" = callPackage @@ -203874,7 +203874,7 @@ self: { description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "stack_1_0_2" = callPackage @@ -203946,7 +203946,7 @@ self: { description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "stack" = callPackage @@ -204013,7 +204013,7 @@ self: { homepage = "http://haskellstack.org"; description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "stack-hpc-coveralls" = callPackage @@ -207109,7 +207109,7 @@ self: { homepage = "http://github.com/peti/streamproc"; description = "Stream Processer Arrow"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "streams_3_2" = callPackage diff --git a/pkgs/development/interpreters/erlang/R16.nix b/pkgs/development/interpreters/erlang/R16.nix index 151e0c3cbbc0b..7ae7af30717cd 100644 --- a/pkgs/development/interpreters/erlang/R16.nix +++ b/pkgs/development/interpreters/erlang/R16.nix @@ -68,8 +68,6 @@ stdenv.mkDerivation rec { ''; platforms = platforms.unix; - # Note: Maintainer of prev. erlang version was simons. If he wants - # to continue maintaining erlang I'm totally ok with that. maintainers = [ maintainers.the-kenny ]; }; } diff --git a/pkgs/development/interpreters/erlang/R17.nix b/pkgs/development/interpreters/erlang/R17.nix index 8096ca555a44d..b32e3af9865e5 100644 --- a/pkgs/development/interpreters/erlang/R17.nix +++ b/pkgs/development/interpreters/erlang/R17.nix @@ -85,8 +85,6 @@ stdenv.mkDerivation rec { ''; platforms = platforms.unix; - # Note: Maintainer of prev. erlang version was simons. If he wants - # to continue maintaining erlang I'm totally ok with that. maintainers = [ maintainers.the-kenny maintainers.sjmackenzie ]; }; } diff --git a/pkgs/development/interpreters/lua-5/5.1.nix b/pkgs/development/interpreters/lua-5/5.1.nix index adeaa9fae7bb2..9d9e104fb85f1 100644 --- a/pkgs/development/interpreters/lua-5/5.1.nix +++ b/pkgs/development/interpreters/lua-5/5.1.nix @@ -56,6 +56,5 @@ stdenv.mkDerivation rec { ''; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/development/interpreters/lua-5/5.2.nix b/pkgs/development/interpreters/lua-5/5.2.nix index 313db1038b858..b5ac4157d6510 100644 --- a/pkgs/development/interpreters/lua-5/5.2.nix +++ b/pkgs/development/interpreters/lua-5/5.2.nix @@ -98,6 +98,5 @@ stdenv.mkDerivation rec { ''; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/development/interpreters/lua-5/5.3.nix b/pkgs/development/interpreters/lua-5/5.3.nix index faa4b7694ee41..27ca9c9160f89 100644 --- a/pkgs/development/interpreters/lua-5/5.3.nix +++ b/pkgs/development/interpreters/lua-5/5.3.nix @@ -97,6 +97,5 @@ stdenv.mkDerivation rec { ''; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/development/interpreters/maude/default.nix b/pkgs/development/interpreters/maude/default.nix index e14132a8acfd5..3473a11e8198d 100644 --- a/pkgs/development/interpreters/maude/default.nix +++ b/pkgs/development/interpreters/maude/default.nix @@ -47,6 +47,6 @@ stdenv.mkDerivation rec { ''; hydraPlatforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix index 2196bb7e8b86b..ceb71c4997ba5 100644 --- a/pkgs/development/interpreters/python/2.6/default.nix +++ b/pkgs/development/interpreters/python/2.6/default.nix @@ -119,7 +119,7 @@ let ''; license = stdenv.lib.licenses.psfl; platforms = stdenv.lib.platforms.all; - maintainers = with stdenv.lib.maintainers; [ simons chaoflow iElectric ]; + maintainers = with stdenv.lib.maintainers; [ chaoflow iElectric ]; # If you want to use Python 2.6, remove "broken = true;" at your own # risk. Python 2.6 has known security vulnerabilities is not receiving # security updates as of October 2013. diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix index 6b336766db786..2f8907628fa3d 100644 --- a/pkgs/development/interpreters/python/2.7/default.nix +++ b/pkgs/development/interpreters/python/2.7/default.nix @@ -173,7 +173,7 @@ let ''; license = stdenv.lib.licenses.psfl; platforms = stdenv.lib.platforms.all; - maintainers = with stdenv.lib.maintainers; [ simons chaoflow iElectric ]; + maintainers = with stdenv.lib.maintainers; [ chaoflow iElectric ]; }; }; diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix index be770a85a1ecd..3c4580a061f1e 100644 --- a/pkgs/development/interpreters/python/3.3/default.nix +++ b/pkgs/development/interpreters/python/3.3/default.nix @@ -104,6 +104,6 @@ stdenv.mkDerivation { ''; license = stdenv.lib.licenses.psfl; platforms = with stdenv.lib.platforms; linux ++ darwin; - maintainers = with stdenv.lib.maintainers; [ simons chaoflow cstrahan ]; + maintainers = with stdenv.lib.maintainers; [ chaoflow cstrahan ]; }; } diff --git a/pkgs/development/interpreters/python/3.4/default.nix b/pkgs/development/interpreters/python/3.4/default.nix index 1f6a929f9cdc8..346046441d558 100644 --- a/pkgs/development/interpreters/python/3.4/default.nix +++ b/pkgs/development/interpreters/python/3.4/default.nix @@ -127,6 +127,6 @@ stdenv.mkDerivation { ''; license = licenses.psfl; platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ simons chaoflow iElectric cstrahan ]; + maintainers = with maintainers; [ chaoflow iElectric cstrahan ]; }; } diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix index 91ad8fda8068a..ae1bbe1e822ce 100644 --- a/pkgs/development/interpreters/python/3.5/default.nix +++ b/pkgs/development/interpreters/python/3.5/default.nix @@ -127,6 +127,6 @@ stdenv.mkDerivation { ''; license = licenses.psfl; platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ simons chaoflow iElectric cstrahan ]; + maintainers = with maintainers; [ chaoflow iElectric cstrahan ]; }; } diff --git a/pkgs/development/libraries/adns/default.nix b/pkgs/development/libraries/adns/default.nix index cecb8ee0a496c..745cdf746ecc1 100644 --- a/pkgs/development/libraries/adns/default.nix +++ b/pkgs/development/libraries/adns/default.nix @@ -31,6 +31,6 @@ stdenv.mkDerivation { license = stdenv.lib.licenses.lgpl2; platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 73499a4249781..21ab2e178cb8f 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -127,7 +127,7 @@ stdenv.mkDerivation { license = stdenv.lib.licenses.boost; platforms = platforms.unix; - maintainers = with maintainers; [ simons wkennington ]; + maintainers = with maintainers; [ peti wkennington ]; }; preConfigure = '' diff --git a/pkgs/development/libraries/buddy/default.nix b/pkgs/development/libraries/buddy/default.nix index d23b2f27c0783..8b40260ddf39f 100644 --- a/pkgs/development/libraries/buddy/default.nix +++ b/pkgs/development/libraries/buddy/default.nix @@ -19,6 +19,6 @@ stdenv.mkDerivation rec { license = "as-is"; platforms = with stdenv.lib.platforms; allBut cygwin; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/development/libraries/cppunit/default.nix b/pkgs/development/libraries/cppunit/default.nix index 0b9b09a4bd19d..4c64cb715e4e1 100644 --- a/pkgs/development/libraries/cppunit/default.nix +++ b/pkgs/development/libraries/cppunit/default.nix @@ -12,6 +12,5 @@ stdenv.mkDerivation { homepage = "http://sourceforge.net/apps/mediawiki/cppunit/"; description = "C++ unit testing framework"; platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/development/libraries/cyrus-sasl/default.nix b/pkgs/development/libraries/cyrus-sasl/default.nix index 21ad12869f9c8..f1cd9d526e4ac 100644 --- a/pkgs/development/libraries/cyrus-sasl/default.nix +++ b/pkgs/development/libraries/cyrus-sasl/default.nix @@ -51,6 +51,5 @@ stdenv.mkDerivation rec { homepage = "http://cyrusimap.web.cmu.edu/"; description = "library for adding authentication support to connection-based protocols"; platforms = platforms.unix; - maintainers = with maintainers; [ simons ]; }; } diff --git a/pkgs/development/libraries/gmp/5.1.x.nix b/pkgs/development/libraries/gmp/5.1.x.nix index 0768df60a794e..1e9142444d11e 100644 --- a/pkgs/development/libraries/gmp/5.1.x.nix +++ b/pkgs/development/libraries/gmp/5.1.x.nix @@ -71,6 +71,6 @@ stdenv.mkDerivation rec { ''; platforms = platforms.all; - maintainers = [ maintainers.simons ]; + maintainers = [ maintainers.peti ]; }; } diff --git a/pkgs/development/libraries/gmp/6.x.nix b/pkgs/development/libraries/gmp/6.x.nix index a7443c02c5b6c..d17ac5b876070 100644 --- a/pkgs/development/libraries/gmp/6.x.nix +++ b/pkgs/development/libraries/gmp/6.x.nix @@ -73,7 +73,7 @@ let self = stdenv.mkDerivation rec { ''; platforms = platforms.all; - maintainers = [ maintainers.simons ]; + maintainers = [ maintainers.peti ]; }; }; in self diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix index 2d05861605a57..6ac8acebfe87e 100644 --- a/pkgs/development/libraries/mesa/default.nix +++ b/pkgs/development/libraries/mesa/default.nix @@ -169,6 +169,6 @@ stdenv.mkDerivation { homepage = http://www.mesa3d.org/; license = licenses.mit; # X11 variant, in most files platforms = platforms.mesaPlatforms; - maintainers = with maintainers; [ eduarrrd simons vcunat ]; + maintainers = with maintainers; [ eduarrrd vcunat ]; }; } diff --git a/pkgs/development/libraries/nlopt/default.nix b/pkgs/development/libraries/nlopt/default.nix index ddf47cf31d8ea..4e3db9b0d4017 100644 --- a/pkgs/development/libraries/nlopt/default.nix +++ b/pkgs/development/libraries/nlopt/default.nix @@ -25,7 +25,6 @@ stdenv.mkDerivation rec { description = "Free open-source library for nonlinear optimization"; license = stdenv.lib.licenses.lgpl21Plus; hydraPlatforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; broken = true; # cannot cope with Octave 4.x }; diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index 157ce5fb9dec9..8c0ad107d77f0 100644 --- a/pkgs/development/libraries/openssl/default.nix +++ b/pkgs/development/libraries/openssl/default.nix @@ -97,7 +97,7 @@ let homepage = http://www.openssl.org/; description = "A cryptographic library that implements the SSL and TLS protocols"; platforms = stdenv.lib.platforms.all; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; priority = 10; # resolves collision with ‘man-pages’ }; }; diff --git a/pkgs/development/libraries/pcre/default.nix b/pkgs/development/libraries/pcre/default.nix index 91af6f4dadf35..c56eef31961d1 100644 --- a/pkgs/development/libraries/pcre/default.nix +++ b/pkgs/development/libraries/pcre/default.nix @@ -62,6 +62,5 @@ in stdenv.mkDerivation rec { ''; platforms = platforms.all; - maintainers = [ maintainers.simons ]; }; } diff --git a/pkgs/development/libraries/science/math/liblapack/3.5.0.nix b/pkgs/development/libraries/science/math/liblapack/3.5.0.nix index ef89c0bfee210..1d05e6bb2a364 100644 --- a/pkgs/development/libraries/science/math/liblapack/3.5.0.nix +++ b/pkgs/development/libraries/science/math/liblapack/3.5.0.nix @@ -59,8 +59,6 @@ stdenv.mkDerivation rec { description = "Linear Algebra PACKage"; homepage = "http://www.netlib.org/lapack/"; license = licenses.bsd3; - platforms = platforms.all; - maintainers = [ maintainers.simons ]; }; } diff --git a/pkgs/development/libraries/science/math/liblapack/default.nix b/pkgs/development/libraries/science/math/liblapack/default.nix index f3832ba0a205a..80b66c5ab167e 100644 --- a/pkgs/development/libraries/science/math/liblapack/default.nix +++ b/pkgs/development/libraries/science/math/liblapack/default.nix @@ -59,8 +59,6 @@ stdenv.mkDerivation rec { description = "Linear Algebra PACKage"; homepage = "http://www.netlib.org/lapack/"; license = licenses.bsd3; - platforms = platforms.all; - maintainers = [ maintainers.simons ]; }; } diff --git a/pkgs/development/libraries/tbb/default.nix b/pkgs/development/libraries/tbb/default.nix index 31fc5401e7549..8a91086c5dbed 100644 --- a/pkgs/development/libraries/tbb/default.nix +++ b/pkgs/development/libraries/tbb/default.nix @@ -37,6 +37,6 @@ stdenv.mkDerivation { details and threading mechanisms for scalability and performance. ''; platforms = with stdenv.lib.platforms; linux ++ darwin; - maintainers = with stdenv.lib.maintainers; [ simons thoughtpolice ]; + maintainers = with stdenv.lib.maintainers; [ peti thoughtpolice ]; }; } diff --git a/pkgs/development/libraries/tecla/default.nix b/pkgs/development/libraries/tecla/default.nix index f83b34e40d1a2..6f30497d870cf 100644 --- a/pkgs/development/libraries/tecla/default.nix +++ b/pkgs/development/libraries/tecla/default.nix @@ -16,6 +16,6 @@ stdenv.mkDerivation rec { license = "as-is"; hydraPlatforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/development/mobile/flashtool/default.nix b/pkgs/development/mobile/flashtool/default.nix index b33fc13224a39..1689b2f506fa4 100644 --- a/pkgs/development/mobile/flashtool/default.nix +++ b/pkgs/development/mobile/flashtool/default.nix @@ -59,6 +59,5 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.unfreeRedistributableFirmware; platforms = stdenv.lib.platforms.linux; hydraPlatforms = stdenv.lib.platforms.none; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/development/tools/analysis/cppcheck/default.nix b/pkgs/development/tools/analysis/cppcheck/default.nix index b20662c889ab5..778aaa90cbe93 100644 --- a/pkgs/development/tools/analysis/cppcheck/default.nix +++ b/pkgs/development/tools/analysis/cppcheck/default.nix @@ -33,6 +33,6 @@ stdenv.mkDerivation rec { homepage = http://cppcheck.sourceforge.net/; license = licenses.gpl3Plus; platforms = platforms.unix; - maintainers = with maintainers; [ simons joachifm ]; + maintainers = with maintainers; [ joachifm ]; }; } diff --git a/pkgs/development/tools/build-managers/gnumake/4.1/default.nix b/pkgs/development/tools/build-managers/gnumake/4.1/default.nix index de6f96ce99f6c..7c45a6c8e6746 100644 --- a/pkgs/development/tools/build-managers/gnumake/4.1/default.nix +++ b/pkgs/development/tools/build-managers/gnumake/4.1/default.nix @@ -40,7 +40,6 @@ stdenv.mkDerivation { to build and install the program. ''; - maintainers = with stdenv.lib.maintainers; [ simons ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/tools/build-managers/scons/default.nix b/pkgs/development/tools/build-managers/scons/default.nix index 417ab348c4052..19dbdb76a3606 100644 --- a/pkgs/development/tools/build-managers/scons/default.nix +++ b/pkgs/development/tools/build-managers/scons/default.nix @@ -38,6 +38,5 @@ stdenv.mkDerivation { software. ''; platforms = stdenv.lib.platforms.all; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/development/tools/documentation/doxygen/default.nix b/pkgs/development/tools/documentation/doxygen/default.nix index 7373d8584c234..bf9fb4f303526 100644 --- a/pkgs/development/tools/documentation/doxygen/default.nix +++ b/pkgs/development/tools/documentation/doxygen/default.nix @@ -39,7 +39,6 @@ stdenv.mkDerivation rec { manual (in LaTeX) from a set of documented source files. ''; - maintainers = [stdenv.lib.maintainers.simons]; platforms = if qt4 != null then stdenv.lib.platforms.linux else stdenv.lib.platforms.unix; }; } diff --git a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix index 724942c57c83c..e2996b030ef8e 100644 --- a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix +++ b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix @@ -33,5 +33,5 @@ mkDerivation rec { homepage = "https://github.com/nixos/cabal2nix#readme"; description = "Convert Cabal files into Nix build instructions"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; } diff --git a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix index 870f3d40961e6..edaec9c257a88 100644 --- a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix +++ b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix @@ -29,5 +29,5 @@ mkDerivation rec { homepage = "https://github.com/nixos/cabal2nix#readme"; description = "Data types and functions to manipulate the Nixpkgs distribution"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; } diff --git a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix index 461cf464f4540..56cd1d29dde48 100644 --- a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix +++ b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix @@ -32,5 +32,5 @@ mkDerivation rec { homepage = "https://github.com/nixos/cabal2nix#readme"; description = "Convert Cabal files into Nix build instructions"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ simons ]; + maintainers = with stdenv.lib.maintainers; [ peti ]; } diff --git a/pkgs/development/tools/misc/astyle/default.nix b/pkgs/development/tools/misc/astyle/default.nix index 3951212495d48..fb1e4a8ca4b59 100644 --- a/pkgs/development/tools/misc/astyle/default.nix +++ b/pkgs/development/tools/misc/astyle/default.nix @@ -28,6 +28,5 @@ stdenv.mkDerivation { description = "Source code indenter, formatter, and beautifier for C, C++, C# and Java"; license = stdenv.lib.licenses.lgpl3; platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/development/tools/misc/automake/automake-1.13.x.nix b/pkgs/development/tools/misc/automake/automake-1.13.x.nix index 96a481ade1c18..77fe2b7b92c23 100644 --- a/pkgs/development/tools/misc/automake/automake-1.13.x.nix +++ b/pkgs/development/tools/misc/automake/automake-1.13.x.nix @@ -36,8 +36,6 @@ stdenv.mkDerivation rec { Standards. Automake requires the use of Autoconf. ''; - maintainers = [ stdenv.lib.maintainers.simons ]; - platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/tools/misc/automake/automake-1.14.x.nix b/pkgs/development/tools/misc/automake/automake-1.14.x.nix index c78e9e6c0a419..fd074e6b96c84 100644 --- a/pkgs/development/tools/misc/automake/automake-1.14.x.nix +++ b/pkgs/development/tools/misc/automake/automake-1.14.x.nix @@ -36,8 +36,6 @@ stdenv.mkDerivation rec { Standards. Automake requires the use of Autoconf. ''; - maintainers = [ stdenv.lib.maintainers.simons ]; - platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/tools/misc/automake/automake-1.15.x.nix b/pkgs/development/tools/misc/automake/automake-1.15.x.nix index 9db2375a5c63f..3c4a8d1189e49 100644 --- a/pkgs/development/tools/misc/automake/automake-1.15.x.nix +++ b/pkgs/development/tools/misc/automake/automake-1.15.x.nix @@ -36,8 +36,6 @@ stdenv.mkDerivation rec { Standards. Automake requires the use of Autoconf. ''; - maintainers = [ stdenv.lib.maintainers.simons ]; - platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/tools/misc/ctags/default.nix b/pkgs/development/tools/misc/ctags/default.nix index 584095c904d5f..af40f3df20faf 100644 --- a/pkgs/development/tools/misc/ctags/default.nix +++ b/pkgs/development/tools/misc/ctags/default.nix @@ -27,7 +27,6 @@ stdenv.mkDerivation rec { ''; homepage = http://ctags.sourceforge.net/; license = licenses.gpl2Plus; - maintainers = with maintainers; [ simons ]; platforms = platforms.unix; # So that Exuberant ctags is preferred over emacs's ctags diff --git a/pkgs/development/tools/misc/distcc/default.nix b/pkgs/development/tools/misc/distcc/default.nix index ed3ad45c463a8..26acd085bb85b 100644 --- a/pkgs/development/tools/misc/distcc/default.nix +++ b/pkgs/development/tools/misc/distcc/default.nix @@ -75,7 +75,7 @@ let license = "GPL"; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ simons anderspapitto ]; + maintainers = with stdenv.lib.maintainers; [ anderspapitto ]; }; }; in diff --git a/pkgs/development/tools/parsing/bison/2.x.nix b/pkgs/development/tools/parsing/bison/2.x.nix index f89e7bca5a764..5d4da29e9b0c0 100644 --- a/pkgs/development/tools/parsing/bison/2.x.nix +++ b/pkgs/development/tools/parsing/bison/2.x.nix @@ -33,7 +33,6 @@ stdenv.mkDerivation rec { to use Bison. ''; - maintainers = [ stdenv.lib.maintainers.simons ]; platforms = stdenv.lib.platforms.unix; }; diff --git a/pkgs/development/tools/parsing/bison/3.x.nix b/pkgs/development/tools/parsing/bison/3.x.nix index ee0074140178d..6aa717c53cdef 100644 --- a/pkgs/development/tools/parsing/bison/3.x.nix +++ b/pkgs/development/tools/parsing/bison/3.x.nix @@ -30,7 +30,6 @@ stdenv.mkDerivation rec { to use Bison. ''; - maintainers = [ stdenv.lib.maintainers.simons ]; platforms = stdenv.lib.platforms.unix; }; diff --git a/pkgs/games/banner/default.nix b/pkgs/games/banner/default.nix index 329a23ae81f45..eb3692b05ab0f 100644 --- a/pkgs/games/banner/default.nix +++ b/pkgs/games/banner/default.nix @@ -19,6 +19,6 @@ stdenv.mkDerivation rec { ''; platforms = platforms.all; - maintainers = with maintainers; [ simons pSub ]; + maintainers = with maintainers; [ pSub ]; }; } diff --git a/pkgs/games/stockfish/default.nix b/pkgs/games/stockfish/default.nix index a07cc6dca3b52..c1f53ec7f8ac4 100644 --- a/pkgs/games/stockfish/default.nix +++ b/pkgs/games/stockfish/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { Stockfish is one of the strongest chess engines in the world. It is also much stronger than the best human chess grandmasters. ''; - maintainers = with maintainers; [ luispedro simons ]; + maintainers = with maintainers; [ luispedro peti ]; platforms = with platforms; i686 ++ x86_64; license = licenses.gpl2; }; diff --git a/pkgs/misc/cups/default.nix b/pkgs/misc/cups/default.nix index d140ee4783f0f..88c3d335f8767 100644 --- a/pkgs/misc/cups/default.nix +++ b/pkgs/misc/cups/default.nix @@ -96,7 +96,7 @@ stdenv.mkDerivation { homepage = https://cups.org/; description = "A standards-based printing system for UNIX"; license = licenses.gpl2; # actually LGPL for the library and GPL for the rest - maintainers = with maintainers; [ urkud simons jgeerds ]; + maintainers = with maintainers; [ urkud jgeerds ]; platforms = platforms.linux; }; } diff --git a/pkgs/misc/cups/drivers/splix/default.nix b/pkgs/misc/cups/drivers/splix/default.nix index 9a924e044d7f9..2cdaca8d7832d 100644 --- a/pkgs/misc/cups/drivers/splix/default.nix +++ b/pkgs/misc/cups/drivers/splix/default.nix @@ -19,6 +19,6 @@ stdenv.mkDerivation rec { meta = { homepage = http://splix.sourceforge.net; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/os-specific/linux/ipsec-tools/default.nix b/pkgs/os-specific/linux/ipsec-tools/default.nix index fc3b0500fed90..466ecb1efee12 100644 --- a/pkgs/os-specific/linux/ipsec-tools/default.nix +++ b/pkgs/os-specific/linux/ipsec-tools/default.nix @@ -39,8 +39,6 @@ stdenv.mkDerivation rec { meta = { homepage = "http://ipsec-tools.sourceforge.net/"; description = "Port of KAME's IPsec utilities to the Linux-2.6 IPsec implementation"; - platforms = stdenv.lib.platforms.linux; - maintainers = [stdenv.lib.maintainers.simons]; }; } diff --git a/pkgs/os-specific/linux/libsmbios/default.nix b/pkgs/os-specific/linux/libsmbios/default.nix index 7b7e1c96ab56f..8d05a0d7d2323 100644 --- a/pkgs/os-specific/linux/libsmbios/default.nix +++ b/pkgs/os-specific/linux/libsmbios/default.nix @@ -27,8 +27,6 @@ stdenv.mkDerivation { homepage = "http://linux.dell.com/libsmbios/main"; description = "a library to obtain BIOS information"; license = stdenv.lib.licenses.gpl2Plus; # alternatively, under the Open Software License version 2.1 - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/os-specific/linux/lxc/default.nix b/pkgs/os-specific/linux/lxc/default.nix index 4ac5d0c7951c0..275f325b84abf 100644 --- a/pkgs/os-specific/linux/lxc/default.nix +++ b/pkgs/os-specific/linux/lxc/default.nix @@ -80,6 +80,6 @@ stdenv.mkDerivation rec { ''; platforms = platforms.linux; - maintainers = with maintainers; [ simons wkennington globin fpletz ]; + maintainers = with maintainers; [ wkennington globin fpletz ]; }; } diff --git a/pkgs/os-specific/linux/pmtools/default.nix b/pkgs/os-specific/linux/pmtools/default.nix index 7fa32ce4c943e..a284924f0058a 100644 --- a/pkgs/os-specific/linux/pmtools/default.nix +++ b/pkgs/os-specific/linux/pmtools/default.nix @@ -18,8 +18,6 @@ stdenv.mkDerivation rec { homepage = http://www.lesswatts.org/projects/acpi/utilities.php; description = "Linux ACPI utilities"; license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 3af702982fb65..15ec3202e6b79 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -208,7 +208,6 @@ stdenv.mkDerivation rec { homepage = "http://www.freedesktop.org/wiki/Software/systemd"; description = "A system and service manager for Linux"; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.eelco stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.eelco ]; }; } - diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index 03cee0fe55bc1..096bddf62d659 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { description = "Domain name server"; license = stdenv.lib.licenses.isc; - maintainers = with stdenv.lib.maintainers; [viric simons]; + maintainers = with stdenv.lib.maintainers; [viric peti]; platforms = with stdenv.lib.platforms; unix; }; } diff --git a/pkgs/servers/http/apache-httpd/2.2.nix b/pkgs/servers/http/apache-httpd/2.2.nix index bb4fa9782d6a2..361aa3d58f757 100644 --- a/pkgs/servers/http/apache-httpd/2.2.nix +++ b/pkgs/servers/http/apache-httpd/2.2.nix @@ -75,6 +75,6 @@ stdenv.mkDerivation rec { homepage = http://httpd.apache.org/; license = stdenv.lib.licenses.asl20; platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; - maintainers = with stdenv.lib.maintainers; [ eelco simons lovek323 ]; + maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ]; }; } diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix index f69001da08ac8..bc7fd1441c131 100644 --- a/pkgs/servers/http/apache-httpd/2.4.nix +++ b/pkgs/servers/http/apache-httpd/2.4.nix @@ -83,6 +83,6 @@ stdenv.mkDerivation rec { homepage = http://httpd.apache.org/; license = licenses.asl20; platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; - maintainers = with maintainers; [ lovek323 simons ]; + maintainers = with maintainers; [ lovek323 peti ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_fastcgi/default.nix b/pkgs/servers/http/apache-modules/mod_fastcgi/default.nix index 178900570d07b..40bd37ce40bfa 100644 --- a/pkgs/servers/http/apache-modules/mod_fastcgi/default.nix +++ b/pkgs/servers/http/apache-modules/mod_fastcgi/default.nix @@ -39,6 +39,6 @@ stdenv.mkDerivation rec { ''; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_wsgi/default.nix b/pkgs/servers/http/apache-modules/mod_wsgi/default.nix index 7aded47dad181..4cccf237b9e21 100644 --- a/pkgs/servers/http/apache-modules/mod_wsgi/default.nix +++ b/pkgs/servers/http/apache-modules/mod_wsgi/default.nix @@ -21,8 +21,6 @@ stdenv.mkDerivation rec { homepage = http://code.google.com/p/modwsgi/; description = "Host Python applications in Apache through the WSGI interface"; license = stdenv.lib.licenses.asl20; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/servers/http/mini-httpd/default.nix b/pkgs/servers/http/mini-httpd/default.nix index 7fb6a16dd1c38..f35497fef8e4b 100644 --- a/pkgs/servers/http/mini-httpd/default.nix +++ b/pkgs/servers/http/mini-httpd/default.nix @@ -17,6 +17,6 @@ stdenv.mkDerivation rec { description = "a minimalistic high-performance web server"; license = stdenv.lib.licenses.gpl3; platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/servers/mail/dovecot/default.nix b/pkgs/servers/mail/dovecot/default.nix index 5bfdc5949247e..1889e0e38c45c 100644 --- a/pkgs/servers/mail/dovecot/default.nix +++ b/pkgs/servers/mail/dovecot/default.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://dovecot.org/"; description = "Open source IMAP and POP3 email server written with security primarily in mind"; - maintainers = with stdenv.lib.maintainers; [viric simons rickynils]; + maintainers = with stdenv.lib.maintainers; [viric peti rickynils]; hydraPlatforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/servers/mail/mailman/default.nix b/pkgs/servers/mail/mailman/default.nix index 13455cb3f537b..933b0fabc4b75 100644 --- a/pkgs/servers/mail/mailman/default.nix +++ b/pkgs/servers/mail/mailman/default.nix @@ -21,6 +21,6 @@ stdenv.mkDerivation rec { description = "Free software for managing electronic mail discussion and e-newsletter lists"; license = stdenv.lib.licenses.gpl2Plus; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/servers/mail/petidomo/default.nix b/pkgs/servers/mail/petidomo/default.nix index 6c6cde8a46a67..cf8aea5943256 100644 --- a/pkgs/servers/mail/petidomo/default.nix +++ b/pkgs/servers/mail/petidomo/default.nix @@ -22,6 +22,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl3Plus; platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/servers/mail/spamassassin/default.nix b/pkgs/servers/mail/spamassassin/default.nix index 8590f80c8aea5..14149713ee8bd 100644 --- a/pkgs/servers/mail/spamassassin/default.nix +++ b/pkgs/servers/mail/spamassassin/default.nix @@ -45,6 +45,6 @@ buildPerlPackage rec { description = "Open-Source Spam Filter"; license = stdenv.lib.licenses.asl20; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/shells/bash-completion/default.nix b/pkgs/shells/bash-completion/default.nix index 6c7051c9c7a25..91d6b33354160 100644 --- a/pkgs/shells/bash-completion/default.nix +++ b/pkgs/shells/bash-completion/default.nix @@ -23,6 +23,6 @@ stdenv.mkDerivation rec { license = "GPL"; platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/shells/bash/default.nix b/pkgs/shells/bash/default.nix index 49d149eb183c8..0e3fc1d806900 100644 --- a/pkgs/shells/bash/default.nix +++ b/pkgs/shells/bash/default.nix @@ -107,7 +107,7 @@ stdenv.mkDerivation rec { platforms = platforms.all; - maintainers = [ maintainers.simons ]; + maintainers = [ maintainers.peti ]; }; passthru = { diff --git a/pkgs/tools/admin/analog/default.nix b/pkgs/tools/admin/analog/default.nix index 54dac32141fe2..a309ed3826e9e 100644 --- a/pkgs/tools/admin/analog/default.nix +++ b/pkgs/tools/admin/analog/default.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation { homepage = "http://www.analog.cx/"; license = stdenv.lib.licenses.gpl2; description = "Powerful tool to generate web server statistics"; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; platforms = stdenv.lib.platforms.linux; }; diff --git a/pkgs/tools/backup/duplicity/default.nix b/pkgs/tools/backup/duplicity/default.nix index ea58ca3f8c1cc..e160c62adb570 100644 --- a/pkgs/tools/backup/duplicity/default.nix +++ b/pkgs/tools/backup/duplicity/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { description = "Encrypted bandwidth-efficient backup using the rsync algorithm"; homepage = "http://www.nongnu.org/duplicity"; license = stdenv.lib.licenses.gpl2Plus; - maintainers = with stdenv.lib.maintainers; [viric simons]; + maintainers = with stdenv.lib.maintainers; [viric peti]; platforms = with stdenv.lib.platforms; linux; }; } diff --git a/pkgs/tools/compression/lzip/default.nix b/pkgs/tools/compression/lzip/default.nix index 912a0b6f0f2aa..b0dfd79b9bac7 100644 --- a/pkgs/tools/compression/lzip/default.nix +++ b/pkgs/tools/compression/lzip/default.nix @@ -18,8 +18,6 @@ stdenv.mkDerivation rec { homepage = "http://www.nongnu.org/lzip/lzip.html"; description = "a lossless data compressor based on the LZMA algorithm"; license = stdenv.lib.licenses.gpl3Plus; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/tools/compression/pigz/default.nix b/pkgs/tools/compression/pigz/default.nix index df6b21956d91f..38e032494fbef 100644 --- a/pkgs/tools/compression/pigz/default.nix +++ b/pkgs/tools/compression/pigz/default.nix @@ -27,8 +27,6 @@ stdenv.mkDerivation { meta = { homepage = "http://www.zlib.net/pigz/"; description = "A parallel implementation of gzip for multi-core machines"; - hydraPlatforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/tools/filesystems/archivemount/default.nix b/pkgs/tools/filesystems/archivemount/default.nix index 5a43aa52a0ec2..dff66fe6bde55 100644 --- a/pkgs/tools/filesystems/archivemount/default.nix +++ b/pkgs/tools/filesystems/archivemount/default.nix @@ -16,8 +16,6 @@ stdenv.mkDerivation { meta = { description = "Gateway between FUSE and libarchive: allows mounting of cpio, .tar.gz, .tar.bz2 archives"; license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/tools/filesystems/davfs2/default.nix b/pkgs/tools/filesystems/davfs2/default.nix index 20b71af6331da..b2246e73328fc 100644 --- a/pkgs/tools/filesystems/davfs2/default.nix +++ b/pkgs/tools/filesystems/davfs2/default.nix @@ -30,6 +30,6 @@ stdenv.mkDerivation rec { ''; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/tools/graphics/asymptote/default.nix b/pkgs/tools/graphics/asymptote/default.nix index d1b5447851b57..971a7e973cc02 100644 --- a/pkgs/tools/graphics/asymptote/default.nix +++ b/pkgs/tools/graphics/asymptote/default.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation { inherit (s) version; description = "A tool for programming graphics intended to replace Metapost"; license = stdenv.lib.licenses.gpl3Plus; - maintainers = [stdenv.lib.maintainers.raskin stdenv.lib.maintainers.simons]; + maintainers = [stdenv.lib.maintainers.raskin stdenv.lib.maintainers.peti]; platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/tools/graphics/editres/default.nix b/pkgs/tools/graphics/editres/default.nix index 64222185044d8..c9b1febcc93ae 100644 --- a/pkgs/tools/graphics/editres/default.nix +++ b/pkgs/tools/graphics/editres/default.nix @@ -17,6 +17,5 @@ stdenv.mkDerivation rec { description = "a dynamic resource editor for X Toolkit applications"; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/tools/graphics/graphviz/2.32.nix b/pkgs/tools/graphics/graphviz/2.32.nix index 8da3ea0a17499..8a7205621673e 100644 --- a/pkgs/tools/graphics/graphviz/2.32.nix +++ b/pkgs/tools/graphics/graphviz/2.32.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { ''; hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; - maintainers = with stdenv.lib.maintainers; [ simons bjornfor raskin ]; + maintainers = with stdenv.lib.maintainers; [ bjornfor raskin ]; inherit version; branch = "2.32"; }; diff --git a/pkgs/tools/graphics/graphviz/default.nix b/pkgs/tools/graphics/graphviz/default.nix index ce620cf301775..9eccee536bdd2 100644 --- a/pkgs/tools/graphics/graphviz/default.nix +++ b/pkgs/tools/graphics/graphviz/default.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { ''; hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; - maintainers = with stdenv.lib.maintainers; [ simons bjornfor raskin ]; + maintainers = with stdenv.lib.maintainers; [ bjornfor raskin ]; downloadPage = "http://www.graphviz.org/pub/graphviz/ARCHIVE/"; inherit version; updateWalker = true; diff --git a/pkgs/tools/graphics/mscgen/default.nix b/pkgs/tools/graphics/mscgen/default.nix index 48d50859d2d38..34daae36ce9cf 100644 --- a/pkgs/tools/graphics/mscgen/default.nix +++ b/pkgs/tools/graphics/mscgen/default.nix @@ -37,6 +37,6 @@ stdenv.mkDerivation { ''; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/tools/misc/fileschanged/default.nix b/pkgs/tools/misc/fileschanged/default.nix index d6ae74e02b5e1..29d09ff09c977 100644 --- a/pkgs/tools/misc/fileschanged/default.nix +++ b/pkgs/tools/misc/fileschanged/default.nix @@ -28,6 +28,5 @@ stdenv.mkDerivation rec { ''; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/tools/misc/screen/default.nix b/pkgs/tools/misc/screen/default.nix index de9836422e661..652c4f989050f 100644 --- a/pkgs/tools/misc/screen/default.nix +++ b/pkgs/tools/misc/screen/default.nix @@ -59,6 +59,6 @@ stdenv.mkDerivation rec { ''; platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ simons jgeerds ]; + maintainers = with stdenv.lib.maintainers; [ peti jgeerds ]; }; } diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index a10fd37da2814..bee8231b64ee9 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -40,6 +40,6 @@ buildPythonApplication rec { ''; license = licenses.publicDomain; platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ bluescreen303 simons phreedom AndersonTorres fuuzetsu ]; + maintainers = with maintainers; [ bluescreen303 phreedom AndersonTorres fuuzetsu ]; }; } diff --git a/pkgs/tools/networking/mpack/default.nix b/pkgs/tools/networking/mpack/default.nix index 0d004a63920e3..5a1095506424b 100644 --- a/pkgs/tools/networking/mpack/default.nix +++ b/pkgs/tools/networking/mpack/default.nix @@ -14,7 +14,6 @@ stdenv.mkDerivation rec { meta = { description = "utilities for encoding and decoding binary files in MIME"; - maintainers = [ stdenv.lib.maintainers.simons ]; platforms = stdenv.lib.platforms.unix; }; } diff --git a/pkgs/tools/networking/nbd/default.nix b/pkgs/tools/networking/nbd/default.nix index 967b3863f2056..b89d2adea6bc6 100644 --- a/pkgs/tools/networking/nbd/default.nix +++ b/pkgs/tools/networking/nbd/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { homepage = "http://nbd.sourceforge.net"; description = "map arbitrary files as block devices over the network"; license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; platforms = stdenv.lib.platforms.unix; }; } diff --git a/pkgs/tools/networking/p2p/libtorrent/default.nix b/pkgs/tools/networking/p2p/libtorrent/default.nix index 4f8c493a0f0d0..ec38ec8d487ce 100644 --- a/pkgs/tools/networking/p2p/libtorrent/default.nix +++ b/pkgs/tools/networking/p2p/libtorrent/default.nix @@ -22,6 +22,6 @@ stdenv.mkDerivation rec { description = "A BitTorrent library written in C++ for *nix, with focus on high performance and good code"; platforms = platforms.unix; - maintainers = with maintainers; [ simons ebzzry codyopel ]; + maintainers = with maintainers; [ ebzzry codyopel ]; }; } diff --git a/pkgs/tools/networking/p2p/rtorrent/default.nix b/pkgs/tools/networking/p2p/rtorrent/default.nix index 0d676795ab824..2883043f8b767 100644 --- a/pkgs/tools/networking/p2p/rtorrent/default.nix +++ b/pkgs/tools/networking/p2p/rtorrent/default.nix @@ -45,6 +45,6 @@ stdenv.mkDerivation rec { description = "An ncurses client for libtorrent, ideal for use with screen, tmux, or dtach"; platforms = platforms.unix; - maintainers = with maintainers; [ simons ebzzry codyopel ]; + maintainers = with maintainers; [ ebzzry codyopel ]; }; } diff --git a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix index aa1b01c11fad4..b01566bed075e 100644 --- a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix +++ b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix @@ -61,7 +61,7 @@ pythonPackages.buildPythonApplication rec { ''; homepage = http://tahoe-lafs.org/; license = [ lib.licenses.gpl2Plus /* or */ "TGPPLv1+" ]; - maintainers = with lib.maintainers; [ simons MostAwesomeDude ]; + maintainers = with lib.maintainers; [ MostAwesomeDude ]; platforms = lib.platforms.gnu; # arbitrary choice }; } diff --git a/pkgs/tools/networking/pdsh/default.nix b/pkgs/tools/networking/pdsh/default.nix index fa3fc4472f3ba..a5b548c80852e 100644 --- a/pkgs/tools/networking/pdsh/default.nix +++ b/pkgs/tools/networking/pdsh/default.nix @@ -48,6 +48,6 @@ stdenv.mkDerivation { ''; hydraPlatforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.peti ]; }; } diff --git a/pkgs/tools/networking/vpnc/default.nix b/pkgs/tools/networking/vpnc/default.nix index c62d5addb59f7..e1905e2deb658 100644 --- a/pkgs/tools/networking/vpnc/default.nix +++ b/pkgs/tools/networking/vpnc/default.nix @@ -53,6 +53,5 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/tools/security/gnupg/21.nix b/pkgs/tools/security/gnupg/21.nix index e3c84fe71f2cf..6119f708070dc 100644 --- a/pkgs/tools/security/gnupg/21.nix +++ b/pkgs/tools/security/gnupg/21.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { homepage = http://gnupg.org; description = "a complete and free implementation of the OpenPGP standard"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ wkennington simons fpletz ]; + maintainers = with maintainers; [ wkennington peti fpletz ]; platforms = platforms.all; }; } diff --git a/pkgs/tools/security/tcpcrypt/default.nix b/pkgs/tools/security/tcpcrypt/default.nix index be21f92cd7606..4dbcdf71f9f98 100644 --- a/pkgs/tools/security/tcpcrypt/default.nix +++ b/pkgs/tools/security/tcpcrypt/default.nix @@ -22,8 +22,6 @@ stdenv.mkDerivation rec { meta = { homepage = "http://tcpcrypt.org/"; description = "enable opportunistic encryption of all TCP traffic"; - - maintainers = [ stdenv.lib.maintainers.simons ]; platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/tools/system/hardlink/default.nix b/pkgs/tools/system/hardlink/default.nix index 6ae92b685cc94..c34d81f635360 100644 --- a/pkgs/tools/system/hardlink/default.nix +++ b/pkgs/tools/system/hardlink/default.nix @@ -24,8 +24,6 @@ stdenv.mkDerivation { homepage = "http://pkgs.fedoraproject.org/cgit/hardlink.git/"; description = "Consolidate duplicate files via hardlinks"; license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/tools/system/htop/default.nix b/pkgs/tools/system/htop/default.nix index 9301107d2db99..26ebf6f822fc6 100644 --- a/pkgs/tools/system/htop/default.nix +++ b/pkgs/tools/system/htop/default.nix @@ -19,6 +19,6 @@ stdenv.mkDerivation rec { homepage = https://hisham.hm/htop/; license = licenses.gpl2Plus; platforms = with platforms; linux ++ freebsd ++ openbsd ++ darwin; - maintainers = with maintainers; [ rob simons relrod nckx ]; + maintainers = with maintainers; [ rob relrod nckx ]; }; } diff --git a/pkgs/tools/system/ipmitool/default.nix b/pkgs/tools/system/ipmitool/default.nix index 930778fe573f9..16bb058984166 100644 --- a/pkgs/tools/system/ipmitool/default.nix +++ b/pkgs/tools/system/ipmitool/default.nix @@ -32,8 +32,6 @@ stdenv.mkDerivation { description = ''Command-line interface to IPMI-enabled devices''; license = stdenv.lib.licenses.bsd3; homepage = http://ipmitool.sourceforge.net; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/tools/system/smartmontools/default.nix b/pkgs/tools/system/smartmontools/default.nix index 157b980be8c63..8445767e7b784 100644 --- a/pkgs/tools/system/smartmontools/default.nix +++ b/pkgs/tools/system/smartmontools/default.nix @@ -28,6 +28,6 @@ stdenv.mkDerivation rec { homepage = http://smartmontools.sourceforge.net/; license = licenses.gpl2Plus; platforms = with platforms; linux ++ darwin; - maintainers = [ maintainers.simons ]; + maintainers = [ maintainers.peti ]; }; } diff --git a/pkgs/tools/system/tree/default.nix b/pkgs/tools/system/tree/default.nix index 02834b70d6298..a5050047256b7 100644 --- a/pkgs/tools/system/tree/default.nix +++ b/pkgs/tools/system/tree/default.nix @@ -53,6 +53,6 @@ stdenv.mkDerivation { ''; platforms = stdenv.lib.platforms.all; - maintainers = [stdenv.lib.maintainers.simons]; + maintainers = [stdenv.lib.maintainers.peti]; }; } diff --git a/pkgs/tools/typesetting/tex/texlive/moderncv.nix b/pkgs/tools/typesetting/tex/texlive/moderncv.nix index 9ec623a0f119a..558d9102352b1 100644 --- a/pkgs/tools/typesetting/tex/texlive/moderncv.nix +++ b/pkgs/tools/typesetting/tex/texlive/moderncv.nix @@ -18,8 +18,6 @@ rec { meta = { description = "the moderncv class for TeXLive"; - maintainers = [ args.lib.maintainers.simons ]; - # Actually, arch-independent.. hydraPlatforms = []; }; diff --git a/pkgs/tools/typesetting/tex/texlive/moderntimeline.nix b/pkgs/tools/typesetting/tex/texlive/moderntimeline.nix index 6d57a659b63b2..189d418b03915 100644 --- a/pkgs/tools/typesetting/tex/texlive/moderntimeline.nix +++ b/pkgs/tools/typesetting/tex/texlive/moderntimeline.nix @@ -18,8 +18,6 @@ rec { meta = { description = "the moderntimeline extensions for moderncv"; - maintainers = [ args.lib.maintainers.simons ]; - # Actually, arch-independent.. hydraPlatforms = []; }; -- cgit 1.4.1 From 385b21c92d6067e5f076ff29de54cf4d191d3ee5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 16 May 2016 22:42:19 +0200 Subject: boost/generic.nix: fix Emacs syntax highlighting (cosmetic) --- pkgs/development/libraries/boost/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 21ab2e178cb8f..8ba8dc1900915 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -111,7 +111,7 @@ let -exec sed '1i#line 1 "{}"' -i '{}' \; ) '' + optionalString (stdenv.cross.libc or null == "msvcrt") '' - ${stdenv.cross.config}-ranlib "$lib"/lib/*.a + ${stdenv.cross.config}-ranlib "$lib/lib/"*.a ''; in -- cgit 1.4.1 From 67cb0eaae3eccefbead7cbaf6e72275d947c072a Mon Sep 17 00:00:00 2001 From: taku0 Date: Sun, 1 May 2016 23:26:00 +0900 Subject: libvpx: 1.4.0 -> 1.5.0 Closes #15136. --- pkgs/development/libraries/libvpx/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libvpx/default.nix b/pkgs/development/libraries/libvpx/default.nix index 5c593dd1f75ee..278679698c63b 100644 --- a/pkgs/development/libraries/libvpx/default.nix +++ b/pkgs/development/libraries/libvpx/default.nix @@ -13,12 +13,10 @@ , runtimeCpuDetectSupport ? true # detect cpu capabilities at runtime , thumbSupport ? false # build arm assembly in thumb mode , examplesSupport ? true # build examples (vpxdec & vpxenc are part of examples) -, fastUnalignedSupport ? true # use unaligned accesses if supported by hardware , debugLibsSupport ? false # include debug version of each library , postprocSupport ? true # postprocessing , multithreadSupport ? true # multithreaded decoding & encoding , internalStatsSupport ? false # output of encoder internal stats for debug, if supported (encoders) -, memTrackerSupport ? false # track memory usage , spatialResamplingSupport ? true # spatial sampling (scaling) , realtimeOnlySupport ? false # build for real-time encoding , ontheflyBitpackingSupport ? false # on-the-fly bitpacking in real-time encoding @@ -61,13 +59,13 @@ assert isCygwin -> unitTestsSupport && webmIOSupport && libyuvSupport; stdenv.mkDerivation rec { name = "libvpx-${version}"; - version = "1.4.0"; + version = "1.5.0"; src = fetchFromGitHub { owner = "webmproject"; repo = "libvpx"; rev = "v${version}"; - sha256 = "1y8cf2q5ij8z8ab5j36m18rbs62aah6sw6shzbs3jr70ja0z6n8s"; + sha256 = "19ill4c7dak5f8m4pdbas87zknw3a34sca8a4i952q0l0jnif0np"; }; patchPhase = ''patchShebangs .''; @@ -103,7 +101,6 @@ stdenv.mkDerivation rec { "--as=yasm" # Limit default decoder max to WHXGA (if sizeLimitSupport then "--size-limit=5120x3200" else null) - (enableFeature fastUnalignedSupport "fast-unaligned") "--disable-codec-srcs" (enableFeature debugLibsSupport "debug-libs") (enableFeature isMips "dequant-tokens") @@ -112,7 +109,6 @@ stdenv.mkDerivation rec { (enableFeature (postprocSupport && (vp9DecoderSupport || vp9EncoderSupport)) "vp9-postproc") (enableFeature multithreadSupport "multithread") (enableFeature internalStatsSupport "internal-stats") - (enableFeature memTrackerSupport "mem-tracker") (enableFeature spatialResamplingSupport "spatial-resampling") (enableFeature realtimeOnlySupport "realtime-only") (enableFeature ontheflyBitpackingSupport "onthefly-bitpacking") @@ -158,6 +154,7 @@ stdenv.mkDerivation rec { dontSetConfigureCross = true; configureFlags = configureFlags ++ [ #"--extra-cflags=" + #"--extra-cxxflags=" #"--prefix=" #"--libc=" #"--libdir=" -- cgit 1.4.1 From fd294521e6d77bf0ec2010368e8d1720060ff0db Mon Sep 17 00:00:00 2001 From: Christian Albrecht Date: Sun, 1 May 2016 18:22:40 +0200 Subject: libav: add patches for libvpx 1.5 ffmpeg bug report: https://trac.ffmpeg.org/ticket/4956 ffmepg fix commit: http://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=6540fe04a3f9a11ba7084a49b3ee5fa2fc5b32ab --- pkgs/development/libraries/libav/default.nix | 4 ++++ .../libraries/libav/vpxenc-0.8.17-libvpx-1.5.patch | 22 ++++++++++++++++++++++ .../libraries/libav/vpxenc-11.6-libvpx-1.5.patch | 22 ++++++++++++++++++++++ 3 files changed, 48 insertions(+) create mode 100644 pkgs/development/libraries/libav/vpxenc-0.8.17-libvpx-1.5.patch create mode 100644 pkgs/development/libraries/libav/vpxenc-11.6-libvpx-1.5.patch (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/libav/default.nix b/pkgs/development/libraries/libav/default.nix index b84b852691fd6..ef09b9e4b40bd 100644 --- a/pkgs/development/libraries/libav/default.nix +++ b/pkgs/development/libraries/libav/default.nix @@ -38,6 +38,10 @@ let inherit sha1; # upstream directly provides sha1 of releases over https }; + patches = [] + ++ optionals (vpxSupport && version == "0.8.17" ) [ ./vpxenc-0.8.17-libvpx-1.5.patch ] + ++ optionals (vpxSupport && version == "11.6") [ ./vpxenc-11.6-libvpx-1.5.patch ]; + preConfigure = "patchShebangs doc/texi2pod.pl"; configureFlags = diff --git a/pkgs/development/libraries/libav/vpxenc-0.8.17-libvpx-1.5.patch b/pkgs/development/libraries/libav/vpxenc-0.8.17-libvpx-1.5.patch new file mode 100644 index 0000000000000..456828c025ef5 --- /dev/null +++ b/pkgs/development/libraries/libav/vpxenc-0.8.17-libvpx-1.5.patch @@ -0,0 +1,22 @@ +--- a/libavcodec/libvpxenc.c 2016-05-01 17:57:16.753852614 +0200 ++++ b/libavcodec/libvpxenc.c 2016-05-01 18:01:08.252147138 +0200 +@@ -67,19 +67,11 @@ + + /** String mappings for enum vp8e_enc_control_id */ + static const char *ctlidstr[] = { +- [VP8E_UPD_ENTROPY] = "VP8E_UPD_ENTROPY", +- [VP8E_UPD_REFERENCE] = "VP8E_UPD_REFERENCE", +- [VP8E_USE_REFERENCE] = "VP8E_USE_REFERENCE", +- [VP8E_SET_ROI_MAP] = "VP8E_SET_ROI_MAP", +- [VP8E_SET_ACTIVEMAP] = "VP8E_SET_ACTIVEMAP", +- [VP8E_SET_SCALEMODE] = "VP8E_SET_SCALEMODE", + [VP8E_SET_CPUUSED] = "VP8E_SET_CPUUSED", + [VP8E_SET_ENABLEAUTOALTREF] = "VP8E_SET_ENABLEAUTOALTREF", + [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY", +- [VP8E_SET_SHARPNESS] = "VP8E_SET_SHARPNESS", + [VP8E_SET_STATIC_THRESHOLD] = "VP8E_SET_STATIC_THRESHOLD", + [VP8E_SET_TOKEN_PARTITIONS] = "VP8E_SET_TOKEN_PARTITIONS", +- [VP8E_GET_LAST_QUANTIZER] = "VP8E_GET_LAST_QUANTIZER", + [VP8E_SET_ARNR_MAXFRAMES] = "VP8E_SET_ARNR_MAXFRAMES", + [VP8E_SET_ARNR_STRENGTH] = "VP8E_SET_ARNR_STRENGTH", + [VP8E_SET_ARNR_TYPE] = "VP8E_SET_ARNR_TYPE", diff --git a/pkgs/development/libraries/libav/vpxenc-11.6-libvpx-1.5.patch b/pkgs/development/libraries/libav/vpxenc-11.6-libvpx-1.5.patch new file mode 100644 index 0000000000000..f3c52582b44e0 --- /dev/null +++ b/pkgs/development/libraries/libav/vpxenc-11.6-libvpx-1.5.patch @@ -0,0 +1,22 @@ +--- a/libavcodec/libvpxenc.c 2016-05-01 17:53:17.974517377 +0200 ++++ b/libavcodec/libvpxenc.c 2016-05-01 17:54:30.564923297 +0200 +@@ -70,19 +70,11 @@ + + /** String mappings for enum vp8e_enc_control_id */ + static const char *const ctlidstr[] = { +- [VP8E_UPD_ENTROPY] = "VP8E_UPD_ENTROPY", +- [VP8E_UPD_REFERENCE] = "VP8E_UPD_REFERENCE", +- [VP8E_USE_REFERENCE] = "VP8E_USE_REFERENCE", +- [VP8E_SET_ROI_MAP] = "VP8E_SET_ROI_MAP", +- [VP8E_SET_ACTIVEMAP] = "VP8E_SET_ACTIVEMAP", +- [VP8E_SET_SCALEMODE] = "VP8E_SET_SCALEMODE", + [VP8E_SET_CPUUSED] = "VP8E_SET_CPUUSED", + [VP8E_SET_ENABLEAUTOALTREF] = "VP8E_SET_ENABLEAUTOALTREF", + [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY", +- [VP8E_SET_SHARPNESS] = "VP8E_SET_SHARPNESS", + [VP8E_SET_STATIC_THRESHOLD] = "VP8E_SET_STATIC_THRESHOLD", + [VP8E_SET_TOKEN_PARTITIONS] = "VP8E_SET_TOKEN_PARTITIONS", +- [VP8E_GET_LAST_QUANTIZER] = "VP8E_GET_LAST_QUANTIZER", + [VP8E_SET_ARNR_MAXFRAMES] = "VP8E_SET_ARNR_MAXFRAMES", + [VP8E_SET_ARNR_STRENGTH] = "VP8E_SET_ARNR_STRENGTH", + [VP8E_SET_ARNR_TYPE] = "VP8E_SET_ARNR_TYPE", -- cgit 1.4.1 From 28e051f06662204527c7a23e01bafa7868087efb Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 17 May 2016 00:58:15 +0200 Subject: ffmpeg: add patches for libvpx 1.5 ffmpeg bug report: https://trac.ffmpeg.org/ticket/4956 ffmepg fix commit: http://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=6540fe04a3f9a11ba7084a49b3ee5fa2fc5b32ab --- pkgs/development/libraries/ffmpeg/0.10.nix | 1 + pkgs/development/libraries/ffmpeg/1.2.nix | 1 + pkgs/development/libraries/ffmpeg/generic.nix | 5 +++-- .../libraries/ffmpeg/vpxenc-0.10-libvpx-1.5.patch | 24 ++++++++++++++++++++++ .../libraries/ffmpeg/vpxenc-1.2-libvpx-1.5.patch | 24 ++++++++++++++++++++++ 5 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 pkgs/development/libraries/ffmpeg/vpxenc-0.10-libvpx-1.5.patch create mode 100644 pkgs/development/libraries/ffmpeg/vpxenc-1.2-libvpx-1.5.patch (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/ffmpeg/0.10.nix b/pkgs/development/libraries/ffmpeg/0.10.nix index b008151d6cb7e..4eebad6b307d9 100644 --- a/pkgs/development/libraries/ffmpeg/0.10.nix +++ b/pkgs/development/libraries/ffmpeg/0.10.nix @@ -4,4 +4,5 @@ callPackage ./generic.nix (args // rec { version = "${branch}.16"; branch = "0.10"; sha256 = "1l9z5yfp1vq4z2y4mh91707dhcn41c3pd505i0gvdzcdsp5j6y77"; + patches = [ ./vpxenc-0.10-libvpx-1.5.patch ]; }) diff --git a/pkgs/development/libraries/ffmpeg/1.2.nix b/pkgs/development/libraries/ffmpeg/1.2.nix index c87cf581c76c2..312eb70fdf20b 100644 --- a/pkgs/development/libraries/ffmpeg/1.2.nix +++ b/pkgs/development/libraries/ffmpeg/1.2.nix @@ -4,4 +4,5 @@ callPackage ./generic.nix (args // rec { version = "${branch}.12"; branch = "1.2"; sha256 = "0za9w87rk4x6wkjc6iaxqx2ihlsgj181ilfgxfjc54mdgxfcjfli"; + patches = [ ./vpxenc-1.2-libvpx-1.5.patch ]; }) diff --git a/pkgs/development/libraries/ffmpeg/generic.nix b/pkgs/development/libraries/ffmpeg/generic.nix index d50c20331e4a9..0c4e9df3df19b 100644 --- a/pkgs/development/libraries/ffmpeg/generic.nix +++ b/pkgs/development/libraries/ffmpeg/generic.nix @@ -15,7 +15,7 @@ # Darwin frameworks , Cocoa # Inherit generics -, branch, sha256, version, ... +, branch, sha256, version, patches ? [], ... }: /* Maintainer notes: @@ -69,7 +69,8 @@ stdenv.mkDerivation rec { inherit sha256; }; - patchPhase = ''patchShebangs .''; + postPatch = ''patchShebangs .''; + inherit patches; outputs = [ "dev" "out" "bin" ] ++ optional (reqMin "1.0") "doc" ; # just dev-doc diff --git a/pkgs/development/libraries/ffmpeg/vpxenc-0.10-libvpx-1.5.patch b/pkgs/development/libraries/ffmpeg/vpxenc-0.10-libvpx-1.5.patch new file mode 100644 index 0000000000000..740bb746aade1 --- /dev/null +++ b/pkgs/development/libraries/ffmpeg/vpxenc-0.10-libvpx-1.5.patch @@ -0,0 +1,24 @@ +diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c +index 1d33ce9..dface51 100644 +--- a/libavcodec/libvpxenc.c ++++ b/libavcodec/libvpxenc.c +@@ -78,19 +78,11 @@ typedef struct VP8EncoderContext { + + /** String mappings for enum vp8e_enc_control_id */ + static const char *ctlidstr[] = { +- [VP8E_UPD_ENTROPY] = "VP8E_UPD_ENTROPY", +- [VP8E_UPD_REFERENCE] = "VP8E_UPD_REFERENCE", +- [VP8E_USE_REFERENCE] = "VP8E_USE_REFERENCE", +- [VP8E_SET_ROI_MAP] = "VP8E_SET_ROI_MAP", +- [VP8E_SET_ACTIVEMAP] = "VP8E_SET_ACTIVEMAP", +- [VP8E_SET_SCALEMODE] = "VP8E_SET_SCALEMODE", + [VP8E_SET_CPUUSED] = "VP8E_SET_CPUUSED", + [VP8E_SET_ENABLEAUTOALTREF] = "VP8E_SET_ENABLEAUTOALTREF", + [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY", +- [VP8E_SET_SHARPNESS] = "VP8E_SET_SHARPNESS", + [VP8E_SET_STATIC_THRESHOLD] = "VP8E_SET_STATIC_THRESHOLD", + [VP8E_SET_TOKEN_PARTITIONS] = "VP8E_SET_TOKEN_PARTITIONS", +- [VP8E_GET_LAST_QUANTIZER] = "VP8E_GET_LAST_QUANTIZER", + [VP8E_SET_ARNR_MAXFRAMES] = "VP8E_SET_ARNR_MAXFRAMES", + [VP8E_SET_ARNR_STRENGTH] = "VP8E_SET_ARNR_STRENGTH", + [VP8E_SET_ARNR_TYPE] = "VP8E_SET_ARNR_TYPE", diff --git a/pkgs/development/libraries/ffmpeg/vpxenc-1.2-libvpx-1.5.patch b/pkgs/development/libraries/ffmpeg/vpxenc-1.2-libvpx-1.5.patch new file mode 100644 index 0000000000000..7f1ec1df6c762 --- /dev/null +++ b/pkgs/development/libraries/ffmpeg/vpxenc-1.2-libvpx-1.5.patch @@ -0,0 +1,24 @@ +diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c +index 4f1adb8..1791952 100644 +--- a/libavcodec/libvpxenc.c ++++ b/libavcodec/libvpxenc.c +@@ -87,19 +87,11 @@ typedef struct VP8EncoderContext { + + /** String mappings for enum vp8e_enc_control_id */ + static const char *const ctlidstr[] = { +- [VP8E_UPD_ENTROPY] = "VP8E_UPD_ENTROPY", +- [VP8E_UPD_REFERENCE] = "VP8E_UPD_REFERENCE", +- [VP8E_USE_REFERENCE] = "VP8E_USE_REFERENCE", +- [VP8E_SET_ROI_MAP] = "VP8E_SET_ROI_MAP", +- [VP8E_SET_ACTIVEMAP] = "VP8E_SET_ACTIVEMAP", +- [VP8E_SET_SCALEMODE] = "VP8E_SET_SCALEMODE", + [VP8E_SET_CPUUSED] = "VP8E_SET_CPUUSED", + [VP8E_SET_ENABLEAUTOALTREF] = "VP8E_SET_ENABLEAUTOALTREF", + [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY", +- [VP8E_SET_SHARPNESS] = "VP8E_SET_SHARPNESS", + [VP8E_SET_STATIC_THRESHOLD] = "VP8E_SET_STATIC_THRESHOLD", + [VP8E_SET_TOKEN_PARTITIONS] = "VP8E_SET_TOKEN_PARTITIONS", +- [VP8E_GET_LAST_QUANTIZER] = "VP8E_GET_LAST_QUANTIZER", + [VP8E_SET_ARNR_MAXFRAMES] = "VP8E_SET_ARNR_MAXFRAMES", + [VP8E_SET_ARNR_STRENGTH] = "VP8E_SET_ARNR_STRENGTH", + [VP8E_SET_ARNR_TYPE] = "VP8E_SET_ARNR_TYPE", -- cgit 1.4.1 From b49bf121b8bfea77b1c5c1eff23a96bef46a1eb8 Mon Sep 17 00:00:00 2001 From: Domen Kožar Date: Tue, 17 May 2016 12:57:28 +0100 Subject: rename iElectric to domenkozar to match GitHub --- lib/maintainers.nix | 2 +- nixos/tests/bittorrent.nix | 2 +- nixos/tests/gitlab.nix | 2 +- nixos/tests/gnome3.nix | 2 +- nixos/tests/jenkins.nix | 2 +- nixos/tests/kde4.nix | 2 +- nixos/tests/munin.nix | 2 +- nixos/tests/printing.nix | 2 +- nixos/tests/quake3.nix | 2 +- pkgs/applications/backup/crashplan/default.nix | 2 +- pkgs/applications/editors/vim/ft-nix-support.patch | 2 +- pkgs/applications/graphics/shotwell/default.nix | 2 +- pkgs/applications/misc/calibre/default.nix | 2 +- pkgs/applications/misc/cbatticon/default.nix | 2 +- pkgs/applications/misc/dunst/default.nix | 2 +- pkgs/applications/misc/ocropus/default.nix | 2 +- pkgs/applications/misc/pgadmin/default.nix | 2 +- .../networking/bittorrentsync/generic.nix | 2 +- pkgs/applications/networking/ike/default.nix | 2 +- .../networking/instant-messengers/utox/default.nix | 2 +- .../networking/mailreaders/mailpile/default.nix | 2 +- .../applications/networking/p2p/retroshare/0.6.nix | 2 +- .../networking/p2p/retroshare/default.nix | 2 +- pkgs/applications/office/gnucash/2.6.nix | 2 +- pkgs/applications/office/gnucash/default.nix | 2 +- .../git-and-tools/tig/default.nix | 2 +- pkgs/applications/video/kazam/default.nix | 2 +- pkgs/applications/video/kodi/default.nix | 2 +- pkgs/applications/video/mkcast/default.nix | 2 +- pkgs/applications/video/xawtv/default.nix | 2 +- .../applications/window-managers/i3/lock-color.nix | 2 +- pkgs/applications/window-managers/i3/lock.nix | 2 +- pkgs/desktops/gnome-3/3.18/core/vino/default.nix | 2 +- .../gnome-3/3.18/core/yelp-tools/default.nix | 2 +- pkgs/desktops/gnome-3/3.18/misc/gitg/default.nix | 2 +- pkgs/development/interpreters/pypy/default.nix | 2 +- .../interpreters/python/2.6/default.nix | 2 +- .../interpreters/python/2.7/default.nix | 2 +- .../interpreters/python/3.4/default.nix | 2 +- .../interpreters/python/3.5/default.nix | 2 +- .../development/python-modules/generic/default.nix | 2 +- pkgs/development/tools/sslmate/default.nix | 2 +- pkgs/games/planetaryannihilation/default.nix | 2 +- pkgs/games/spring/default.nix | 2 +- pkgs/games/spring/springlobby.nix | 2 +- pkgs/os-specific/linux/dpdk/default.nix | 2 +- pkgs/os-specific/linux/numad/default.nix | 2 +- pkgs/os-specific/linux/v4l2loopback/default.nix | 2 +- pkgs/servers/monitoring/munin/default.nix | 2 +- pkgs/servers/search/solr/default.nix | 2 +- pkgs/tools/X11/arandr/default.nix | 2 +- pkgs/tools/admin/letsencrypt/default.nix | 2 +- pkgs/tools/archivers/xarchive/default.nix | 2 +- pkgs/tools/archivers/xarchiver/default.nix | 2 +- pkgs/tools/audio/beets/default.nix | 2 +- pkgs/tools/audio/pa-applet/default.nix | 2 +- pkgs/tools/backup/bacula/default.nix | 2 +- pkgs/tools/filesystems/extundelete/default.nix | 2 +- pkgs/tools/misc/autojump/default.nix | 2 +- pkgs/tools/misc/i3minator/default.nix | 2 +- pkgs/tools/misc/ldapvi/default.nix | 2 +- pkgs/tools/misc/unclutter/default.nix | 2 +- pkgs/tools/networking/aircrack-ng/default.nix | 2 +- pkgs/tools/networking/dd-agent/default.nix | 2 +- pkgs/tools/networking/getmail/default.nix | 2 +- pkgs/tools/networking/network-manager/default.nix | 2 +- pkgs/tools/networking/snabb/default.nix | 2 +- pkgs/tools/networking/speedtest-cli/default.nix | 2 +- .../package-management/python2nix/default.nix | 2 +- pkgs/tools/security/haveged/default.nix | 2 +- pkgs/tools/security/prey/default.nix | 2 +- pkgs/tools/security/sshuttle/default.nix | 2 +- pkgs/tools/system/dd_rescue/default.nix | 2 +- pkgs/tools/system/ddrescue/default.nix | 2 +- pkgs/tools/system/thinkfan/default.nix | 2 +- pkgs/tools/text/poedit/default.nix | 2 +- pkgs/tools/text/wgetpaste/default.nix | 2 +- pkgs/top-level/python-packages.nix | 136 ++++++++++----------- 78 files changed, 145 insertions(+), 145 deletions(-) (limited to 'pkgs/development') diff --git a/lib/maintainers.nix b/lib/maintainers.nix index e84a16fdd2a7d..35aa1bb400883 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -160,7 +160,7 @@ hrdinka = "Christoph Hrdinka "; iand675 = "Ian Duncan "; ianwookim = "Ian-Woo Kim "; - iElectric = "Domen Kozar "; + domenkozar = "Domen Kozar "; igsha = "Igor Sharonov "; ikervagyok = "Balázs Lengyel "; j-keck = "Jürgen Keck "; diff --git a/nixos/tests/bittorrent.nix b/nixos/tests/bittorrent.nix index 95bba075612d8..5aded554f4e8b 100644 --- a/nixos/tests/bittorrent.nix +++ b/nixos/tests/bittorrent.nix @@ -25,7 +25,7 @@ in { name = "bittorrent"; meta = with pkgs.stdenv.lib.maintainers; { - maintainers = [ iElectric eelco chaoflow rob wkennington ]; + maintainers = [ domenkozar eelco chaoflow rob wkennington ]; }; nodes = diff --git a/nixos/tests/gitlab.nix b/nixos/tests/gitlab.nix index bce862b4ad894..357911046960a 100644 --- a/nixos/tests/gitlab.nix +++ b/nixos/tests/gitlab.nix @@ -3,7 +3,7 @@ import ./make-test.nix ({ pkgs, ...} : { name = "gitlab"; meta = with pkgs.stdenv.lib.maintainers; { - maintainers = [ iElectric offline ]; + maintainers = [ domenkozar offline ]; }; nodes = { diff --git a/nixos/tests/gnome3.nix b/nixos/tests/gnome3.nix index 50e7f4eace3b5..bd8f9502e2fc0 100644 --- a/nixos/tests/gnome3.nix +++ b/nixos/tests/gnome3.nix @@ -1,7 +1,7 @@ import ./make-test.nix ({ pkgs, ...} : { name = "gnome3"; meta = with pkgs.stdenv.lib.maintainers; { - maintainers = [ iElectric eelco chaoflow lethalman ]; + maintainers = [ domenkozar eelco chaoflow lethalman ]; }; machine = diff --git a/nixos/tests/jenkins.nix b/nixos/tests/jenkins.nix index 804cecd700c1f..a9833058f3786 100644 --- a/nixos/tests/jenkins.nix +++ b/nixos/tests/jenkins.nix @@ -6,7 +6,7 @@ import ./make-test.nix ({ pkgs, ...} : { name = "jenkins"; meta = with pkgs.stdenv.lib.maintainers; { - maintainers = [ bjornfor coconnor iElectric eelco chaoflow ]; + maintainers = [ bjornfor coconnor domenkozar eelco chaoflow ]; }; nodes = { diff --git a/nixos/tests/kde4.nix b/nixos/tests/kde4.nix index 2693fb4fbf0ae..9ecfe68705643 100644 --- a/nixos/tests/kde4.nix +++ b/nixos/tests/kde4.nix @@ -1,7 +1,7 @@ import ./make-test.nix ({ pkgs, ... }: { name = "kde4"; meta = with pkgs.stdenv.lib.maintainers; { - maintainers = [ iElectric eelco chaoflow ]; + maintainers = [ domenkozar eelco chaoflow ]; }; machine = diff --git a/nixos/tests/munin.nix b/nixos/tests/munin.nix index 16015d3355236..50746d17b4515 100644 --- a/nixos/tests/munin.nix +++ b/nixos/tests/munin.nix @@ -4,7 +4,7 @@ import ./make-test.nix ({ pkgs, ...} : { name = "munin"; meta = with pkgs.stdenv.lib.maintainers; { - maintainers = [ iElectric eelco chaoflow ]; + maintainers = [ domenkozar eelco chaoflow ]; }; nodes = { diff --git a/nixos/tests/printing.nix b/nixos/tests/printing.nix index c777fd41b780d..e44e5bf11d333 100644 --- a/nixos/tests/printing.nix +++ b/nixos/tests/printing.nix @@ -3,7 +3,7 @@ import ./make-test.nix ({pkgs, ... }: { name = "printing"; meta = with pkgs.stdenv.lib.maintainers; { - maintainers = [ iElectric eelco chaoflow jgeerds ]; + maintainers = [ domenkozar eelco chaoflow jgeerds ]; }; nodes = { diff --git a/nixos/tests/quake3.nix b/nixos/tests/quake3.nix index b8a632c6e14de..22d71595cb488 100644 --- a/nixos/tests/quake3.nix +++ b/nixos/tests/quake3.nix @@ -22,7 +22,7 @@ in rec { name = "quake3"; meta = with pkgs.stdenv.lib.maintainers; { - maintainers = [ iElectric eelco chaoflow ]; + maintainers = [ domenkozar eelco chaoflow ]; }; # TODO: lcov doesn't work atm diff --git a/pkgs/applications/backup/crashplan/default.nix b/pkgs/applications/backup/crashplan/default.nix index 3b67cdc7b1a2e..0406dacba8831 100644 --- a/pkgs/applications/backup/crashplan/default.nix +++ b/pkgs/applications/backup/crashplan/default.nix @@ -18,7 +18,7 @@ in stdenv.mkDerivation rec { description = "An online/offline backup solution"; homepage = "http://www.crashplan.org"; license = licenses.unfree; - maintainers = with maintainers; [ sztupi iElectric ]; + maintainers = with maintainers; [ sztupi domenkozar ]; }; buildInputs = [ makeWrapper cpio ]; diff --git a/pkgs/applications/editors/vim/ft-nix-support.patch b/pkgs/applications/editors/vim/ft-nix-support.patch index cbbe1ccb212fd..416ec18cf2cad 100644 --- a/pkgs/applications/editors/vim/ft-nix-support.patch +++ b/pkgs/applications/editors/vim/ft-nix-support.patch @@ -75,7 +75,7 @@ index 0000000..a2f9918 + +let b:current_syntax = "nix" + -+" thanks to iElectric ++" thanks to domenkozar +" scan backwards to find begining of multiline statements +syn sync ccomment nixMultiLineComment minlines=10 maxlines=500 +syn sync ccomment nixStringIndented minlines=10 maxlines=500 diff --git a/pkgs/applications/graphics/shotwell/default.nix b/pkgs/applications/graphics/shotwell/default.nix index 94094a149c920..0cb8a082fc6a2 100644 --- a/pkgs/applications/graphics/shotwell/default.nix +++ b/pkgs/applications/graphics/shotwell/default.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { description = "Popular photo organizer for the GNOME desktop"; homepage = https://wiki.gnome.org/Apps/Shotwell; license = licenses.lgpl21Plus; - maintainers = with maintainers; [iElectric]; + maintainers = with maintainers; [domenkozar]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index c80c6e9d34653..3b8ab7f07f3ce 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { description = "Comprehensive e-book software"; homepage = http://calibre-ebook.com; license = with licenses; if unrarSupport then unfreeRedistributable else gpl3; - maintainers = with maintainers; [ viric iElectric pSub AndersonTorres ]; + maintainers = with maintainers; [ viric domenkozar pSub AndersonTorres ]; platforms = platforms.linux; inherit version; }; diff --git a/pkgs/applications/misc/cbatticon/default.nix b/pkgs/applications/misc/cbatticon/default.nix index 10c8c48369495..d072c5d6a49cc 100644 --- a/pkgs/applications/misc/cbatticon/default.nix +++ b/pkgs/applications/misc/cbatticon/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { description = "Lightweight and fast battery icon that sits in the system tray"; homepage = https://github.com/valr/cbatticon; license = licenses.gpl2; - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/misc/dunst/default.nix b/pkgs/applications/misc/dunst/default.nix index 651c74b2d2176..3e60a40ab5338 100644 --- a/pkgs/applications/misc/dunst/default.nix +++ b/pkgs/applications/misc/dunst/default.nix @@ -35,6 +35,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.bsd3; # NOTE: 'unix' or even 'all' COULD work too, I'm not sure platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.iElectric ]; + maintainers = [ stdenv.lib.maintainers.domenkozar ]; }; } diff --git a/pkgs/applications/misc/ocropus/default.nix b/pkgs/applications/misc/ocropus/default.nix index 7e066fbc59190..d84671cfa8c53 100644 --- a/pkgs/applications/misc/ocropus/default.nix +++ b/pkgs/applications/misc/ocropus/default.nix @@ -52,7 +52,7 @@ pythonPackages.buildPythonApplication rec { description = "Open source document analysis and OCR system"; license = licenses.asl20; homepage = https://github.com/tmbdev/ocropy/; - maintainers = with maintainers; [ iElectric nckx viric ]; + maintainers = with maintainers; [ domenkozar nckx viric ]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/misc/pgadmin/default.nix b/pkgs/applications/misc/pgadmin/default.nix index 2f33edc9adcc7..72185848e4ac1 100644 --- a/pkgs/applications/misc/pgadmin/default.nix +++ b/pkgs/applications/misc/pgadmin/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { description = "PostgreSQL administration GUI tool"; homepage = http://www.pgadmin.org; license = licenses.gpl2; - maintainers = with maintainers; [ iElectric wmertens ]; + maintainers = with maintainers; [ domenkozar wmertens ]; platforms = platforms.unix; }; } diff --git a/pkgs/applications/networking/bittorrentsync/generic.nix b/pkgs/applications/networking/bittorrentsync/generic.nix index 6d8735609eafe..3fa7fe180402a 100644 --- a/pkgs/applications/networking/bittorrentsync/generic.nix +++ b/pkgs/applications/networking/bittorrentsync/generic.nix @@ -35,6 +35,6 @@ stdenv.mkDerivation rec { homepage = https://www.getsync.com/; license = stdenv.lib.licenses.unfreeRedistributable; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iElectric thoughtpolice cwoac ]; + maintainers = with stdenv.lib.maintainers; [ domenkozar thoughtpolice cwoac ]; }; } diff --git a/pkgs/applications/networking/ike/default.nix b/pkgs/applications/networking/ike/default.nix index 5ea0975e15f37..319d7488b6b10 100644 --- a/pkgs/applications/networking/ike/default.nix +++ b/pkgs/applications/networking/ike/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { homepage = https://www.shrew.net/software; description = "IPsec Client for FreeBSD, NetBSD and many Linux based operating systems"; platforms = platforms.unix; - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; license = licenses.sleepycat; }; } diff --git a/pkgs/applications/networking/instant-messengers/utox/default.nix b/pkgs/applications/networking/instant-messengers/utox/default.nix index 0ae0cca599187..c49a9805b6a1a 100644 --- a/pkgs/applications/networking/instant-messengers/utox/default.nix +++ b/pkgs/applications/networking/instant-messengers/utox/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Lightweight Tox client"; license = licenses.gpl3; - maintainers = with maintainers; [ iElectric jgeerds ]; + maintainers = with maintainers; [ domenkozar jgeerds ]; platforms = platforms.all; }; } diff --git a/pkgs/applications/networking/mailreaders/mailpile/default.nix b/pkgs/applications/networking/mailreaders/mailpile/default.nix index 5936ae6e878ec..9d6a93e95ba22 100644 --- a/pkgs/applications/networking/mailreaders/mailpile/default.nix +++ b/pkgs/applications/networking/mailreaders/mailpile/default.nix @@ -29,6 +29,6 @@ pythonPackages.buildPythonApplication rec { homepage = https://www.mailpile.is/; license = [ licenses.asl20 licenses.agpl3 ]; platforms = platforms.linux; - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; }; } diff --git a/pkgs/applications/networking/p2p/retroshare/0.6.nix b/pkgs/applications/networking/p2p/retroshare/0.6.nix index 67028fb5dec13..39c1fd02b2b62 100644 --- a/pkgs/applications/networking/p2p/retroshare/0.6.nix +++ b/pkgs/applications/networking/p2p/retroshare/0.6.nix @@ -56,6 +56,6 @@ stdenv.mkDerivation { homepage = http://retroshare.sourceforge.net/; #license = licenses.bsd2; platforms = platforms.linux; - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; }; } diff --git a/pkgs/applications/networking/p2p/retroshare/default.nix b/pkgs/applications/networking/p2p/retroshare/default.nix index 314d0557e9f91..cb6dad20ce084 100644 --- a/pkgs/applications/networking/p2p/retroshare/default.nix +++ b/pkgs/applications/networking/p2p/retroshare/default.nix @@ -49,6 +49,6 @@ stdenv.mkDerivation { homepage = http://retroshare.sourceforge.net/; #license = licenses.bsd2; platforms = platforms.linux; - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; }; } diff --git a/pkgs/applications/office/gnucash/2.6.nix b/pkgs/applications/office/gnucash/2.6.nix index 2bc073300e6c1..03af54f0ce14c 100644 --- a/pkgs/applications/office/gnucash/2.6.nix +++ b/pkgs/applications/office/gnucash/2.6.nix @@ -103,7 +103,7 @@ stdenv.mkDerivation rec { homepage = http://www.gnucash.org/; - maintainers = [ stdenv.lib.maintainers.peti stdenv.lib.maintainers.iElectric ]; + maintainers = [ stdenv.lib.maintainers.peti stdenv.lib.maintainers.domenkozar ]; platforms = stdenv.lib.platforms.gnu; }; } diff --git a/pkgs/applications/office/gnucash/default.nix b/pkgs/applications/office/gnucash/default.nix index 8dbb70b008843..87e7ce261a156 100644 --- a/pkgs/applications/office/gnucash/default.nix +++ b/pkgs/applications/office/gnucash/default.nix @@ -77,7 +77,7 @@ stdenv.mkDerivation rec { homepage = http://www.gnucash.org/; - maintainers = [ stdenv.lib.maintainers.peti stdenv.lib.maintainers.iElectric ]; + maintainers = [ stdenv.lib.maintainers.peti stdenv.lib.maintainers.domenkozar ]; platforms = stdenv.lib.platforms.gnu; }; } diff --git a/pkgs/applications/version-management/git-and-tools/tig/default.nix b/pkgs/applications/version-management/git-and-tools/tig/default.nix index 362897d0e720e..8320318c70844 100644 --- a/pkgs/applications/version-management/git-and-tools/tig/default.nix +++ b/pkgs/applications/version-management/git-and-tools/tig/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = "http://jonas.nitro.dk/tig/"; description = "Text-mode interface for git"; - maintainers = with maintainers; [ garbas bjornfor iElectric qknight ]; + maintainers = with maintainers; [ garbas bjornfor domenkozar qknight ]; license = licenses.gpl2; platforms = platforms.unix; }; diff --git a/pkgs/applications/video/kazam/default.nix b/pkgs/applications/video/kazam/default.nix index 22b47c532e5fc..e841b5f9b2e29 100644 --- a/pkgs/applications/video/kazam/default.nix +++ b/pkgs/applications/video/kazam/default.nix @@ -46,6 +46,6 @@ python3Packages.buildPythonApplication rec { homepage = https://code.launchpad.net/kazam; #license = licenses.bsd2; platforms = platforms.linux; - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; }; } diff --git a/pkgs/applications/video/kodi/default.nix b/pkgs/applications/video/kodi/default.nix index bca0551c0017d..1926913c8d04f 100644 --- a/pkgs/applications/video/kodi/default.nix +++ b/pkgs/applications/video/kodi/default.nix @@ -121,6 +121,6 @@ in stdenv.mkDerivation rec { description = "Media center"; license = stdenv.lib.licenses.gpl2; platforms = platforms.linux; - maintainers = with maintainers; [ iElectric titanous edwtjo ]; + maintainers = with maintainers; [ domenkozar titanous edwtjo ]; }; } diff --git a/pkgs/applications/video/mkcast/default.nix b/pkgs/applications/video/mkcast/default.nix index c029e90f49cf0..8c67b667a3247 100644 --- a/pkgs/applications/video/mkcast/default.nix +++ b/pkgs/applications/video/mkcast/default.nix @@ -32,6 +32,6 @@ stdenv.mkDerivation rec { description = "A tool for creating GIF screencasts of a terminal, with key presses overlaid"; homepage = https://github.com/KeyboardFire/mkcast; platforms = platforms.linux; - maintainers = with maintainers; [ iElectric pSub ]; + maintainers = with maintainers; [ domenkozar pSub ]; }; } diff --git a/pkgs/applications/video/xawtv/default.nix b/pkgs/applications/video/xawtv/default.nix index 60b5b20ff2415..d249d29686e4a 100644 --- a/pkgs/applications/video/xawtv/default.nix +++ b/pkgs/applications/video/xawtv/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { description = "TV application for Linux with apps and tools such as a teletext browser"; license = stdenv.lib.licenses.gpl2; homepage = https://www.kraxel.org/blog/linux/xawtv/; - maintainers = with stdenv.lib.maintainers; [ iElectric ]; + maintainers = with stdenv.lib.maintainers; [ domenkozar ]; platforms = stdenv.lib.platforms.linux; }; diff --git a/pkgs/applications/window-managers/i3/lock-color.nix b/pkgs/applications/window-managers/i3/lock-color.nix index 8a02e82994ad2..09be3500fecfe 100644 --- a/pkgs/applications/window-managers/i3/lock-color.nix +++ b/pkgs/applications/window-managers/i3/lock-color.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "A simple screen locker like slock"; homepage = http://i3wm.org/i3lock/; - maintainers = with maintainers; [ garbas malyn iElectric ]; + maintainers = with maintainers; [ garbas malyn ]; license = licenses.bsd3; platforms = platforms.all; }; diff --git a/pkgs/applications/window-managers/i3/lock.nix b/pkgs/applications/window-managers/i3/lock.nix index 099a2523fb4d4..56e0643811fac 100644 --- a/pkgs/applications/window-managers/i3/lock.nix +++ b/pkgs/applications/window-managers/i3/lock.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "A simple screen locker like slock"; homepage = http://i3wm.org/i3lock/; - maintainers = with maintainers; [ garbas malyn iElectric ]; + maintainers = with maintainers; [ garbas malyn domenkozar ]; license = licenses.bsd3; platforms = platforms.all; }; diff --git a/pkgs/desktops/gnome-3/3.18/core/vino/default.nix b/pkgs/desktops/gnome-3/3.18/core/vino/default.nix index 7a015b4a010c7..336178f3729db 100644 --- a/pkgs/desktops/gnome-3/3.18/core/vino/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/vino/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = https://wiki.gnome.org/action/show/Projects/Vino; description = "GNOME desktop sharing server"; - maintainers = with maintainers; [ lethalman iElectric ]; + maintainers = with maintainers; [ lethalman domenkozar ]; license = licenses.gpl2; platforms = platforms.linux; }; diff --git a/pkgs/desktops/gnome-3/3.18/core/yelp-tools/default.nix b/pkgs/desktops/gnome-3/3.18/core/yelp-tools/default.nix index de708d48c5ec5..9111802eb6a83 100644 --- a/pkgs/desktops/gnome-3/3.18/core/yelp-tools/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/yelp-tools/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/Yelp/Tools; description = "Small programs that help you create, edit, manage, and publish your Mallard or DocBook documentation"; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; license = licenses.gpl2; platforms = platforms.linux; }; diff --git a/pkgs/desktops/gnome-3/3.18/misc/gitg/default.nix b/pkgs/desktops/gnome-3/3.18/misc/gitg/default.nix index e7f833bf71723..2c4d37a7edf8d 100644 --- a/pkgs/desktops/gnome-3/3.18/misc/gitg/default.nix +++ b/pkgs/desktops/gnome-3/3.18/misc/gitg/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = https://wiki.gnome.org/action/show/Apps/Gitg; description = "GNOME GUI client to view git repositories"; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; license = licenses.gpl2; platforms = platforms.linux; }; diff --git a/pkgs/development/interpreters/pypy/default.nix b/pkgs/development/interpreters/pypy/default.nix index e9857f6f44009..f973578529f85 100644 --- a/pkgs/development/interpreters/pypy/default.nix +++ b/pkgs/development/interpreters/pypy/default.nix @@ -118,7 +118,7 @@ let description = "Fast, compliant alternative implementation of the Python language (2.7.8)"; license = licenses.mit; platforms = platforms.linux; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix index ceb71c4997ba5..548b7bcecbc7d 100644 --- a/pkgs/development/interpreters/python/2.6/default.nix +++ b/pkgs/development/interpreters/python/2.6/default.nix @@ -119,7 +119,7 @@ let ''; license = stdenv.lib.licenses.psfl; platforms = stdenv.lib.platforms.all; - maintainers = with stdenv.lib.maintainers; [ chaoflow iElectric ]; + maintainers = with stdenv.lib.maintainers; [ chaoflow domenkozar ]; # If you want to use Python 2.6, remove "broken = true;" at your own # risk. Python 2.6 has known security vulnerabilities is not receiving # security updates as of October 2013. diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix index 2f8907628fa3d..2e94cb6874e0e 100644 --- a/pkgs/development/interpreters/python/2.7/default.nix +++ b/pkgs/development/interpreters/python/2.7/default.nix @@ -173,7 +173,7 @@ let ''; license = stdenv.lib.licenses.psfl; platforms = stdenv.lib.platforms.all; - maintainers = with stdenv.lib.maintainers; [ chaoflow iElectric ]; + maintainers = with stdenv.lib.maintainers; [ chaoflow domenkozar ]; }; }; diff --git a/pkgs/development/interpreters/python/3.4/default.nix b/pkgs/development/interpreters/python/3.4/default.nix index 346046441d558..b36eda67867bd 100644 --- a/pkgs/development/interpreters/python/3.4/default.nix +++ b/pkgs/development/interpreters/python/3.4/default.nix @@ -127,6 +127,6 @@ stdenv.mkDerivation { ''; license = licenses.psfl; platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ chaoflow iElectric cstrahan ]; + maintainers = with maintainers; [ chaoflow domenkozar cstrahan ]; }; } diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix index ae1bbe1e822ce..087b5988e26af 100644 --- a/pkgs/development/interpreters/python/3.5/default.nix +++ b/pkgs/development/interpreters/python/3.5/default.nix @@ -127,6 +127,6 @@ stdenv.mkDerivation { ''; license = licenses.psfl; platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ chaoflow iElectric cstrahan ]; + maintainers = with maintainers; [ chaoflow domenkozar cstrahan ]; }; } diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix index a90b66a337576..7221bac320c9c 100644 --- a/pkgs/development/python-modules/generic/default.nix +++ b/pkgs/development/python-modules/generic/default.nix @@ -164,7 +164,7 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // platforms = python.meta.platforms; } // meta // { # add extra maintainer(s) to every package - maintainers = (meta.maintainers or []) ++ [ chaoflow iElectric ]; + maintainers = (meta.maintainers or []) ++ [ chaoflow domenkozar ]; # a marker for release utilities to discover python packages isBuildPythonPackage = python.meta.platforms; }; diff --git a/pkgs/development/tools/sslmate/default.nix b/pkgs/development/tools/sslmate/default.nix index 8def4b6a66577..deb5c8106282e 100644 --- a/pkgs/development/tools/sslmate/default.nix +++ b/pkgs/development/tools/sslmate/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = https://sslmate.com; - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; description = "Easy to buy, deploy, and manage your SSL certs"; platforms = platforms.unix; license = licenses.mit; # X11 diff --git a/pkgs/games/planetaryannihilation/default.nix b/pkgs/games/planetaryannihilation/default.nix index cf968c08287e2..b3237012eccd4 100644 --- a/pkgs/games/planetaryannihilation/default.nix +++ b/pkgs/games/planetaryannihilation/default.nix @@ -48,6 +48,6 @@ stdenv.mkDerivation { description = "next-generation RTS that takes the genre to a planetary scale"; license = stdenv.lib.licenses.unfree; platforms = platforms.linux; - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; }; } diff --git a/pkgs/games/spring/default.nix b/pkgs/games/spring/default.nix index 9e4a0954272bc..e6631c2165465 100644 --- a/pkgs/games/spring/default.nix +++ b/pkgs/games/spring/default.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { homepage = http://springrts.com/; description = "A powerful real-time strategy (RTS) game engine"; license = licenses.gpl2; - maintainers = [ maintainers.phreedom maintainers.qknight maintainers.iElectric ]; + maintainers = [ maintainers.phreedom maintainers.qknight maintainers.domenkozar ]; platforms = platforms.linux; }; } diff --git a/pkgs/games/spring/springlobby.nix b/pkgs/games/spring/springlobby.nix index 571cf311545a6..2cd9f24721f69 100644 --- a/pkgs/games/spring/springlobby.nix +++ b/pkgs/games/spring/springlobby.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { repositories.git = git://github.com/springlobby/springlobby.git; description = "Cross-platform lobby client for the Spring RTS project"; license = licenses.gpl2; - maintainers = with maintainers; [ phreedom qknight iElectric ]; + maintainers = with maintainers; [ phreedom qknight domenkozar ]; platforms = platforms.linux; }; } diff --git a/pkgs/os-specific/linux/dpdk/default.nix b/pkgs/os-specific/linux/dpdk/default.nix index 7ca71a695e015..2d7c8a5f14e10 100644 --- a/pkgs/os-specific/linux/dpdk/default.nix +++ b/pkgs/os-specific/linux/dpdk/default.nix @@ -36,6 +36,6 @@ stdenv.mkDerivation rec { homepage = http://dpdk.org/; license = with licenses; [ lgpl21 gpl2 bsd2 ]; platforms = [ "x86_64-linux" ]; - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; }; } diff --git a/pkgs/os-specific/linux/numad/default.nix b/pkgs/os-specific/linux/numad/default.nix index 2e88e2c794e76..55edff5771209 100644 --- a/pkgs/os-specific/linux/numad/default.nix +++ b/pkgs/os-specific/linux/numad/default.nix @@ -22,6 +22,6 @@ stdenv.mkDerivation rec { homepage = https://fedoraproject.org/wiki/Features/numad; license = licenses.lgpl21; platforms = platforms.linux; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; } diff --git a/pkgs/os-specific/linux/v4l2loopback/default.nix b/pkgs/os-specific/linux/v4l2loopback/default.nix index 13617360d2d4d..5fa81a0d3a73a 100644 --- a/pkgs/os-specific/linux/v4l2loopback/default.nix +++ b/pkgs/os-specific/linux/v4l2loopback/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { description = "A kernel module to create V4L2 loopback devices"; homepage = https://github.com/umlaeute/v4l2loopback; license = licenses.gpl2; - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; platforms = platforms.linux; }; } diff --git a/pkgs/servers/monitoring/munin/default.nix b/pkgs/servers/monitoring/munin/default.nix index 71f76695bb2ea..e3da9dfa75f27 100644 --- a/pkgs/servers/monitoring/munin/default.nix +++ b/pkgs/servers/monitoring/munin/default.nix @@ -127,7 +127,7 @@ stdenv.mkDerivation rec { ''; homepage = http://munin-monitoring.org/; license = licenses.gpl2; - maintainers = [ maintainers.iElectric maintainers.bjornfor ]; + maintainers = [ maintainers.domenkozar maintainers.bjornfor ]; platforms = platforms.linux; }; } diff --git a/pkgs/servers/search/solr/default.nix b/pkgs/servers/search/solr/default.nix index 76a83d77c5e5f..d4f9e1df8842e 100644 --- a/pkgs/servers/search/solr/default.nix +++ b/pkgs/servers/search/solr/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { description = "Open source enterprise search platform from the Apache Lucene project"; license = licenses.asl20; platforms = platforms.all; - maintainers = [ maintainers.rickynils maintainers.iElectric ]; + maintainers = [ maintainers.rickynils maintainers.domenkozar ]; }; } diff --git a/pkgs/tools/X11/arandr/default.nix b/pkgs/tools/X11/arandr/default.nix index 676800f73e968..f86e9b60e04a8 100644 --- a/pkgs/tools/X11/arandr/default.nix +++ b/pkgs/tools/X11/arandr/default.nix @@ -22,6 +22,6 @@ pythonPackages.buildPythonApplication rec { homepage = http://christian.amsuess.com/tools/arandr/; description = "A simple visual front end for XRandR"; license = stdenv.lib.licenses.gpl3; - maintainers = [ stdenv.lib.maintainers.iElectric ]; + maintainers = [ stdenv.lib.maintainers.domenkozar ]; }; } diff --git a/pkgs/tools/admin/letsencrypt/default.nix b/pkgs/tools/admin/letsencrypt/default.nix index ce5221e6d182a..90c97eb6373ec 100644 --- a/pkgs/tools/admin/letsencrypt/default.nix +++ b/pkgs/tools/admin/letsencrypt/default.nix @@ -44,7 +44,7 @@ pythonPackages.buildPythonApplication rec { homepage = src.meta.homepage; description = "ACME client that can obtain certs and extensibly update server configurations"; platforms = platforms.unix; - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; license = licenses.asl20; }; } diff --git a/pkgs/tools/archivers/xarchive/default.nix b/pkgs/tools/archivers/xarchive/default.nix index ed60e3147a8f8..5868dcf10a7fe 100644 --- a/pkgs/tools/archivers/xarchive/default.nix +++ b/pkgs/tools/archivers/xarchive/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { meta = { description = "A GTK+ front-end for command line archiving tools"; - maintainers = [ stdenv.lib.maintainers.iElectric ]; + maintainers = [ stdenv.lib.maintainers.domenkozar ]; license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.all; }; diff --git a/pkgs/tools/archivers/xarchiver/default.nix b/pkgs/tools/archivers/xarchiver/default.nix index eff82351ca393..ea59cb8319e81 100644 --- a/pkgs/tools/archivers/xarchiver/default.nix +++ b/pkgs/tools/archivers/xarchiver/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { meta = { description = "GTK+2 only frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)"; homepage = http://sourceforge.net/projects/xarchiver/; - maintainers = [ stdenv.lib.maintainers.iElectric ]; + maintainers = [ stdenv.lib.maintainers.domenkozar ]; license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.all; }; diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix index 806cb07c610fa..33de429d5312c 100644 --- a/pkgs/tools/audio/beets/default.nix +++ b/pkgs/tools/audio/beets/default.nix @@ -199,7 +199,7 @@ in buildPythonApplication rec { description = "Music tagger and library organizer"; homepage = http://beets.radbox.org; license = licenses.mit; - maintainers = with maintainers; [ aszlig iElectric pjones profpatsch ]; + maintainers = with maintainers; [ aszlig domenkozar pjones profpatsch ]; platforms = platforms.linux; }; } diff --git a/pkgs/tools/audio/pa-applet/default.nix b/pkgs/tools/audio/pa-applet/default.nix index b0dfda6bfc7ae..7dedb27443ba0 100644 --- a/pkgs/tools/audio/pa-applet/default.nix +++ b/pkgs/tools/audio/pa-applet/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = ""; license = licenses.gpl2; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; platforms = platforms.linux; }; } diff --git a/pkgs/tools/backup/bacula/default.nix b/pkgs/tools/backup/bacula/default.nix index 0b29ca1f42ac7..8d586e5cb1f3e 100644 --- a/pkgs/tools/backup/bacula/default.nix +++ b/pkgs/tools/backup/bacula/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { description = "Enterprise ready, Network Backup Tool"; homepage = http://bacula.org/; license = licenses.gpl2; - maintainers = with maintainers; [ iElectric lovek323 ]; + maintainers = with maintainers; [ domenkozar lovek323 ]; platforms = platforms.all; }; } diff --git a/pkgs/tools/filesystems/extundelete/default.nix b/pkgs/tools/filesystems/extundelete/default.nix index 3d8fa0827ca43..5b33e31958c5c 100644 --- a/pkgs/tools/filesystems/extundelete/default.nix +++ b/pkgs/tools/filesystems/extundelete/default.nix @@ -16,6 +16,6 @@ stdenv.mkDerivation rec { homepage = http://extundelete.sourceforge.net/; license = licenses.gpl2; platforms = platforms.linux; - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; }; } diff --git a/pkgs/tools/misc/autojump/default.nix b/pkgs/tools/misc/autojump/default.nix index f0dfee7882a1d..ea486dd5154fa 100644 --- a/pkgs/tools/misc/autojump/default.nix +++ b/pkgs/tools/misc/autojump/default.nix @@ -56,6 +56,6 @@ in homepage = http://wiki.github.com/joelthelion/autojump; license = stdenv.lib.licenses.gpl3; platforms = stdenv.lib.platforms.all; - maintainers = [ stdenv.lib.maintainers.iElectric ]; + maintainers = [ stdenv.lib.maintainers.domenkozar ]; }; } diff --git a/pkgs/tools/misc/i3minator/default.nix b/pkgs/tools/misc/i3minator/default.nix index 45fd27b7f4f98..e51150d687698 100644 --- a/pkgs/tools/misc/i3minator/default.nix +++ b/pkgs/tools/misc/i3minator/default.nix @@ -20,7 +20,7 @@ buildPythonApplication rec { ''; homepage = https://github.com/carlesso/i3minator; license = stdenv.lib.licenses.wtfpl; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; platforms = stdenv.lib.platforms.linux; }; diff --git a/pkgs/tools/misc/ldapvi/default.nix b/pkgs/tools/misc/ldapvi/default.nix index df29341d58b4d..d96409809a6e9 100644 --- a/pkgs/tools/misc/ldapvi/default.nix +++ b/pkgs/tools/misc/ldapvi/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { ''; homepage = http://www.lichteblau.com/ldapvi/; license = licenses.gpl2; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/tools/misc/unclutter/default.nix b/pkgs/tools/misc/unclutter/default.nix index 00f08ee074270..d8731f764b33b 100644 --- a/pkgs/tools/misc/unclutter/default.nix +++ b/pkgs/tools/misc/unclutter/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { unclutter -idle 1 & ''; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/networking/aircrack-ng/default.nix b/pkgs/tools/networking/aircrack-ng/default.nix index 39ee40994a75d..21f03f27ab707 100644 --- a/pkgs/tools/networking/aircrack-ng/default.nix +++ b/pkgs/tools/networking/aircrack-ng/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { description = "Wireless encryption cracking tools"; homepage = http://www.aircrack-ng.org/; license = licenses.gpl2Plus; - maintainers = with maintainers; [ iElectric viric garbas chaoflow nckx ]; + maintainers = with maintainers; [ domenkozar viric garbas chaoflow nckx ]; platforms = platforms.linux; }; } diff --git a/pkgs/tools/networking/dd-agent/default.nix b/pkgs/tools/networking/dd-agent/default.nix index c706984e8356f..4d66565406c2c 100644 --- a/pkgs/tools/networking/dd-agent/default.nix +++ b/pkgs/tools/networking/dd-agent/default.nix @@ -51,6 +51,6 @@ stdenv.mkDerivation rec { homepage = http://www.datadoghq.com; license = stdenv.lib.licenses.bsd3; platforms = stdenv.lib.platforms.all; - maintainers = with stdenv.lib.maintainers; [ thoughtpolice iElectric ]; + maintainers = with stdenv.lib.maintainers; [ thoughtpolice domenkozar ]; }; } diff --git a/pkgs/tools/networking/getmail/default.nix b/pkgs/tools/networking/getmail/default.nix index d11e154817d40..3eb0e9d2a90a3 100644 --- a/pkgs/tools/networking/getmail/default.nix +++ b/pkgs/tools/networking/getmail/default.nix @@ -14,7 +14,7 @@ buildPythonApplication rec { meta = { description = "A program for retrieving mail"; - maintainers = [ stdenv.lib.maintainers.raskin stdenv.lib.maintainers.iElectric ]; + maintainers = [ stdenv.lib.maintainers.raskin stdenv.lib.maintainers.domenkozar ]; platforms = stdenv.lib.platforms.linux; homepage = "http://pyropus.ca/software/getmail/"; diff --git a/pkgs/tools/networking/network-manager/default.nix b/pkgs/tools/networking/network-manager/default.nix index ecc8f1908de0b..2d5477ee8e49e 100644 --- a/pkgs/tools/networking/network-manager/default.nix +++ b/pkgs/tools/networking/network-manager/default.nix @@ -90,7 +90,7 @@ stdenv.mkDerivation rec { homepage = http://projects.gnome.org/NetworkManager/; description = "Network configuration and management tool"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ phreedom urkud rickynils iElectric ]; + maintainers = with maintainers; [ phreedom urkud rickynils domenkozar ]; platforms = platforms.linux; }; } diff --git a/pkgs/tools/networking/snabb/default.nix b/pkgs/tools/networking/snabb/default.nix index cd99728d18bd5..f6b115805982b 100644 --- a/pkgs/tools/networking/snabb/default.nix +++ b/pkgs/tools/networking/snabb/default.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { ''; platforms = [ "x86_64-linux" ]; license = licenses.asl20; - maintainers = [ maintainers.lukego maintainers.iElectric ]; + maintainers = [ maintainers.lukego maintainers.domenkozar ]; }; } diff --git a/pkgs/tools/networking/speedtest-cli/default.nix b/pkgs/tools/networking/speedtest-cli/default.nix index de5ba4c18e127..b82e1e337a7cd 100644 --- a/pkgs/tools/networking/speedtest-cli/default.nix +++ b/pkgs/tools/networking/speedtest-cli/default.nix @@ -14,6 +14,6 @@ pythonPackages.buildPythonApplication rec { description = "Command line interface for testing internet bandwidth using speedtest.net"; platforms = platforms.all; license = licenses.asl20; - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; }; } diff --git a/pkgs/tools/package-management/python2nix/default.nix b/pkgs/tools/package-management/python2nix/default.nix index 0bc92314e02c7..1a7c24e2c38a2 100644 --- a/pkgs/tools/package-management/python2nix/default.nix +++ b/pkgs/tools/package-management/python2nix/default.nix @@ -13,7 +13,7 @@ pythonPackages.buildPythonApplication rec { propagatedBuildInputs = with pythonPackages; [ requests pip setuptools ]; meta = with stdenv.lib; { - maintainers = [ maintainers.iElectric ]; + maintainers = [ maintainers.domenkozar ]; platforms = platforms.all; }; } diff --git a/pkgs/tools/security/haveged/default.nix b/pkgs/tools/security/haveged/default.nix index 8f332a5300713..8d032f5141387 100644 --- a/pkgs/tools/security/haveged/default.nix +++ b/pkgs/tools/security/haveged/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { ''; homepage = http://www.issihosts.com/haveged/; license = stdenv.lib.licenses.gpl3; - maintainers = [ stdenv.lib.maintainers.iElectric ]; + maintainers = [ stdenv.lib.maintainers.domenkozar ]; platforms = stdenv.lib.platforms.unix; }; } diff --git a/pkgs/tools/security/prey/default.nix b/pkgs/tools/security/prey/default.nix index f9bd6ea50e8d9..656bb4aede09b 100644 --- a/pkgs/tools/security/prey/default.nix +++ b/pkgs/tools/security/prey/default.nix @@ -41,7 +41,7 @@ in stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = http://preyproject.com; description = "Proven tracking software that helps you find, lock and recover your devices when stolen or missing"; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; license = licenses.gpl3; }; } diff --git a/pkgs/tools/security/sshuttle/default.nix b/pkgs/tools/security/sshuttle/default.nix index e3d5c892d37d8..daa02497d0f6e 100644 --- a/pkgs/tools/security/sshuttle/default.nix +++ b/pkgs/tools/security/sshuttle/default.nix @@ -33,7 +33,7 @@ pythonPackages.buildPythonApplication rec { target network (though it does require Python 2 at both ends). Works with Linux and Mac OS and supports DNS tunneling. ''; - maintainers = with maintainers; [ iElectric nckx ]; + maintainers = with maintainers; [ domenkozar nckx ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/system/dd_rescue/default.nix b/pkgs/tools/system/dd_rescue/default.nix index a6bbb48ecb27d..d98ceb84bc39f 100644 --- a/pkgs/tools/system/dd_rescue/default.nix +++ b/pkgs/tools/system/dd_rescue/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "A tool to copy data from a damaged block device"; - maintainers = with maintainers; [ raskin iElectric ]; + maintainers = with maintainers; [ raskin domenkozar ]; platforms = platforms.linux; downloadPage = "http://www.garloff.de/kurt/linux/ddrescue/"; inherit version; diff --git a/pkgs/tools/system/ddrescue/default.nix b/pkgs/tools/system/ddrescue/default.nix index 0e8e77cf5fa38..b436b6ecf96f9 100644 --- a/pkgs/tools/system/ddrescue/default.nix +++ b/pkgs/tools/system/ddrescue/default.nix @@ -43,6 +43,6 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; platforms = platforms.all; - maintainers = with maintainers; [ iElectric fpletz ]; + maintainers = with maintainers; [ domenkozar fpletz ]; }; } diff --git a/pkgs/tools/system/thinkfan/default.nix b/pkgs/tools/system/thinkfan/default.nix index e4f927d4844e1..11066dfd59393 100644 --- a/pkgs/tools/system/thinkfan/default.nix +++ b/pkgs/tools/system/thinkfan/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { meta = { license = stdenv.lib.licenses.gpl3; homepage = http://thinkfan.sourceforge.net/; - maintainers = with stdenv.lib.maintainers; [ iElectric nckx ]; + maintainers = with stdenv.lib.maintainers; [ domenkozar nckx ]; platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/tools/text/poedit/default.nix b/pkgs/tools/text/poedit/default.nix index e68b819f59a10..5ed59ff12c36a 100644 --- a/pkgs/tools/text/poedit/default.nix +++ b/pkgs/tools/text/poedit/default.nix @@ -15,6 +15,6 @@ stdenv.mkDerivation rec { homepage = http://www.poedit.net/; license = licenses.mit; platforms = platforms.unix; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; } diff --git a/pkgs/tools/text/wgetpaste/default.nix b/pkgs/tools/text/wgetpaste/default.nix index 235dcfe745865..ced6ce402fbd2 100644 --- a/pkgs/tools/text/wgetpaste/default.nix +++ b/pkgs/tools/text/wgetpaste/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { description = "Command-line interface to various pastebins"; homepage = http://wgetpaste.zlin.dk/; license = stdenv.lib.licenses.publicDomain; - maintainers = with stdenv.lib.maintainers; [ qknight iElectric ]; + maintainers = with stdenv.lib.maintainers; [ qknight domenkozar ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f0b8388302916..d502f2274c6a9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -671,7 +671,7 @@ in modules // { ''; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; platforms = platforms.all; }; }; @@ -1740,7 +1740,7 @@ in modules // { homepage = http://crummy.com/software/BeautifulSoup/bs4/; description = "HTML and XML parser"; license = licenses.mit; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }); @@ -1757,7 +1757,7 @@ in modules // { homepage = http://crummy.com/software/BeautifulSoup/bs4/; description = "HTML and XML parser"; license = licenses.mit; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; disabled = isPy3k; @@ -1791,7 +1791,7 @@ in modules // { meta = { description = "A Session and Caching library with WSGI Middleware"; - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -2509,7 +2509,7 @@ in modules // { meta = { description = "UNKNOWN"; homepage = "UNKNOWN"; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -3558,7 +3558,7 @@ in modules // { propagatedBuildInputs = with self; [ self.translationstring self.iso8601 ]; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -3853,7 +3853,7 @@ in modules // { doCheck = false; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -4230,7 +4230,7 @@ in modules // { doCheck = false; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -4245,7 +4245,7 @@ in modules // { buildInputs = with self; [ pycparser mock pytest py ] ++ optionals (!isPyPy) [ cffi ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; description = "Modern password hashing for your software and your servers"; license = licenses.asl20; homepage = https://github.com/pyca/bcrypt/; @@ -4268,7 +4268,7 @@ in modules // { ''; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; homepage = https://cffi.readthedocs.org/; license = with licenses; [ mit ]; description = "Foreign Function Interface for Python calling C code"; @@ -4334,7 +4334,7 @@ in modules // { description = "C parser in Python"; homepage = https://github.com/eliben/pycparser; license = licenses.bsd3; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -4358,7 +4358,7 @@ in modules // { self.selenium; meta = { - maintainers = with maintainers; [ iElectric lovek323 madjar ]; + maintainers = with maintainers; [ domenkozar lovek323 madjar ]; platforms = platforms.unix; }; }; @@ -5120,7 +5120,7 @@ in modules // { ]; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -5147,7 +5147,7 @@ in modules // { ]; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -5170,7 +5170,7 @@ in modules // { ''; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; platforms = platforms.all; }; }; @@ -7259,7 +7259,7 @@ in modules // { }; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -7530,7 +7530,7 @@ in modules // { ]; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; @@ -7552,7 +7552,7 @@ in modules // { propagatedBuildInputs = with self; [ beaker pyramid ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; platforms = platforms.all; broken = true; }; @@ -7575,7 +7575,7 @@ in modules // { ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -7593,7 +7593,7 @@ in modules // { propagatedBuildInputs = with self; [ jinja2 pyramid ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; platforms = platforms.all; }; }; @@ -7636,7 +7636,7 @@ in modules // { propagatedBuildInputs = with self; [ pyramid ]; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -7652,7 +7652,7 @@ in modules // { propagatedBuildInputs = with self; [ transaction pyramid ]; meta = { - maintainers = with maintainers; [ garbas iElectric matejc ]; + maintainers = with maintainers; [ garbas domenkozar matejc ]; platforms = platforms.all; }; }; @@ -7751,7 +7751,7 @@ in modules // { doCheck = false; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -7873,7 +7873,7 @@ in modules // { buildInputs = with self; [ zope_interface zodb ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -7889,7 +7889,7 @@ in modules // { buildInputs = with self; [ zope_interface zope_location zope_schema ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -7919,7 +7919,7 @@ in modules // { buildInputs = with self; [ nose mock ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; description = "A simple statsd client"; license = licenses.mit; homepage = https://github.com/jsocol/pystatsd; @@ -7990,7 +7990,7 @@ in modules // { propagatedBuildInputs = with self; [ pyramid zodb zodburi ZEO ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -8007,7 +8007,7 @@ in modules // { propagatedBuildInputs = with self; [ repoze_sendmail ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -8044,7 +8044,7 @@ in modules // { buildInputs = with self; [ transaction ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -8060,7 +8060,7 @@ in modules // { buildInputs = with self; [ zodb mock ZEO ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -8129,7 +8129,7 @@ in modules // { ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -8178,7 +8178,7 @@ in modules // { }; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -8196,7 +8196,7 @@ in modules // { propagatedBuildInputs = with self; [ zope_interface sphinx ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; platforms = platforms.all; }; }; @@ -8306,7 +8306,7 @@ in modules // { buildInputs = with self; [ zope_testing ]; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -8340,7 +8340,7 @@ in modules // { doCheck = false; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -8360,7 +8360,7 @@ in modules // { doCheck = false; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -8423,7 +8423,7 @@ in modules // { homepage = http://deluge-torrent.org; description = "Torrent client"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ iElectric ebzzry ]; + maintainers = with maintainers; [ domenkozar ebzzry ]; platforms = platforms.all; }; }; @@ -8443,7 +8443,7 @@ in modules // { homepage = http://freedesktop.org/wiki/Software/pyxdg; description = "Contains implementations of freedesktop.org standards"; license = licenses.lgpl2; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -8459,7 +8459,7 @@ in modules // { homepage = https://github.com/chardet/chardet; description = "Universal encoding detector"; license = licenses.lgpl2; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -9307,7 +9307,7 @@ in modules // { homepage = http://code.google.com/p/feedparser/; description = "Universal feed parser"; license = licenses.bsd2; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }); @@ -9677,7 +9677,7 @@ in modules // { homepage = http://flexget.com/; description = "Multipurpose automation tool for content like torrents"; license = licenses.mit; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -9730,7 +9730,7 @@ in modules // { homepage = https://github.com/ckreutzer/python-tvrage; description = "Client interface for tvrage.com's XML-based api feeds"; license = licenses.bsd3; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }); @@ -9813,7 +9813,7 @@ in modules // { homepage = https://github.com/Julian/jsonschema; description = "An implementation of JSON Schema validation for Python"; license = licenses.mit; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }); @@ -10680,7 +10680,7 @@ in modules // { major web browsers. ''; license = licenses.mit; - maintainers = with maintainers; [ iElectric prikhi ]; + maintainers = with maintainers; [ domenkozar prikhi ]; }; }); @@ -12060,7 +12060,7 @@ in modules // { description = "Super-fast templating language"; homepage = http://www.makotemplates.org; license = licenses.mit; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -12078,7 +12078,7 @@ in modules // { description = "Implements a XML/HTML/XHTML Markup safe string"; homepage = http://dev.pocoo.org; license = licenses.bsd3; - maintainers = with maintainers; [ iElectric garbas ]; + maintainers = with maintainers; [ domenkozar garbas ]; }; }; @@ -12723,7 +12723,7 @@ in modules // { (optionals isPy26 [ importlib ordereddict ]); meta = { - homepage = https://github.com/iElectric/mr.bob.git; + homepage = https://github.com/domenkozar/mr.bob.git; description = "A tool to generate code skeletons from templates"; }; }; @@ -12786,7 +12786,7 @@ in modules // { homepage = http://bmc.github.com/munkres/; description = "Munkres algorithm for the Assignment Problem"; license = licenses.bsd3; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -12807,7 +12807,7 @@ in modules // { homepage = http://alastair/python-musicbrainz-ngs; description = "Python bindings for musicbrainz NGS webservice"; license = licenses.bsd2; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -13046,7 +13046,7 @@ in modules // { }; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.linux; }; }; @@ -16013,7 +16013,7 @@ in modules // { propagatedBuildInputs = with self; [ pytz ]; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.linux; }; }; @@ -18056,7 +18056,7 @@ in modules // { homepage = http://www.dalkescientific.om/Python/PyRSS2Gen.html; description = "Library for generating RSS 2.0 feeds"; license = licenses.bsd2; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }); @@ -18186,7 +18186,7 @@ in modules // { homepage = http://github.com/ericflo/pynzb; description = "Unified API for parsing NZB files"; license = licenses.bsd3; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }); @@ -18205,7 +18205,7 @@ in modules // { homepage = http://code.google.com/p/python-progressbar/; description = "Text progressbar library for python"; license = licenses.lgpl3Plus; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }); @@ -18953,7 +18953,7 @@ in modules // { disabled = isPy3k; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -20429,7 +20429,7 @@ in modules // { description = "Yet another simple static gallery generator"; homepage = http://sigal.saimon.org/en/latest/index.html; license = licenses.mit; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -20842,7 +20842,7 @@ in modules // { buildInputs = with self; [ pillow nose_progressive nose mock blessings ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -20865,7 +20865,7 @@ in modules // { propagatedBuildInputs = with self; [ pillow blessings args ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -20885,7 +20885,7 @@ in modules // { buildInputs = with self; [ pytest py mock pkgs.glibcLocales ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -20904,7 +20904,7 @@ in modules // { doCheck = !isPy3k; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -20922,7 +20922,7 @@ in modules // { propagatedBuildInputs = with self; [ modules.curses ]; meta = { - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; @@ -23010,7 +23010,7 @@ in modules // { doCheck = false; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -23284,7 +23284,7 @@ in modules // { propagatedBuildInputs = with self; [ six webob ]; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; }; }; @@ -24051,7 +24051,7 @@ in modules // { propagatedBuildInputs = with self; [ sqlalchemy transaction ]; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -24432,7 +24432,7 @@ in modules // { propagatedBuildInputs = with self; [ pep8 ]; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -24468,7 +24468,7 @@ in modules // { }; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -24551,7 +24551,7 @@ in modules // { doCheck = false; meta = { - maintainers = with maintainers; [ garbas iElectric ]; + maintainers = with maintainers; [ garbas domenkozar ]; platforms = platforms.all; }; }; @@ -24646,7 +24646,7 @@ in modules // { homepage = http://pypi.python.org/pypi/Unidecode/; description = "ASCII transliterations of Unicode text"; license = licenses.gpl2; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ domenkozar ]; }; }; -- cgit 1.4.1 From 00ead3178b650cc98dad896fea2743677077bee2 Mon Sep 17 00:00:00 2001 From: Domen Kožar Date: Tue, 17 May 2016 13:07:22 +0100 Subject: mailcore2: remove git conflict line, still doesn't build --- pkgs/development/libraries/mailcore2/default.nix | 1 - 1 file changed, 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/libraries/mailcore2/default.nix b/pkgs/development/libraries/mailcore2/default.nix index f535b19bd0eba..4259e52510bc9 100644 --- a/pkgs/development/libraries/mailcore2/default.nix +++ b/pkgs/development/libraries/mailcore2/default.nix @@ -26,7 +26,6 @@ stdenv.mkDerivation rec { --replace "/usr/include/libxml2" "${libxml2.dev}/include/libxml2" substituteInPlace src/core/basetypes/MCHTMLCleaner.cpp \ --replace buffio.h tidybuffio.h ->>>>>>> master ''; cmakeFlags = [ -- cgit 1.4.1 From 314b1fbf0c923af4a300c7b92c41ad9e3fc7ae96 Mon Sep 17 00:00:00 2001 From: Bjørn Forsman Date: Fri, 13 May 2016 18:22:37 +0200 Subject: saleae-logic: 1.1.15 -> 1.2.9 Changelog: http://support.saleae.com/hc/en-us/articles/210245593-Saleae-Logic-Beta-Software-Changelog (Yes, the changelog title contains the word 'beta', but as of version 1.2.9 the beta branding is removed from the software as the beta branch was merged to master.) This software update is required for newer logic analysers (e.g. Logic Pro 8). (The original Logic is still supported, although it's difficult to find info about it on their website.) v1.2.9 grew new dependencies: libxcb, zlib, pciutils, xkeyboardconfig. The LD_PRELOAD library hack, used to divert writes from $out/Settings/settings.xml to $HOME/.saleae-logic-settings.xml, has been updated. The new software writes more paths ($out/{Settings,Errors,Databases,Calibration}) and uses a few extra library calls to access those paths (open,openat,stat,access,unlink,...). So instead of single file redirect, the library now redirects accesses to all those directories, mirrored in $HOME/.saleae-logic/. (Existing $HOME/.saleae-logic-settings.xml files will be automatically migrated to $HOME/.saleae-logic/Settings/settings.xml.) --- .../tools/misc/saleae-logic/default.nix | 22 +- pkgs/development/tools/misc/saleae-logic/preload.c | 269 +++++++++++++++++++-- 2 files changed, 260 insertions(+), 31 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/misc/saleae-logic/default.nix b/pkgs/development/tools/misc/saleae-logic/default.nix index 53020671d17e5..cd027c7b08d71 100644 --- a/pkgs/development/tools/misc/saleae-logic/default.nix +++ b/pkgs/development/tools/misc/saleae-logic/default.nix @@ -8,15 +8,15 @@ { stdenv, fetchurl, unzip, glib, libSM, libICE, gtk, libXext, libXft , fontconfig, libXrender, libXfixes, libX11, libXi, libXrandr, libXcursor -, freetype, libXinerama -, makeDesktopItem +, freetype, libXinerama, libxcb, zlib, pciutils +, makeDesktopItem, xkeyboardconfig }: let libPath = stdenv.lib.makeLibraryPath [ glib libSM libICE gtk libXext libXft fontconfig libXrender libXfixes libX11 - libXi libXrandr libXcursor freetype libXinerama + libXi libXrandr libXcursor freetype libXinerama libxcb zlib stdenv.cc.cc.lib ]; in @@ -25,21 +25,21 @@ assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"; stdenv.mkDerivation rec { pname = "saleae-logic"; - version = "1.1.15"; + version = "1.2.9"; name = "${pname}-${version}"; src = if stdenv.system == "i686-linux" then fetchurl { - name = "saleae-logic-${version}-32bit.zip"; - url = "http://downloads.saleae.com/Logic%20${version}%20(32-bit).zip"; - sha256 = "0h13my4xgv8v8l12shimhhn54nn0dldbxz1gpbx92ysd8q8x1q79"; + name = "saleae-logic-${version}-32bit.zip"; + url = "http://downloads.saleae.com/logic/${version}/Logic%20${version}%20(32-bit).zip"; + sha256 = "0000004xgv8v8l12shimhhn54nn0dldbxz1gpbx92ysd8q8x1q79"; } else if stdenv.system == "x86_64-linux" then fetchurl { - name = "saleae-logic-${version}-64bit.zip"; - url = "http://downloads.saleae.com/Logic%20${version}%20(64-bit).zip"; - sha256 = "1phnjsmaj1gflx7shh8wfrd8dnhn43s3v7bck41h8yj4nd4ax69z"; + name = "saleae-logic-${version}-64bit.zip"; + url = "http://downloads.saleae.com/logic/${version}/Logic%20${version}%20(64-bit).zip"; + sha256 = "1d4hmp756ysfk5i1ys4mlkd1czbdw0zqznkzx08pyqk93zc7b16s"; } else abort "Saleae Logic software requires i686-linux or x86_64-linux"; @@ -74,6 +74,8 @@ stdenv.mkDerivation rec { cat > "$out/bin/saleae-logic" << EOF #!${stdenv.shell} export LD_PRELOAD="$out/lib/preload.so" + export QT_XKB_CONFIG_ROOT="${xkeyboardconfig}/share/X11/xkb" + export PATH="${pciutils}/bin:\$PATH" exec "$out/Logic" "\$@" EOF chmod a+x "$out"/bin/saleae-logic diff --git a/pkgs/development/tools/misc/saleae-logic/preload.c b/pkgs/development/tools/misc/saleae-logic/preload.c index 6b3632db97bb1..b4451e4d99f73 100644 --- a/pkgs/development/tools/misc/saleae-logic/preload.c +++ b/pkgs/development/tools/misc/saleae-logic/preload.c @@ -2,17 +2,20 @@ * LD_PRELOAD trick to make Saleae Logic work from a read-only installation * directory. * - * Saleae Logic tries to write to the ./Settings/settings.xml file, relative to - * its installation directory. Because the nix store is read-only, we have to - * redirect access to this file somewhere else. Here's the map: + * Saleae Logic tries to write to a few directories inside its installation + * directory. Because the Nix store is read-only, we have to redirect access to + * this file somewhere else. Here's the map: * - * $out/Settings/settings.xml => $HOME/.saleae-logic-settings.xml + * $out/Settings/ => $HOME/.saleae-logic/Settings/ + * $out/Databases/ => $HOME/.saleae-logic/Databases/ + * $out/Errors/ => $HOME/.saleae-logic/Errors/ + * $out/Calibration/ => $HOME/.saleae-logic/Calibration/ * * This also makes the software multi-user aware :-) * - * NOTE: The next Logic version is supposed to have command line parameters for - * configuring where the Settings/ directory is located, but until then we have - * to use this. + * NOTE: AFAIK (Bjørn Forsman), Logic version 1.2+ was supposed to have a + * command line parameter for redirecting these write operations, but + * apparently that feature got postponed. * * Usage: * gcc -shared -fPIC -DOUT="$out" preload.c -o preload.so -ldl @@ -33,30 +36,65 @@ #include #include #include +#include #ifndef OUT #error Missing OUT define - path to the installation directory. #endif +/* + * TODO: How to properly wrap "open", which is declared as a variadic function + * in glibc? The man page lists these signatures: + * + * int open(const char *pathname, int flags); + * int open(const char *pathname, int flags, mode_t mode); + * + * But using either signature in this code cause a compile error, because + * glibc has declared the function as "int open(const char *, int, ...)". + * Same thing with "openat". + * + * For now we discard the variadic args. It seems to work. + * + * Relevant: + * http://stackoverflow.com/questions/28462523/how-to-wrap-ioctlint-d-unsigned-long-request-using-ld-preload + */ typedef FILE *(*fopen_func_t)(const char *path, const char *mode); typedef FILE *(*fopen64_func_t)(const char *path, const char *mode); +typedef int (*open_func_t)(const char *pathname, int flags, ...); +typedef int (*open64_func_t)(const char *pathname, int flags, ...); +typedef int (*openat_func_t)(int dirfd, const char *pathname, int flags, ...); +typedef int (*openat64_func_t)(int dirfd, const char *pathname, int flags, ...); +typedef int (*xstat_func_t)(int vers, const char *pathname, struct stat *buf); +typedef int (*xstat64_func_t)(int vers, const char *pathname, struct stat64 *buf); +typedef int (*access_func_t)(const char *pathname, int mode); +typedef int (*faccessat_func_t)(int dirfd, const char *pathname, int mode, int flags); +typedef int (*unlink_func_t)(const char *pathname); /* - * Redirect $out/Settings/settings.xml => $HOME/.saleae-logic-settings.xml. No - * other paths are changed. Path is truncated if bigger than PATH_MAX. + * Redirect $out/{Settings,Databases,Errors,Calibration}/ => $HOME/.saleae-logic/. + * Path is truncated if bigger than PATH_MAX. * * @param pathname Original file path. * @param buffer Pointer to a buffer of size PATH_MAX bytes that this function * will write the new redirected path to (if needed). * * @return Pointer to the resulting path. It will either be equal to the - * pathname or buffer argument. + * pathname (no redirect) or buffer argument (was redirected). */ static const char *redirect(const char *pathname, char *buffer) { const char *homepath; const char *new_path; static char have_warned; + const char *remainder; + static char have_initialized; + static size_t out_strlen; + static size_t settings_strlen; + static size_t databases_strlen; + static size_t errors_strlen; + static size_t calibration_strlen; + int ret; + int i; homepath = getenv("HOME"); if (!homepath) { @@ -67,9 +105,59 @@ static const char *redirect(const char *pathname, char *buffer) } } + if (!have_initialized) { + /* + * The directories that Saleae Logic expects to find. + * The first element is intentionally empty (create base dir). + */ + char *dirs[] = {"", "/Settings", "/Databases", "/Errors", "/Calibration"}; + char old_settings_path[PATH_MAX]; + access_func_t orig_access; + + out_strlen = strlen(OUT); + settings_strlen = out_strlen + strlen("/Settings"); + databases_strlen = out_strlen + strlen("/Databases"); + errors_strlen = out_strlen + strlen("/Errors"); + calibration_strlen = out_strlen + strlen("/Calibration"); + for (i = 0; i < sizeof dirs / sizeof dirs[0]; i++) { + snprintf(buffer, PATH_MAX, "%s/.saleae-logic%s", homepath, dirs[i]); + buffer[PATH_MAX-1] = '\0'; + ret = mkdir(buffer, 0755); + if (0 != ret && errno != EEXIST) { + fprintf(stderr, "ERROR: Failed to create directory \"%s\": %s\n", + buffer, strerror(errno)); + return NULL; + } + } + + /* + * Automatic migration of the settings file: + * ~/.saleae-logic-settings.xml => ~/.saleae-logic/Settings/settings.xml + */ + snprintf(old_settings_path, PATH_MAX, "%s/.saleae-logic-settings.xml", homepath); + old_settings_path[PATH_MAX-1] = '\0'; + orig_access = (access_func_t)dlsym(RTLD_NEXT, "access"); + if (orig_access(old_settings_path, F_OK) == 0) { + snprintf(buffer, PATH_MAX, "%s/.saleae-logic/Settings/settings.xml", homepath); + buffer[PATH_MAX-1] = '\0'; + ret = rename(old_settings_path, buffer); + if (ret != 0) { + fprintf(stderr, "WARN: Failed to move %s to %s", + old_settings_path, buffer); + } + } + + have_initialized = 1; + } + new_path = pathname; - if (strcmp(OUT "/Settings/settings.xml", pathname) == 0) { - snprintf(buffer, PATH_MAX, "%s/.saleae-logic-settings.xml", homepath); + remainder = pathname + out_strlen; + + if ((strncmp(OUT "/Settings", pathname, settings_strlen) == 0) || + (strncmp(OUT "/Databases", pathname, databases_strlen) == 0) || + (strncmp(OUT "/Errors", pathname, errors_strlen) == 0) || + (strncmp(OUT "/Calibration", pathname, calibration_strlen) == 0)) { + snprintf(buffer, PATH_MAX, "%s/.saleae-logic%s", homepath, remainder); buffer[PATH_MAX-1] = '\0'; new_path = buffer; } @@ -79,36 +167,175 @@ static const char *redirect(const char *pathname, char *buffer) FILE *fopen(const char *pathname, const char *mode) { - FILE *fp; const char *path; char buffer[PATH_MAX]; fopen_func_t orig_fopen; orig_fopen = (fopen_func_t)dlsym(RTLD_NEXT, "fopen"); path = redirect(pathname, buffer); - fp = orig_fopen(path, mode); - if (path != pathname && getenv("PRELOAD_DEBUG")) { - fprintf(stderr, "preload_debug: fopen(\"%s\", \"%s\") => \"%s\": fp=%p\n", pathname, mode, path, fp); + fprintf(stderr, "preload_debug: fopen(\"%s\", \"%s\") => \"%s\"\n", pathname, mode, path); } - return fp; + return orig_fopen(path, mode); } FILE *fopen64(const char *pathname, const char *mode) { - FILE *fp; const char *path; char buffer[PATH_MAX]; fopen64_func_t orig_fopen64; orig_fopen64 = (fopen64_func_t)dlsym(RTLD_NEXT, "fopen64"); path = redirect(pathname, buffer); - fp = orig_fopen64(path, mode); + if (path != pathname && getenv("PRELOAD_DEBUG")) { + fprintf(stderr, "preload_debug: fopen64(\"%s\", \"%s\") => \"%s\"\n", pathname, mode, path); + } + + return orig_fopen64(path, mode); +} + +int open(const char *pathname, int flags, ...) +{ + const char *path; + char buffer[PATH_MAX]; + open_func_t orig_open; + + orig_open = (open_func_t)dlsym(RTLD_NEXT, "open"); + path = redirect(pathname, buffer); + if (path != pathname && getenv("PRELOAD_DEBUG")) { + fprintf(stderr, "preload_debug: open(\"%s\", ...) => \"%s\"\n", pathname, path); + } + + return orig_open(path, flags); +} + +int open64(const char *pathname, int flags, ...) +{ + const char *path; + char buffer[PATH_MAX]; + open64_func_t orig_open64; + + orig_open64 = (open64_func_t)dlsym(RTLD_NEXT, "open64"); + path = redirect(pathname, buffer); + if (path != pathname && getenv("PRELOAD_DEBUG")) { + fprintf(stderr, "preload_debug: open64(\"%s\", ...) => \"%s\"\n", pathname, path); + } + return orig_open64(path, flags); +} + +int openat(int dirfd, const char *pathname, int flags, ...) +{ + const char *path; + char buffer[PATH_MAX]; + openat_func_t orig_openat; + + orig_openat = (openat_func_t)dlsym(RTLD_NEXT, "openat"); + path = redirect(pathname, buffer); + if (path != pathname && getenv("PRELOAD_DEBUG")) { + fprintf(stderr, "preload_debug: openat(%d, \"%s\", %#x) => \"%s\"\n", dirfd, pathname, flags, path); + } + + return orig_openat(dirfd, path, flags); +} + +int openat64(int dirfd, const char *pathname, int flags, ...) +{ + const char *path; + char buffer[PATH_MAX]; + openat64_func_t orig_openat64; + + orig_openat64 = (openat64_func_t)dlsym(RTLD_NEXT, "openat64"); + path = redirect(pathname, buffer); + if (path != pathname && getenv("PRELOAD_DEBUG")) { + fprintf(stderr, "preload_debug: openat64(%d, \"%s\", %#x) => \"%s\"\n", dirfd, pathname, flags, path); + } + + return orig_openat64(dirfd, path, flags); +} + +/* + * Notes about "stat". + * + * The stat function is special, at least in glibc, in that it cannot be + * directly overridden by LD_PRELOAD, due to it being inline wrapper around + * __xstat. The __xstat functions take one extra parameter, a version number, + * to indicate what "struct stat" should look like. This trick allows changing + * the contents of mode_t without changing the shared library major number. See + * sys/stat.h header for more info. + */ +int __xstat(int vers, const char *pathname, struct stat *buf) +{ + const char *path; + char buffer[PATH_MAX]; + xstat_func_t orig_xstat; + + orig_xstat = (xstat_func_t)dlsym(RTLD_NEXT, "__xstat"); + path = redirect(pathname, buffer); + if (path != pathname && getenv("PRELOAD_DEBUG")) { + fprintf(stderr, "preload_debug: (__x)stat(\"%s\", ...) => \"%s\"\n", pathname, path); + } + + return orig_xstat(vers, path, buf); +} + +int __xstat64(int vers, const char *pathname, struct stat64 *buf) +{ + const char *path; + char buffer[PATH_MAX]; + xstat64_func_t orig_xstat64; + + orig_xstat64 = (xstat64_func_t)dlsym(RTLD_NEXT, "__xstat64"); + path = redirect(pathname, buffer); + if (path != pathname && getenv("PRELOAD_DEBUG")) { + fprintf(stderr, "preload_debug: (__x)stat64(\"%s\", ...) => \"%s\"\n", pathname, path); + } + + return orig_xstat64(vers, path, buf); +} + +int access(const char *pathname, int mode) +{ + const char *path; + char buffer[PATH_MAX]; + access_func_t orig_access; + + orig_access = (access_func_t)dlsym(RTLD_NEXT, "access"); + path = redirect(pathname, buffer); + if (path != pathname && getenv("PRELOAD_DEBUG")) { + fprintf(stderr, "preload_debug: access(\"%s\", ...) => \"%s\"\n", pathname, path); + } + + return orig_access(path, mode); +} + +int faccessat(int dirfd, const char *pathname, int mode, int flags) +{ + const char *path; + char buffer[PATH_MAX]; + faccessat_func_t orig_faccessat; + + orig_faccessat = (faccessat_func_t)dlsym(RTLD_NEXT, "faccessat"); + path = redirect(pathname, buffer); + if (path != pathname && getenv("PRELOAD_DEBUG")) { + fprintf(stderr, "preload_debug: faccessat(\"%s\", ...) => \"%s\"\n", pathname, path); + } + + return orig_faccessat(dirfd, path, mode, flags); +} + +int unlink(const char *pathname) +{ + const char *path; + char buffer[PATH_MAX]; + unlink_func_t orig_unlink; + + orig_unlink = (unlink_func_t)dlsym(RTLD_NEXT, "unlink"); + path = redirect(pathname, buffer); if (path != pathname && getenv("PRELOAD_DEBUG")) { - fprintf(stderr, "preload_debug: fopen64(\"%s\", \"%s\") => \"%s\": fp=%p\n", pathname, mode, path, fp); + fprintf(stderr, "preload_debug: unlink(\"%s\") => \"%s\"\n", pathname, path); } - return fp; + return orig_unlink(path); } -- cgit 1.4.1 From 22b0cb9a726098c3b034c373297554c7af5b3aac Mon Sep 17 00:00:00 2001 From: Mathias Schreck Date: Wed, 18 May 2016 10:31:21 +0200 Subject: nodejs: 6.1.0 -> 6.2.0 --- pkgs/development/web/nodejs/v6.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/web/nodejs/v6.nix b/pkgs/development/web/nodejs/v6.nix index d331686e43704..7ce41e3fcdfe6 100644 --- a/pkgs/development/web/nodejs/v6.nix +++ b/pkgs/development/web/nodejs/v6.nix @@ -4,9 +4,9 @@ }@args: import ./nodejs.nix (args // rec { - version = "6.1.0"; + version = "6.2.0"; src = fetchurl { url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.gz"; - sha256 = "1hsbmr3yc6zmyhz058zfxg77dzjhk94g1k0y65p6xq8ihq5yyrwy"; + sha256 = "1fcldsnkk6px5fms405j9z2yv6mmscin5x7sma8bdavqgn283zgw"; }; }) -- cgit 1.4.1 From c366ab933d3d75512ab9dee8f34b55a9f4cb9835 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 18 May 2016 13:25:48 +0300 Subject: haskell.packages.ghc801.ghc: upstream tarball updated --- pkgs/development/compilers/ghc/8.0.1.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/ghc/8.0.1.nix b/pkgs/development/compilers/ghc/8.0.1.nix index bb8a98d61b1f1..dcbdee46da897 100644 --- a/pkgs/development/compilers/ghc/8.0.1.nix +++ b/pkgs/development/compilers/ghc/8.0.1.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://downloads.haskell.org/~ghc/8.0.1/${name}-src.tar.xz"; - sha256 = "0riyry246a6km4mw1q9iiw6p75ww2f8s81i34g151zwwdygk7qpf"; + sha256 = "1lniqy29djhjkddnailpaqhlqh4ld2mqvb1fxgxw1qqjhz6j1ywh"; }; patches = [ -- cgit 1.4.1 From d3da0bd78f1a6e646a9369f32a16a4838a6f5384 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 18 May 2016 13:30:38 +0300 Subject: elm: add documentation on how to use update scripts and run them properly --- pkgs/development/compilers/elm/default.nix | 9 ++++++--- pkgs/development/compilers/elm/packages/elm-reactor-elm.nix | 10 +++++----- pkgs/development/compilers/elm/update-elm.rb | 12 ++++++------ 3 files changed, 17 insertions(+), 14 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix index 87211ff6e6ed0..360273a7eca96 100644 --- a/pkgs/development/compilers/elm/default.nix +++ b/pkgs/development/compilers/elm/default.nix @@ -1,5 +1,11 @@ { lib, stdenv, buildEnv, haskell, nodejs, fetchurl, fetchpatch, makeWrapper }: +# To update: +# 1) Update versions in ./update-elm.rb and run it. +# 2) Checkout elm-reactor and run `elm-package install -y` inside. +# 3) Run ./elm2nix.rb in elm-reactor's directory. +# 4) Move the resulting 'package.nix' to 'packages/elm-reactor-elm.nix'. + let makeElmStuff = deps: let json = builtins.toJSON (lib.mapAttrs (name: info: info.version) deps); @@ -61,9 +67,6 @@ let in elmPkgs // { inherit elmPkgs; elmVersion = elmRelease.version; - - # To unbreak elm-compiler - language-ecmascript = self.language-ecmascript_0_17_0_2; }; }; in hsPkgs.elmPkgs // { diff --git a/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix b/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix index be37b2084f10e..a84f9e48ba032 100644 --- a/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix +++ b/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix @@ -5,18 +5,18 @@ }; "evancz/elm-markdown" = { version = "3.0.0"; - sha256 = "1wlr8sgnyq6qgh5rcjy7imfmpqxrxgmmqcfx6p541fs70yiqya12"; + sha256 = "0r3hcim4mpn46ahv1q6sjp6i2viyp7jik6i71xgwmvfb9drns2p6"; }; "elm-lang/html" = { version = "1.0.0"; sha256 = "16cr01yxkpkmgbgclp2p80nd62a6fjw3qipzjsgksrhwv9vv4gm4"; }; - "elm-lang/core" = { - version = "4.0.0"; - sha256 = "04qgzgv90qyhjk55yw4szy50h2dqdlm0a2padbgn02yf4bb1b4nw"; - }; "elm-lang/svg" = { version = "1.0.0"; sha256 = "0c29y6c58x2sq1bl29z1hr5gi2rlza8clk7ssgzmsf4xbvcczbjx"; }; + "elm-lang/core" = { + version = "4.0.0"; + sha256 = "04qgzgv90qyhjk55yw4szy50h2dqdlm0a2padbgn02yf4bb1b4nw"; + }; } diff --git a/pkgs/development/compilers/elm/update-elm.rb b/pkgs/development/compilers/elm/update-elm.rb index 363655415a95a..53dd0f88fa02a 100755 --- a/pkgs/development/compilers/elm/update-elm.rb +++ b/pkgs/development/compilers/elm/update-elm.rb @@ -1,12 +1,12 @@ #!/usr/bin/env ruby # Take those from https://github.com/elm-lang/elm-platform/blob/master/installers/BuildFromSource.hs -$elm_version = "0.16.0" -$elm_packages = { "elm-compiler" => "0.16", - "elm-package" => "0.16", - "elm-make" => "0.16", - "elm-reactor" => "0.16", - "elm-repl" => "0.16" +$elm_version = "0.17" +$elm_packages = { "elm-compiler" => "0.17", + "elm-package" => "0.17", + "elm-make" => "0.17", + "elm-reactor" => "0.17", + "elm-repl" => "0.17" } for pkg, ver in $elm_packages -- cgit 1.4.1 From 29644950d4786eb2bc9b28719b6ce0e652077675 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Wed, 18 May 2016 12:40:35 +0200 Subject: rr: Only build native architecture. rr wants to build itself with 32+64bit support on 64bit systems, but this fails in recent NixOS versions as it can't find libstdc++.so.6 at runtime. This patch disables 32bit builds on 64bit. To debug 32bit binaries, pkgsi686Linux.rr can be used. --- pkgs/development/tools/analysis/rr/default.nix | 6 +++++- pkgs/top-level/all-packages.nix | 4 +--- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'pkgs/development') diff --git a/pkgs/development/tools/analysis/rr/default.nix b/pkgs/development/tools/analysis/rr/default.nix index ea733b5b4618e..926aaeb94ccce 100644 --- a/pkgs/development/tools/analysis/rr/default.nix +++ b/pkgs/development/tools/analysis/rr/default.nix @@ -17,7 +17,11 @@ stdenv.mkDerivation rec { ''; buildInputs = [ cmake libpfm zlib python pkgconfig pythonPackages.pexpect which procps gdb ]; - cmakeFlags = "-DCMAKE_C_FLAGS_RELEASE:STRING= -DCMAKE_CXX_FLAGS_RELEASE:STRING="; + cmakeFlags = [ + "-DCMAKE_C_FLAGS_RELEASE:STRING=" + "-DCMAKE_CXX_FLAGS_RELEASE:STRING=" + "-Ddisable32bit=ON" + ]; enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a31834d0542fa..f15c65b0ff59c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6360,9 +6360,7 @@ in rolespec = callPackage ../development/tools/misc/rolespec { }; - rr = callPackage ../development/tools/analysis/rr { - stdenv = stdenv_32bit; - }; + rr = callPackage ../development/tools/analysis/rr { }; saleae-logic = callPackage ../development/tools/misc/saleae-logic { }; -- cgit 1.4.1